Changeset 391 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 25, 1999, 11:19:22 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r345 r391 1 /* $Id: win32wnd.h,v 1.1 7 1999-07-20 15:46:54sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.18 1999-07-25 09:19:22 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 66 66 ULONG MsgKillFocus(HWND hwnd); 67 67 ULONG MsgCommand(ULONG cmd, ULONG Id, HWND hwnd); 68 ULONG MsgSysCommand(ULONG win32sc, ULONG x, ULONG y); 69 ULONG MsgChar(ULONG cmd, ULONG repeatcnt, ULONG scancode, ULONG vkey, ULONG keyflags); 68 70 ULONG MsgButton(ULONG msg, ULONG x, ULONG y); 69 71 ULONG MsgMouseMove(ULONG keystate, ULONG x, ULONG y); … … 81 83 HWND getWindowHandle() { return Win32Hwnd; }; 82 84 HWND getOS2WindowHandle() { return OS2Hwnd; }; 85 HWND getOS2FrameWindowHandle() { return OS2HwndFrame; }; 83 86 Win32Window *getParent() { return (Win32Window *)ChildWindow::GetParent(); }; 84 87 void setParent(Win32Window *pwindow) { ChildWindow::SetParent((ChildWindow *)pwindow); }; … … 254 257 #define CMD_ACCELERATOR 3 255 258 259 #define WIN32SC_SIZE 0xf000 260 #define WIN32SC_MOVE 0xf010 261 #define WIN32SC_MINIMIZE 0xf020 262 #define WIN32SC_MAXIMIZE 0xf030 263 #define WIN32SC_NEXTWINDOW 0xf040 264 #define WIN32SC_PREVWINDOW 0xf050 265 #define WIN32SC_CLOSE 0xf060 266 #define WIN32SC_VSCROLL 0xf070 267 #define WIN32SC_HSCROLL 0xf080 268 #define WIN32SC_MOUSEMENU 0xf090 269 #define WIN32SC_KEYMENU 0xf100 270 #define WIN32SC_ARRANGE 0xf110 271 #define WIN32SC_RESTORE 0xf120 272 #define WIN32SC_TASKLIST 0xf130 273 #define WIN32SC_SCREENSAVE 0xf140 274 #define WIN32SC_HOTKEY 0xf150 275 276 #define KEY_ALTDOWN 1 277 #define KEY_PREVDOWN 2 278 #define KEY_UP 4 279 256 280 #endif //__cplusplus 257 281
Note:
See TracChangeset
for help on using the changeset viewer.