Changeset 750 for trunk/src/user32/new/win32wbase.h
- Timestamp:
- Aug 31, 1999, 12:36:24 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32wbase.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.h
r741 r750 1 /* $Id: win32wbase.h,v 1. 1 1999-08-30 12:00:12sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.2 1999-08-31 10:36:23 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 49 49 #define WM_WIN32_POSTMESSAGEW 0x4001 50 50 51 class Win32BaseWindow : public GenericObject, pr ivateChildWindow51 class Win32BaseWindow : public GenericObject, protected ChildWindow 52 52 { 53 53 public: … … 89 89 90 90 DWORD getStyle() { return dwStyle; }; 91 void setStyle(DWORD newstyle) { dwStyle = newstyle; }; 91 92 DWORD getExStyle() { return dwExStyle; }; 93 void setExStyle(DWORD newexstyle) { dwExStyle = newexstyle; }; 92 94 HWND getWindowHandle() { return Win32Hwnd; }; 93 95 HWND getOS2WindowHandle() { return OS2Hwnd; }; … … 105 107 BOOL isChild(); 106 108 PRECT getClientRect() { return &rectClient; }; 109 void setClientRect(PRECT rect) { rectClient = *rect; }; 107 110 PRECT getWindowRect() { return &rectWindow; }; 108 111 void setClientRect(LONG left, LONG top, LONG right, LONG bottom) … … 197 200 void Init(); 198 201 202 char *getWindowNameA() { return windowNameA; }; 203 199 204 HWND OS2Hwnd; 200 205 HWND OS2HwndFrame;
Note:
See TracChangeset
for help on using the changeset viewer.
