- Timestamp:
- Jul 25, 2017, 11:59:20 PM (8 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r22134 r22135 123 123 fDirtyUpdateRegion = FALSE; 124 124 fWindowLocked = FALSE; 125 fFakeWindow = FALSE; 125 126 126 127 state = STATE_INIT; … … 220 221 } 221 222 222 if (!isFakeWindow()) { 223 if (!isFakeWindow()) { 223 224 OSLibWinSetVisibleRegionNotify(OS2Hwnd, FALSE); 224 225 OSLibWinSetWindowULong(OS2Hwnd, OFFSET_WIN32WNDPTR, 0); … … 1448 1449 //****************************************************************************** 1449 1450 BOOL Win32BaseWindow::isDesktopWindow() 1450 {1451 return FALSE;1452 }1453 //******************************************************************************1454 //******************************************************************************1455 BOOL Win32BaseWindow::isFakeWindow()1456 1451 { 1457 1452 return FALSE; -
trunk/src/user32/win32wbase.h
r21916 r22135 180 180 virtual BOOL isMDIChild(); 181 181 virtual BOOL isDesktopWindow(); 182 virtual BOOL isFakeWindow(); 182 BOOL isFakeWindow() { return fFakeWindow; } 183 183 184 184 BOOL fHasParentDC() { return fParentDC; }; … … 423 423 fIsDragDropActive:1, 424 424 fDirtyUpdateRegion:1, 425 fWindowLocked:1; 425 fWindowLocked:1, 426 fFakeWindow:1; 426 427 427 428 ULONG state; -
trunk/src/user32/win32wfake.cpp
r22003 r22135 94 94 if (!fInited) init(); 95 95 96 fFakeWindow = TRUE; 97 96 98 OS2Hwnd = OS2HwndFrame = hwndOS2; 97 99 … … 220 222 OSLibWinQueryWindowClientRect(OS2Hwnd, &rectClient); 221 223 getWindowRect(); 222 return TRUE;223 }224 //******************************************************************************225 //******************************************************************************226 BOOL Win32FakeWindow::isFakeWindow()227 {228 224 return TRUE; 229 225 } -
trunk/src/user32/win32wfake.h
r21916 r22135 24 24 virtual PRECT getWindowRect(); 25 25 26 virtual BOOL isFakeWindow();27 28 26 static Win32FakeWindow *GetWindowFromOS2Handle(HWND hwnd); 29 27 static void init();
Note:
See TracChangeset
for help on using the changeset viewer.