- Timestamp:
- Oct 20, 1999, 8:38:10 AM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/Makefile
r1365 r1368 1 # $Id: Makefile,v 1.3 2 1999-10-19 19:26:07 sandervl Exp $1 # $Id: Makefile,v 1.33 1999-10-20 06:38:07 sandervl Exp $ 2 2 3 3 # … … 95 95 spy.obj: spy.cpp $(PDWIN32_INCLUDE)\spy.h 96 96 97 controls.obj: controls.cpp $(PDWIN32_INCLUDE)\win\controls.h win32wmdiclient.h win32dlg.h win32wdesktop.h97 controls.obj: controls.cpp controls.h win32wmdiclient.h win32dlg.h win32wdesktop.h 98 98 button.obj: button.cpp $(PDWIN32_INCLUDE)\win\button.h 99 99 static.obj: static.cpp $(PDWIN32_INCLUDE)\win\static.h … … 124 124 win32wbasepos.obj: win32wbasepos.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 125 125 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 126 win32dlg.obj: win32dlg.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h oslibmsg.h $(PDWIN32_INCLUDE)\win\controls.h126 win32dlg.obj: win32dlg.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h oslibmsg.h controls.h 127 127 win32wndchild.obj: win32wndchild.cpp win32wndchild.h gen_object.h 128 128 win32wmdiclient.obj: win32wmdiclient.cpp win32wbase.h win32wmdiclient.h win32wmdichild.h gen_object.h -
trunk/src/user32/button.cpp
r1343 r1368 1 /* $Id: button.cpp,v 1.1 2 1999-10-17 19:32:04 cbratschiExp $ */1 /* $Id: button.cpp,v 1.13 1999-10-20 06:38:08 sandervl Exp $ */ 2 2 /* File: button.cpp -- Button type widgets 3 3 * … … 13 13 #include <stdlib.h> 14 14 15 #include "winuser.h" 16 #include "winbase.h" 15 #include <os2win.h> 17 16 #include "controls.h" 18 17 #include "button.h" … … 1057 1056 FillRect( hDC, &dis.rcItem, GetSysColorBrush( COLOR_BTNFACE ) ); 1058 1057 1058 dprintf(("OWNERDRAW button %x, enabled %d", hwnd, !(dwStyle & WS_DISABLED))); 1059 1059 SendMessageA( GetParent(hwnd), WM_DRAWITEM, 1060 1060 GetWindowLongA(hwnd,GWL_ID), (LPARAM)&dis ); -
trunk/src/user32/combo.cpp
r1365 r1368 1 /* $Id: combo.cpp,v 1. 5 1999-10-19 19:26:07sandervl Exp $ */1 /* $Id: combo.cpp,v 1.6 1999-10-20 06:38:08 sandervl Exp $ */ 2 2 /* 3 3 * Combo controls … … 12 12 13 13 #include <string.h> 14 #include "winbase.h" 15 #include "winuser.h" 14 #include <os2win.h> 16 15 #include "controls.h" 17 16 #include "combo.h" -
trunk/src/user32/edit.cpp
r1366 r1368 1 /* $Id: edit.cpp,v 1. 5 1999-10-19 19:44:23 phallerExp $ */1 /* $Id: edit.cpp,v 1.6 1999-10-20 06:38:09 sandervl Exp $ */ 2 2 /* 3 3 * Edit control … … 18 18 */ 19 19 20 #include "winuser.h" 21 #include "winbase.h" 20 #include <os2win.h> 22 21 #include <string.h> 23 22 #include "controls.h" -
trunk/src/user32/listbox.cpp
r1351 r1368 1 /* $Id: listbox.cpp,v 1. 9 1999-10-18 11:59:57sandervl Exp $ */1 /* $Id: listbox.cpp,v 1.10 1999-10-20 06:38:09 sandervl Exp $ */ 2 2 /* 3 3 * Listbox controls … … 12 12 #include <stdlib.h> 13 13 #include <stdio.h> 14 #include "winuser.h" 15 #include "winbase.h" 14 #include <os2win.h> 16 15 #include "controls.h" 17 16 #include "winerror.h" -
trunk/src/user32/static.cpp
r1343 r1368 1 /* $Id: static.cpp,v 1. 5 1999-10-17 19:32:04 cbratschiExp $ */1 /* $Id: static.cpp,v 1.6 1999-10-20 06:38:10 sandervl Exp $ */ 2 2 /* 3 3 * Static control … … 11 11 12 12 #include <stdlib.h> 13 #include "winuser.h" 14 #include "winbase.h" 13 #include <os2win.h> 15 14 #include "controls.h" 16 15 #include "static.h"
Note:
See TracChangeset
for help on using the changeset viewer.