Changeset 2415 for trunk/src/user32/new/win32wbase.cpp
- Timestamp:
- Jan 12, 2000, 1:41:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r2410 r2415 1 /* $Id: win32wbase.cpp,v 1.3 4 2000-01-11 17:34:43 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.35 2000-01-12 12:40:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1023 1023 } 1024 1024 //****************************************************************************** 1025 //TODO: Depending on menu type, we should send WM_INITMENU or WM_INITPOPUPMENU1026 //TODO: PM sends it for each submenu that gets activated; Windows only for the first1027 // submenu; once the menu bar is active, moving the cursor doesn't generate other1028 // WM_INITMENU msgs. Not really a problem, but might need to fix this later on.1029 //******************************************************************************1030 ULONG Win32BaseWindow::MsgInitMenu(MSG *msg)1031 {1032 return SendInternalMessageA(msg->message, msg->wParam, msg->lParam);1033 }1034 //******************************************************************************1035 1025 //****************************************************************************** 1036 1026 ULONG Win32BaseWindow::MsgNCPaint() … … 1061 1051 1062 1052 return rc; 1063 } else return 0; 1053 } 1054 else return 0; 1064 1055 } 1065 1056 //****************************************************************************** … … 1100 1091 SendInternalMessageA(WM_GETTEXT, wndNameLength, (LPARAM)windowNameA); 1101 1092 return windowNameA; 1102 }1103 //******************************************************************************1104 //******************************************************************************1105 ULONG Win32BaseWindow::MsgContextMenu(ULONG x,ULONG y)1106 {1107 return SendInternalMessageA(WM_CONTEXTMENU,Win32Hwnd,MAKELPARAM(x,y));1108 1093 } 1109 1094 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.