]> git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/const_stdevtid.h
renamed some topic overviews to a more readable filename
[wxWidgets.git] / docs / doxygen / const_stdevtid.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: const_stdevtid.h
3 // Purpose: std event values enumerated
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9
10 /*!
11
12 @page stdevtid Standard event identifiers
13
14 wxWidgets defines a special identifier value @c wxID_ANY which is used in
15 the following two situations:
16
17 @li when creating a new window you may specify @c wxID_ANY to let
18 wxWidgets assign an unused identifier to it automatically
19 @li when installing an event handler using either the event table
20 macros or wxEvtHandler::Connect,
21 you may use it to indicate that you want to handle the events
22 coming from any control, regardless of its identifier
23
24 Another standard special identifier value is @c wxID_NONE: this is a value
25 which is not matched by any other id.
26
27 wxWidgets also defines a few standard command identifiers which may be used by
28 the user code and also are sometimes used by wxWidgets itself. These reserved
29 identifiers are all in the range between @c wxID_LOWEST and
30 @c wxID_HIGHEST and, accordingly, the user code should avoid defining its
31 own constants in this range.
32
33 @verbatim
34 wxID_LOWEST = 4999,
35
36 wxID_OPEN,
37 wxID_CLOSE,
38 wxID_NEW,
39 wxID_SAVE,
40 wxID_SAVEAS,
41 wxID_REVERT,
42 wxID_EXIT,
43 wxID_UNDO,
44 wxID_REDO,
45 wxID_HELP,
46 wxID_PRINT,
47 wxID_PRINT_SETUP,
48 wxID_PAGE_SETUP,
49 wxID_PREVIEW,
50 wxID_ABOUT,
51 wxID_HELP_CONTENTS,
52 wxID_HELP_INDEX,
53 wxID_HELP_SEARCH,
54 wxID_HELP_COMMANDS,
55 wxID_HELP_PROCEDURES,
56 wxID_HELP_CONTEXT,
57 wxID_CLOSE_ALL,
58
59 wxID_EDIT = 5030,
60 wxID_CUT,
61 wxID_COPY,
62 wxID_PASTE,
63 wxID_CLEAR,
64 wxID_FIND,
65 wxID_DUPLICATE,
66 wxID_SELECTALL,
67 wxID_DELETE,
68 wxID_REPLACE,
69 wxID_REPLACE_ALL,
70 wxID_PROPERTIES,
71
72 wxID_VIEW_DETAILS,
73 wxID_VIEW_LARGEICONS,
74 wxID_VIEW_SMALLICONS,
75 wxID_VIEW_LIST,
76 wxID_VIEW_SORTDATE,
77 wxID_VIEW_SORTNAME,
78 wxID_VIEW_SORTSIZE,
79 wxID_VIEW_SORTTYPE,
80
81 wxID_FILE = 5050,
82 wxID_FILE1,
83 wxID_FILE2,
84 wxID_FILE3,
85 wxID_FILE4,
86 wxID_FILE5,
87 wxID_FILE6,
88 wxID_FILE7,
89 wxID_FILE8,
90 wxID_FILE9,
91
92 // Standard button IDs
93 wxID_OK = 5100,
94 wxID_CANCEL,
95 wxID_APPLY,
96 wxID_YES,
97 wxID_NO,
98 wxID_STATIC,
99 wxID_FORWARD,
100 wxID_BACKWARD,
101 wxID_DEFAULT,
102 wxID_MORE,
103 wxID_SETUP,
104 wxID_RESET,
105 wxID_CONTEXT_HELP,
106 wxID_YESTOALL,
107 wxID_NOTOALL,
108 wxID_ABORT,
109 wxID_RETRY,
110 wxID_IGNORE,
111
112 wxID_UP,
113 wxID_DOWN,
114 wxID_HOME,
115 wxID_REFRESH,
116 wxID_STOP,
117 wxID_INDEX,
118
119 wxID_BOLD,
120 wxID_ITALIC,
121 wxID_JUSTIFY_CENTER,
122 wxID_JUSTIFY_FILL,
123 wxID_JUSTIFY_RIGHT,
124 wxID_JUSTIFY_LEFT,
125 wxID_UNDERLINE,
126 wxID_INDENT,
127 wxID_UNINDENT,
128 wxID_ZOOM_100,
129 wxID_ZOOM_FIT,
130 wxID_ZOOM_IN,
131 wxID_ZOOM_OUT,
132 wxID_UNDELETE,
133 wxID_REVERT_TO_SAVED,
134
135 // System menu IDs (used by wxUniv):
136 wxID_SYSTEM_MENU = 5200,
137 wxID_CLOSE_FRAME,
138 wxID_MOVE_FRAME,
139 wxID_RESIZE_FRAME,
140 wxID_MAXIMIZE_FRAME,
141 wxID_ICONIZE_FRAME,
142 wxID_RESTORE_FRAME,
143
144 // IDs used by generic file dialog (13 consecutive starting from this value)
145 wxID_FILEDLGG = 5900,
146
147 wxID_HIGHEST = 5999
148 @endverbatim
149
150 */