- Timestamp:
- Jul 25, 1999, 6:31:44 PM (26 years ago)
- Location:
- trunk/src/user32/new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/edit.cpp
r387 r394 1 /* $Id: edit.cpp,v 1. 1 1999-07-24 17:10:25cbratschi Exp $ */1 /* $Id: edit.cpp,v 1.2 1999-07-25 16:31:44 cbratschi Exp $ */ 2 2 /* 3 3 * Edit control … … 14 14 * please read EDIT.TODO (and update it when you change things) 15 15 CB: 16 - OS/2 menu resource not implemented16 - OS/2 menu not implemented (WM_CONTEXTMENU) 17 17 */ 18 18 -
trunk/src/user32/new/user32.rc
r384 r394 1 /* $Id */1 /* $Id: user32.rc,v 1.4 1999-07-25 16:31:44 cbratschi Exp $ */ 2 2 /* converted from WINE */ 3 3 … … 45 45 46 46 BITMAP OBM_COMBO "combo.bmp" 47 48 /* Edit */ 49 50 #define EM_UNDO 0x00c7 51 #define WM_CUT 0x0300 52 #define WM_COPY 0x0301 53 #define WM_PASTE 0x0302 54 #define WM_CLEAR 0x0303 55 #define EM_SETSEL 0x00b1 56 57 MENU 100 58 BEGIN 59 MENUITEM "~Undo", EM_UNDO 60 MENUITEM SEPARATOR 61 MENUITEM "Cu~t", WM_CUT 62 MENUITEM "~Copy", WM_COPY 63 MENUITEM "~Paste", WM_PASTE 64 MENUITEM "~Delete", WM_CLEAR 65 MENUITEM SEPARATOR 66 MENUITEM "Select ~All", EM_SETSEL 67 END
Note:
See TracChangeset
for help on using the changeset viewer.