]>
Commit | Line | Data |
---|---|---|
4514447c FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: const_stockitems.h | |
3 | // Purpose: stock item values enumerated | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | /*! | |
11 | ||
12 | @page page_stockitems Stock items | |
13 | ||
14 | Window IDs for which stock buttons and menu items are created | |
15 | (see the wxButton constructor and the wxMenuItem constructor): | |
16 | ||
17 | @beginDefList | |
18 | @itemdef{<b>Stock ID</b>, <b>Stock label</b>} | |
19 | @itemdef{wxID_ABOUT, "&About"} | |
20 | @itemdef{wxID_ADD, "Add" and} | |
21 | @itemdef{wxID_APPLY, "&Apply"} | |
22 | @itemdef{wxID_BOLD, "&Bold"} | |
23 | @itemdef{wxID_CANCEL, "&Cancel"} | |
24 | @itemdef{wxID_CLEAR, "&Clear"} | |
25 | @itemdef{wxID_CLOSE, "&Close"} | |
26 | @itemdef{wxID_COPY, "&Copy"} | |
27 | @itemdef{wxID_CUT, "Cu&t"} | |
28 | @itemdef{wxID_DELETE, "&Delete"} | |
29 | @itemdef{wxID_EDIT, "&Edit"} | |
30 | @itemdef{wxID_FIND, "&Find"} | |
31 | @itemdef{wxID_FILE, "&File"} | |
32 | @itemdef{wxID_REPLACE, "Find and rep&lace"} | |
33 | @itemdef{wxID_BACKWARD, "&Back"} | |
34 | @itemdef{wxID_DOWN, "&Down"} | |
35 | @itemdef{wxID_FORWARD, "&Forward"} | |
36 | @itemdef{wxID_UP, "&Up"} | |
37 | @itemdef{wxID_HELP, "&Help"} | |
38 | @itemdef{wxID_HOME, "&Home"} | |
39 | @itemdef{wxID_INDENT, "Indent"} | |
40 | @itemdef{wxID_INDEX, "&Index"} | |
41 | @itemdef{wxID_ITALIC, "&Italic"} | |
42 | @itemdef{wxID_JUSTIFY_CENTER, "Centered"} | |
43 | @itemdef{wxID_JUSTIFY_FILL, "Justified"} | |
44 | @itemdef{wxID_JUSTIFY_LEFT, "Align Left"} | |
45 | @itemdef{wxID_JUSTIFY_RIGHT, "Align Right"} | |
46 | @itemdef{wxID_NEW, "&New"} | |
47 | @itemdef{wxID_NO, "&No"} | |
48 | @itemdef{wxID_OK, "&OK"} | |
49 | @itemdef{wxID_OPEN, "&Open"} | |
50 | @itemdef{wxID_PASTE, "&Paste"} | |
51 | @itemdef{wxID_PREFERENCES, "&Preferences"} | |
52 | @itemdef{wxID_PRINT, "&Print"} | |
53 | @itemdef{wxID_PREVIEW, "Print previe&w"} | |
54 | @itemdef{wxID_PROPERTIES, "&Properties"} | |
55 | @itemdef{wxID_EXIT, "&Quit"} | |
56 | @itemdef{wxID_REDO, "&Redo"} | |
57 | @itemdef{wxID_REFRESH, "Refresh"} | |
58 | @itemdef{wxID_REMOVE, "Remove"} | |
59 | @itemdef{wxID_REVERT_TO_SAVED, "Revert to Saved"} | |
60 | @itemdef{wxID_SAVE, "&Save"} | |
61 | @itemdef{wxID_SAVEAS, "Save &As..."} | |
62 | @itemdef{wxID_SELECTALL, "Select all"} | |
63 | @itemdef{wxID_STOP, "&Stop"} | |
64 | @itemdef{wxID_UNDELETE, "Undelete"} | |
65 | @itemdef{wxID_UNDERLINE, "&Underline"} | |
66 | @itemdef{wxID_UNDO, "&Undo"} | |
67 | @itemdef{wxID_UNINDENT, "&Unindent"} | |
68 | @itemdef{wxID_YES, "&Yes"} | |
69 | @itemdef{wxID_ZOOM_100, "&Actual Size"} | |
70 | @itemdef{wxID_ZOOM_FIT, "Zoom to &Fit"} | |
71 | @itemdef{wxID_ZOOM_IN, "Zoom &In"} | |
72 | @itemdef{wxID_ZOOM_OUT, "Zoom &Out"} | |
73 | @endDefList | |
74 | ||
75 | Note that some of the IDs listed above have also a stock accelerator | |
76 | and an help string associated. | |
77 | ||
78 | */ |