- Timestamp:
- Oct 3, 1999, 10:38:02 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r1094 r1114 1 /* $Id: pmwindow.cpp,v 1.1 3 1999-09-29 09:31:18 dengertExp $ */1 /* $Id: pmwindow.cpp,v 1.14 1999-10-03 20:38:01 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 534 534 case WM_MOUSEMOVE: 535 535 { 536 //Only send this message when the mouse isn't captured537 if(WinQueryCapture(HWND_DESKTOP) != NULLHANDLE) {538 goto RunDefWndProc;539 }540 536 ULONG keystate = 0; 541 537 if(WinGetKeyState(HWND_DESKTOP, VK_BUTTON1)) … … 551 547 552 548 //OS/2 Window coordinates -> Win32 Window coordinates 553 //NOTE: Do not call the default OS/2 window handler as that one changes549 //NOTE: Do not call the default OS/2 window handler as that one changes 554 550 // the mousepointer! 555 551 win32wnd->MsgMouseMove(keystate, SHORT1FROMMP(mp1), MapOS2ToWin32Y(win32wnd, SHORT2FROMMP(mp1))); -
trunk/src/user32/win32wbase.h
r1112 r1114 1 /* $Id: win32wbase.h,v 1.1 1 1999-10-03 20:13:04 achimhaExp $ */1 /* $Id: win32wbase.h,v 1.12 1999-10-03 20:38:02 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 107 107 108 108 BOOL isFrameWindow() { return OS2Hwnd != OS2HwndFrame; }; 109 virtual BOOL isMDIClient(); 110 109 111 Win32BaseWindow *getParent() { return (Win32BaseWindow *)ChildWindow::GetParent(); }; 110 112 void setParent(Win32BaseWindow *pwindow) { ChildWindow::SetParent((ChildWindow *)pwindow); }; … … 175 177 176 178 Win32BaseWindow *getTopParent(); 177 BOOL isMDIClient();178 179 SCROLLBAR_INFO *getScrollInfo(int nBar); 179 180 LONG setScrollInfo(int nBar, SCROLLINFO *info, int fRedraw); -
trunk/src/user32/win32wmdiclient.cpp
r1019 r1114 1 /* $Id: win32wmdiclient.cpp,v 1. 2 1999-09-23 14:39:53 phallerExp $ */1 /* $Id: win32wmdiclient.cpp,v 1.3 1999-10-03 20:38:02 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 62 62 //****************************************************************************** 63 63 //****************************************************************************** 64 BOOL Win32MDIClientWindow::isMDIClient() 65 { 66 return TRUE; 67 } 68 //****************************************************************************** 69 //****************************************************************************** 64 70 LRESULT Win32MDIClientWindow::MDIClientWndProc(UINT message, WPARAM wParam, LPARAM lParam) 65 71 { -
trunk/src/user32/win32wmdiclient.h
r949 r1114 1 /* $Id: win32wmdiclient.h,v 1. 1 1999-09-15 23:19:01sandervl Exp $ */1 /* $Id: win32wmdiclient.h,v 1.2 1999-10-03 20:38:02 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 27 27 Win32MDIClientWindow(CREATESTRUCTA *lpCreateStructA, ATOM classAtom, BOOL isUnicode); 28 28 virtual ~Win32MDIClientWindow(); 29 30 virtual BOOL isMDIClient(); 29 31 30 32 int incTotalCreated() { return ++nTotalCreated; };
Note:
See TracChangeset
for help on using the changeset viewer.