]>
Commit | Line | Data |
---|---|---|
bb338b31 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wxOs2.h | |
3 | // Purpose: OS/2 resource defines | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 02/26/00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_OS2_H_ | |
13 | #define _WX_OS2_H_ | |
14 | ||
15 | // | |
16 | // These are defines of wxOS2's standard frame resources | |
17 | // | |
18 | ||
19 | #define IDR_MAIN 1 | |
20 | ||
21 | #define IDM_FILENEW 2000 | |
22 | #define IDM_FILEOPEN 2001 | |
23 | #define IDM_FILESAVE 2002 | |
24 | #define IDM_FILESAVEAS 2003 | |
25 | ||
26 | #define IDM_EDIT 3000 | |
27 | #define IDM_EDITUNDO 3001 | |
28 | #define IDM_EDITCUT 3002 | |
29 | #define IDM_EDITCOPY 3003 | |
30 | #define IDM_EDITPASTE 3004 | |
31 | #define IDM_EDITCLEAR 3005 | |
32 | ||
33 | #define IDM_HELP 8000 | |
34 | #define IDM_HELPINDEX 8001 | |
35 | #define IDM_HELPGENERAL 8002 | |
36 | #define IDM_HELPUSINGHELP 8003 | |
37 | #define IDM_HELPABOUT 8004 | |
38 | ||
39 | #define IDS_OPEN 20000 | |
40 | #define IDS_SAVE 20001 | |
41 | ||
42 | #endif // _WX_OS2_H_ | |
43 |