Changeset 9953 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Mar 29, 2003, 5:38:01 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r9951 r9953 1 /* $Id: pmwindow.cpp,v 1.20 5 2003-03-28 13:56:59 sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.206 2003-03-29 16:37:59 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 644 644 645 645 case WM_VRNENABLED: 646 { 646 647 dprintf(("OS2: WM_VRNENABLED %x %x %x", win32wnd->getWindowHandle(), mp1, mp2)); 647 648 //Always call handler; even if mp1 is 0. If we don't do this, the 648 649 //DivX 4 player will never be allowed to draw after putting another window 649 650 //on top of it. 651 650 652 win32wnd->callVisibleRgnNotifyProc(TRUE); 651 653 if(!win32wnd->isComingToTop() && ((win32wnd->getExStyle() & WS_EX_TOPMOST_W) == WS_EX_TOPMOST_W)) … … 669 671 } 670 672 goto RunDefWndProc; 673 } 671 674 672 675 case WM_VRNDISABLED: 676 { 673 677 dprintf(("OS2: WM_VRNDISABLED %x %x %x", win32wnd->getWindowHandle(), mp1, mp2)); 674 678 //visible region is about to change or WinLockWindowUpdate called 675 679 //suspend window drawing 680 676 681 win32wnd->callVisibleRgnNotifyProc(FALSE); 677 682 goto RunDefWndProc; 683 } 678 684 679 685 case WIN32APP_DDRAWFULLSCREEN: … … 1466 1472 } 1467 1473 } 1474 #ifdef DEBUG 1468 1475 dprintf(("WM_ADJUSTWINDOWPOS ret %x flags %x", ret, WinQueryWindowUShort(hwnd, QWS_FLAGS))); 1469 //testestset1470 1476 if(ret == 0x0f) { 1471 1477 dprintf(("PMFRAME:WM_ADJUSTWINDOWPOS, app changed windowpos struct")); 1472 1478 dprintf(("%x (%s) (%d,%d), (%d,%d)", pswp->fl, DbgGetStringSWPFlags(pswp->fl), pswp->x, pswp->y, pswp->cx, pswp->cy)); 1473 1479 } 1474 //testestset 1480 #endif 1475 1481 rc = (MRESULT)ret; 1476 1482 break;
Note:
See TracChangeset
for help on using the changeset viewer.