Changeset 2200 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 24, 1999, 7:42:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2140 r2200 1 /* $Id: win32wbase.h,v 1.5 5 1999-12-19 17:46:26 cbratschiExp $ */1 /* $Id: win32wbase.h,v 1.56 1999-12-24 18:39:12 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 71 71 ULONG MsgPosChanging(LPARAM lp); 72 72 ULONG MsgPosChanged(LPARAM lp); 73 ULONG MsgMove(ULONG x, ULONG y);74 ULONG MsgHitTest(ULONG x, ULONG y);75 ULONG MsgSize(ULONG width, ULONG height, BOOL fMinimize, BOOL fMaximize);76 73 virtual ULONG MsgActivate(BOOL fActivate, BOOL fMinimized, HWND hwnd); 77 74 ULONG MsgSetFocus(HWND hwnd); 78 75 ULONG MsgKillFocus(HWND hwnd); 79 ULONG MsgTimer(ULONG TimerID);80 ULONG MsgSysTimer(ULONG TimerID);81 76 ULONG MsgScroll(ULONG msg, ULONG scrollCode, ULONG scrollPos); 82 ULONG MsgCommand(ULONG cmd, ULONG Id, HWND hwnd); 83 ULONG MsgSysCommand(ULONG win32sc, ULONG x, ULONG y); 84 ULONG MsgChar(ULONG cmd, ULONG repeatcnt, ULONG scancode, ULONG vkey, ULONG keyflags); 85 ULONG MsgKeyUp (ULONG repeatCount, ULONG scancode, ULONG virtualKey); 86 ULONG MsgKeyDown (ULONG repeatCount, ULONG scancode, ULONG virtualKey, BOOL keyWasPressed); 87 ULONG MsgSysKeyUp (ULONG repeatCount, ULONG scancode, ULONG virtualKey); 88 ULONG MsgSysKeyDown (ULONG repeatCount, ULONG scancode, ULONG virtualKey, BOOL keyWasPressed); 89 ULONG MsgButton(ULONG msg, ULONG ncx, ULONG ncy, ULONG clx, ULONG cly); 90 ULONG MsgMouseMove(ULONG keystate, ULONG x, ULONG y); 77 ULONG MsgButton(MSG *msg); 78 ULONG MsgMouseMove(MSG *msg); 91 79 ULONG MsgPaint(ULONG tmp1, BOOL select = TRUE); 92 80 ULONG MsgEraseBackGround(HDC hdc); 81 ULONG MsgInitMenu(MSG *msg); 82 ULONG MsgHitTest(MSG *msg); 83 ULONG MsgNCPaint(); 84 ULONG DispatchMsg(MSG *msg); 85 93 86 ULONG MsgSetText(LPSTR lpsz, LONG cch); 94 87 ULONG MsgGetTextLength(); 95 88 char *MsgGetText(); 96 89 ULONG MsgContextMenu(ULONG x,ULONG y); 97 void MsgInitMenu(HWND hMenu);98 90 VOID updateWindowStyle(DWORD oldExStyle,DWORD oldStyle); 99 91 … … 366 358 else return SendInternalMessageA(msg, wParam, lParam); 367 359 } 360 #else 361 friend BOOL OS2ToWinMsgTranslate(void *pThdb, QMSG *os2Msg, MSG *winMsg, BOOL isUnicode, BOOL fTranslateExtraMsgs); 368 362 #endif 369 363 … … 394 388 }; 395 389 396 397 #define BUTTON_LEFTDOWN 0398 #define BUTTON_LEFTUP 1399 #define BUTTON_LEFTDBLCLICK 2400 #define BUTTON_RIGHTUP 3401 #define BUTTON_RIGHTDOWN 4402 #define BUTTON_RIGHTDBLCLICK 5403 #define BUTTON_MIDDLEUP 6404 #define BUTTON_MIDDLEDOWN 7405 #define BUTTON_MIDDLEDBLCLICK 8406 407 390 #define WMMOVE_LBUTTON 1 408 391 #define WMMOVE_MBUTTON 2 … … 411 394 #define WMMOVE_SHIFT 16 412 395 413 414 #define CMD_MENU 1415 #define CMD_CONTROL 2416 #define CMD_ACCELERATOR 3417 418 #define KEY_ALTDOWN 1419 #define KEY_PREVDOWN 2420 #define KEY_UP 4421 #define KEY_DEADKEY 8422 423 396 #endif //__cplusplus 424 397
Note:
See TracChangeset
for help on using the changeset viewer.