- Timestamp:
- Oct 8, 2000, 8:45:36 PM (25 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibmsgtranslate.cpp
r3873 r4457 1 /* $Id: oslibmsgtranslate.cpp,v 1.3 6 2000-07-20 18:08:12sandervl Exp $ */1 /* $Id: oslibmsgtranslate.cpp,v 1.37 2000-10-08 18:45:35 sandervl Exp $ */ 2 2 /* 3 3 * Window message translation functions for OS/2 … … 243 243 244 244 if(pswp->fl & (SWP_MOVE | SWP_SIZE)) { 245 dprintf(("Set client rectangle to (%d,%d)(%d,%d)", swpOld.x, swpOld.y, swpOld.x + swpOld.cx, swpOld.y + swpOld.cy));245 ///// dprintf(("Set client rectangle to (%d,%d)(%d,%d)", swpOld.x, swpOld.y, swpOld.x + swpOld.cx, swpOld.y + swpOld.cy)); 246 246 ///// win32wnd->setClientRect(swpOld.x, swpOld.y, swpOld.x + swpOld.cx, swpOld.y + swpOld.cy); 247 247 -
trunk/src/user32/scroll.cpp
r3215 r4457 1 /* $Id: scroll.cpp,v 1.3 6 2000-03-24 17:12:20 cbratschiExp $ */1 /* $Id: scroll.cpp,v 1.37 2000-10-08 18:45:36 sandervl Exp $ */ 2 2 /* 3 3 * Scrollbar control … … 1519 1519 1520 1520 case SB_VERT: 1521 if (fShow V)1521 if (fShow) 1522 1522 { 1523 1523 fShowV = !(win32wnd->getStyle() & WS_VSCROLL); -
trunk/src/user32/window.cpp
r4225 r4457 1 /* $Id: window.cpp,v 1.7 7 2000-09-08 18:08:58sandervl Exp $ */1 /* $Id: window.cpp,v 1.78 2000-10-08 18:45:36 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 907 907 } 908 908 //****************************************************************************** 909 //Calculate window rectangle based on given client rectangle, style, menu and extended style 909 910 //****************************************************************************** 910 911 BOOL WIN32API AdjustWindowRectEx( PRECT rect, DWORD style, BOOL menu, DWORD exStyle) 911 912 { 913 if(style == 0 && menu == FALSE && exStyle == 0) { 914 dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d) -> no change required", style, exStyle, menu, rect->left, rect->top, rect->right, rect->bottom)); 915 return TRUE; //nothing needs to be changed (VERIFIED in NT 4) 916 } 912 917 dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d)\n", style, exStyle, menu, rect->left, rect->top, rect->right, rect->bottom)); 913 914 if(style == 0 && menu == FALSE && exStyle == 0) {915 return TRUE; //nothing needs to be changed (VERIFIED in NT 4)916 }917 918 /* Correct the window style */ 918 919 if (!(style & (WS_POPUP | WS_CHILD))) /* Overlapped window */ … … 1355 1356 for (i = 0, winpos = pDWP->winPos; i < pDWP->actualCount; i++, winpos++) 1356 1357 { 1357 dprintf(("**EndDeferWindowPos %x (%d,%d) (%d,%d) %x", winpos->hwnd, winpos->x, winpos->y, winpos-> x, winpos->cy, winpos->flags));1358 dprintf(("**EndDeferWindowPos %x (%d,%d) (%d,%d) %x", winpos->hwnd, winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags)); 1358 1359 if (!(res = SetWindowPos(winpos->hwnd, winpos->hwndInsertAfter, 1359 1360 winpos->x, winpos->y, winpos->cx,
Note:
See TracChangeset
for help on using the changeset viewer.