Changeset 9930 for trunk/src/user32/win32wbase.h
- Timestamp:
- Mar 20, 2003, 2:20:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r9598 r9930 1 /* $Id: win32wbase.h,v 1.14 8 2003-01-03 16:35:56 sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.149 2003-03-20 13:20:46 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 113 113 Win32BaseWindow(); 114 114 Win32BaseWindow(CREATESTRUCTA *lpCreateStructA, ATOM classAtom, BOOL isUnicode); 115 Win32BaseWindow(HWND hwndOS2, ATOM classAtom);116 115 117 116 virtual ~Win32BaseWindow(); … … 201 200 } 202 201 void setClientRect(PRECT rect) { rectClient = *rect; }; 203 PRECT getWindowRect() { return &rectWindow; };202 virtual PRECT getWindowRect(); 204 203 void setClientRect(LONG left, LONG top, LONG right, LONG bottom) 205 204 { … … 232 231 233 232 BOOL ShowWindow(ULONG nCmdShow); 234 233 virtual BOOL SetWindowPos(HWND hwndInsertAfter, int x, int y, int cx, int cy, UINT fuFlags, BOOL fShowWindow = FALSE); 235 234 BOOL SetWindowPlacement(WINDOWPLACEMENT *winpos); 236 235 BOOL GetWindowPlacement(LPWINDOWPLACEMENT winpos); … … 246 245 HWND GetTopWindow(); 247 246 HWND GetTopParent(); 247 248 PVOID getOldPMWindowProc() { return pfnOldPMWndProc; }; 249 void setOldPMWindowProc(PVOID pfnPMWndProc) { pfnOldPMWndProc = pfnPMWndProc; }; 248 250 249 251 HWND GetWindow(UINT uCmd); … … 414 416 fVisibleRegionChanged:1, //set when visible region has changed -> erase background must be sent during next BeginPaint 415 417 fEraseBkgndFlag:1, 416 fIsDragDropActive:1, 417 fFakeWindow:1; 418 fIsDragDropActive:1; 418 419 419 420 ULONG state; … … 437 438 RECT rectClient; //relative to frame 438 439 WINDOWPLACEMENT windowpos; 440 441 PVOID pfnOldPMWndProc; 439 442 440 443 PROPERTY *propertyList;
Note:
See TracChangeset
for help on using the changeset viewer.