Changeset 342 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 20, 1999, 9:42:36 AM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32wnd.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r340 r342 1 /* $Id: win32wnd.h,v 1.1 5 1999-07-19 18:40:44sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.16 1999-07-20 07:42:36 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 18 18 #include <gen_object.h> 19 19 #include <win32wndchild.h> 20 #include <winres.h> 20 21 21 22 class Win32Window; … … 87 88 void setWindowId(DWORD id) { windowId = id; }; 88 89 ULONG getWindowHeight() { return rectClient.bottom - rectClient.top; }; 90 BOOL isChild(); 89 91 90 92 DWORD getFlags() { return flags; }; 91 93 void setFlags(DWORD newflags) { flags = newflags; }; 92 94 95 ULONG GetAccelTable() { return (ULONG) acceltableResource; }; 96 BOOL SetAccelTable(ULONG hAccel); 97 98 ULONG GetMenu() { return (ULONG) menuResource; }; 93 99 BOOL SetMenu(ULONG hMenu); 100 94 101 BOOL ShowWindow(ULONG nCmdShow); 95 102 BOOL SetWindowPos(HWND hwndInsertAfter, int x, int y, int cx, int cy, UINT fuFlags); … … 182 189 Win32Window *owner; 183 190 191 Win32Resource *acceltableResource; 192 Win32Resource *menuResource; 193 184 194 char *windowName; 185 195 ULONG wndNameLength;
Note:
See TracChangeset
for help on using the changeset viewer.
