Changeset 394 for trunk/src


Ignore:
Timestamp:
Jul 25, 1999, 6:31:44 PM (26 years ago)
Author:
cbratschi
Message:

edit menu resource

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:25 cbratschi Exp $ */
     1/* $Id: edit.cpp,v 1.2 1999-07-25 16:31:44 cbratschi Exp $ */
    22/*
    33 *      Edit control
     
    1414 *      please read EDIT.TODO (and update it when you change things)
    1515  CB:
    16    - OS/2 menu resource not  implemented
     16   - OS/2 menu not implemented (WM_CONTEXTMENU)
    1717 */
    1818
  • 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 $ */
    22/* converted from WINE */
    33
     
    4545
    4646BITMAP 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
     57MENU 100
     58BEGIN
     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
     67END
Note: See TracChangeset for help on using the changeset viewer.