Changeset 2257 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 29, 1999, 11:54:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2250 r2257 1 /* $Id: win32wbase.h,v 1. 59 1999-12-29 14:37:18 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.60 1999-12-29 22:54:03 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 80 80 ULONG MsgPaint(ULONG tmp1, BOOL select = TRUE); 81 81 ULONG MsgEraseBackGround(HDC hdc); 82 83 82 ULONG MsgInitMenu(MSG *msg); 83 ULONG MsgHitTest(MSG *msg); 84 84 ULONG MsgNCPaint(); 85 86 85 ULONG DispatchMsgA(MSG *msg); 86 ULONG DispatchMsgW(MSG *msg); 87 87 88 88 ULONG MsgSetText(LPSTR lpsz, LONG cch); … … 124 124 DWORD getWindowId() { return windowId; }; 125 125 void setWindowId(DWORD id); 126 ULONG getWindowHeight() { return rectClient.bottom - rectClient.top; }; 127 ULONG getWindowWidth() { return rectClient.right - rectClient.left; }; 126 ULONG getWindowHeight() { return rectWindow.bottom - rectWindow.top; }; 127 ULONG getWindowWidth() { return rectWindow.right - rectWindow.left; }; 128 ULONG getClientHeight() { return rectClient.bottom - rectClient.top; }; 129 ULONG getClientWidth() { return rectClient.right - rectClient.left; }; 128 130 BOOL isChild(); 129 131 PRECT getClientRect() { return &rectClient; };
Note:
See TracChangeset
for help on using the changeset viewer.