Changeset 11819
- Timestamp:
- Oct 9, 1999, 8:16:58 PM (26 years ago)
- Location:
- tags/trunk/src/user32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/user32/Makefile ¶
r11783 r11819 1 # $Id: Makefile,v 1.2 7 1999-10-08 18:39:33sandervl Exp $1 # $Id: Makefile,v 1.28 1999-10-09 18:16:56 sandervl Exp $ 2 2 3 3 # … … 105 105 pmframe.obj: pmframe.cpp win32class.h win32wbase.h pmframe.h win32wndchild.h 106 106 win32class.obj: win32class.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h 107 win32wbase.obj: win32wbase.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h dc.h pmframe.h 107 win32wbase.obj: win32wbase.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h dc.h pmframe.h win32wdesktop.h 108 108 win32wnd.obj: win32wnd.cpp win32class.h win32wbase.h win32wnd.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h oslibmenu.h 109 109 win32dlg.obj: win32dlg.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h oslibmsg.h -
TabularUnified tags/trunk/src/user32/win32wbase.cpp ¶
r11798 r11819 1 /* $Id: win32wbase.cpp,v 1.3 2 1999-10-09 09:45:27 sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.33 1999-10-09 18:16:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 39 39 #include "dc.h" 40 40 #include "pmframe.h" 41 #include "win32wdesktop.h" 41 42 42 43 #define HAS_DLGFRAME(style,exStyle) \ … … 2530 2531 Win32BaseWindow *window; 2531 2532 2533 if(hwnd == NULL && windowDesktop) 2534 return windowDesktop; 2535 2532 2536 if(HwGetWindowHandleData(hwnd, (DWORD *)&window) == TRUE) { 2533 2537 return window; … … 2590 2594 return window->getWindowHandle(); 2591 2595 } 2592 else return hwnd; //OS/2 window handle 2596 window = GetWindowFromOS2FrameHandle(hwnd); 2597 if(window) { 2598 return window->getWindowHandle(); 2599 } 2600 else return hwnd; //OS/2 window handle 2593 2601 } 2594 2602 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/win32wdesktop.h ¶
r11604 r11819 1 /* $Id: win32wdesktop.h,v 1. 1 1999-09-23 10:33:59sandervl Exp $ */1 /* $Id: win32wdesktop.h,v 1.2 1999-10-09 18:16:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Desktop Window for OS/2 … … 31 31 #define DESKTOP_CLASS_NAMEA "#32769" /* Desktop */ 32 32 #define DESKTOP_CLASS_NAMEW L"#32769" /* Desktop */ 33 #undef DESKTOP_CLASS_ATOM 33 34 #define DESKTOP_CLASS_ATOM 32769 /* Desktop */ 34 35 -
TabularUnified tags/trunk/src/user32/window.cpp ¶
r11748 r11819 1 /* $Id: window.cpp,v 1.1 1 1999-10-07 09:28:02sandervl Exp $ */1 /* $Id: window.cpp,v 1.12 1999-10-09 18:16:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 405 405 return 0; 406 406 } 407 dprintf(("GetTopWindow %x", hwnd));408 407 return window->GetTopWindow(); 409 408 } … … 591 590 { 592 591 HWND hwnd; 593 // dprintf(("USER32: GetFocus\n"));594 592 595 593 hwnd = OSLibWinQueryFocus(OSLIB_HWND_DESKTOP); 596 return Win32BaseWindow::OS2ToWin32Handle(hwnd); 594 dprintf(("USER32: GetFocus %x\n", hwnd)); 595 hwnd = Win32BaseWindow::OS2ToWin32Handle(hwnd); 596 return hwnd; 597 597 } 598 598 //****************************************************************************** -
TabularUnified tags/trunk/src/user32/winprop.cpp ¶
r11783 r11819 1 /* $Id: winprop.cpp,v 1. 2 1999-10-08 18:39:35sandervl Exp $ */1 /* $Id: winprop.cpp,v 1.3 1999-10-09 18:16:58 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Property apis for OS/2 … … 13 13 #include <misc.h> 14 14 #include "win32wbase.h" 15 16 #undef DEBUG 15 17 16 18 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.