]>
Commit | Line | Data |
---|---|---|
401e3b6e | 1 | /////////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/common/stockitem.cpp |
401e3b6e VS |
3 | // Purpose: Stock buttons, menu and toolbar items labels |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 2004-08-15 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vaclav Slavik, 2004 | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
401e3b6e VS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #include "wx/stockitem.h" | |
88a7a4e1 WS |
28 | |
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/intl.h" | |
de6185e2 | 31 | #include "wx/utils.h" // for wxStripMenuCodes() |
88a7a4e1 WS |
32 | #endif |
33 | ||
5f7bcb48 VS |
34 | bool wxIsStockID(wxWindowID id) |
35 | { | |
36 | switch (id) | |
37 | { | |
ee0a94cf | 38 | case wxID_ABOUT: |
5f7bcb48 VS |
39 | case wxID_ADD: |
40 | case wxID_APPLY: | |
6b1eedc1 | 41 | case wxID_BACKWARD: |
5f7bcb48 | 42 | case wxID_BOLD: |
6b1eedc1 | 43 | case wxID_BOTTOM: |
5f7bcb48 | 44 | case wxID_CANCEL: |
6b1eedc1 | 45 | case wxID_CDROM: |
5f7bcb48 VS |
46 | case wxID_CLEAR: |
47 | case wxID_CLOSE: | |
6b1eedc1 | 48 | case wxID_CONVERT: |
5f7bcb48 VS |
49 | case wxID_COPY: |
50 | case wxID_CUT: | |
51 | case wxID_DELETE: | |
6b1eedc1 | 52 | case wxID_DOWN: |
ee0a94cf | 53 | case wxID_EDIT: |
6b1eedc1 VZ |
54 | case wxID_EXECUTE: |
55 | case wxID_EXIT: | |
ee0a94cf | 56 | case wxID_FILE: |
6b1eedc1 VZ |
57 | case wxID_FIND: |
58 | case wxID_FIRST: | |
59 | case wxID_FLOPPY: | |
5f7bcb48 | 60 | case wxID_FORWARD: |
6b1eedc1 | 61 | case wxID_HARDDISK: |
5f7bcb48 VS |
62 | case wxID_HELP: |
63 | case wxID_HOME: | |
64 | case wxID_INDENT: | |
65 | case wxID_INDEX: | |
6b1eedc1 | 66 | case wxID_INFO: |
5f7bcb48 | 67 | case wxID_ITALIC: |
6b1eedc1 | 68 | case wxID_JUMP_TO: |
5f7bcb48 VS |
69 | case wxID_JUSTIFY_CENTER: |
70 | case wxID_JUSTIFY_FILL: | |
71 | case wxID_JUSTIFY_LEFT: | |
72 | case wxID_JUSTIFY_RIGHT: | |
6b1eedc1 VZ |
73 | case wxID_LAST: |
74 | case wxID_NETWORK: | |
5f7bcb48 VS |
75 | case wxID_NEW: |
76 | case wxID_NO: | |
77 | case wxID_OK: | |
78 | case wxID_OPEN: | |
79 | case wxID_PASTE: | |
80 | case wxID_PREFERENCES: | |
5f7bcb48 | 81 | case wxID_PREVIEW: |
6b1eedc1 | 82 | case wxID_PRINT: |
5f7bcb48 | 83 | case wxID_PROPERTIES: |
5f7bcb48 VS |
84 | case wxID_REDO: |
85 | case wxID_REFRESH: | |
86 | case wxID_REMOVE: | |
6b1eedc1 | 87 | case wxID_REPLACE: |
5f7bcb48 VS |
88 | case wxID_REVERT_TO_SAVED: |
89 | case wxID_SAVE: | |
90 | case wxID_SAVEAS: | |
ee0a94cf | 91 | case wxID_SELECTALL: |
6b1eedc1 VZ |
92 | case wxID_SELECT_COLOR: |
93 | case wxID_SELECT_FONT: | |
94 | case wxID_SORT_ASCENDING: | |
95 | case wxID_SORT_DESCENDING: | |
96 | case wxID_SPELL_CHECK: | |
5f7bcb48 | 97 | case wxID_STOP: |
6b1eedc1 VZ |
98 | case wxID_STRIKETHROUGH: |
99 | case wxID_TOP: | |
5f7bcb48 VS |
100 | case wxID_UNDELETE: |
101 | case wxID_UNDERLINE: | |
102 | case wxID_UNDO: | |
103 | case wxID_UNINDENT: | |
6b1eedc1 | 104 | case wxID_UP: |
5f7bcb48 VS |
105 | case wxID_YES: |
106 | case wxID_ZOOM_100: | |
107 | case wxID_ZOOM_FIT: | |
108 | case wxID_ZOOM_IN: | |
109 | case wxID_ZOOM_OUT: | |
110 | return true; | |
111 | ||
112 | default: | |
113 | return false; | |
d0ee33f5 | 114 | } |
5f7bcb48 VS |
115 | } |
116 | ||
ee0a94cf | 117 | wxString wxGetStockLabel(wxWindowID id, long flags) |
401e3b6e | 118 | { |
634629fa WS |
119 | wxString stockLabel; |
120 | ||
401e3b6e VS |
121 | #define STOCKITEM(stockid, label) \ |
122 | case stockid: \ | |
634629fa WS |
123 | stockLabel = label; \ |
124 | break; | |
401e3b6e | 125 | |
5f7bcb48 | 126 | switch (id) |
401e3b6e | 127 | { |
5486c1a2 | 128 | STOCKITEM(wxID_ABOUT, _("&About...")) |
5f7bcb48 VS |
129 | STOCKITEM(wxID_ADD, _("Add")) |
130 | STOCKITEM(wxID_APPLY, _("&Apply")) | |
6b1eedc1 | 131 | STOCKITEM(wxID_BACKWARD, _("&Back")) |
5f7bcb48 | 132 | STOCKITEM(wxID_BOLD, _("&Bold")) |
6b1eedc1 | 133 | STOCKITEM(wxID_BOTTOM, _("&Bottom")) |
5f7bcb48 | 134 | STOCKITEM(wxID_CANCEL, _("&Cancel")) |
6b1eedc1 | 135 | STOCKITEM(wxID_CDROM, _("&CD-Rom")) |
5f7bcb48 VS |
136 | STOCKITEM(wxID_CLEAR, _("&Clear")) |
137 | STOCKITEM(wxID_CLOSE, _("&Close")) | |
6b1eedc1 | 138 | STOCKITEM(wxID_CONVERT, _("&Convert")) |
5f7bcb48 VS |
139 | STOCKITEM(wxID_COPY, _("&Copy")) |
140 | STOCKITEM(wxID_CUT, _("Cu&t")) | |
141 | STOCKITEM(wxID_DELETE, _("&Delete")) | |
6b1eedc1 | 142 | STOCKITEM(wxID_DOWN, _("&Down")) |
ee0a94cf | 143 | STOCKITEM(wxID_EDIT, _("&Edit")) |
6b1eedc1 VZ |
144 | STOCKITEM(wxID_EXECUTE, _("&Execute")) |
145 | STOCKITEM(wxID_EXIT, _("&Quit")) | |
ee0a94cf | 146 | STOCKITEM(wxID_FILE, _("&File")) |
6b1eedc1 VZ |
147 | STOCKITEM(wxID_FIND, _("&Find")) |
148 | STOCKITEM(wxID_FIRST, _("&First")) | |
149 | STOCKITEM(wxID_FLOPPY, _("&Floppy")) | |
5f7bcb48 | 150 | STOCKITEM(wxID_FORWARD, _("&Forward")) |
6b1eedc1 | 151 | STOCKITEM(wxID_HARDDISK, _("&Harddisk")) |
5f7bcb48 VS |
152 | STOCKITEM(wxID_HELP, _("&Help")) |
153 | STOCKITEM(wxID_HOME, _("&Home")) | |
154 | STOCKITEM(wxID_INDENT, _("Indent")) | |
155 | STOCKITEM(wxID_INDEX, _("&Index")) | |
6b1eedc1 | 156 | STOCKITEM(wxID_INFO, _("&Info")) |
5f7bcb48 | 157 | STOCKITEM(wxID_ITALIC, _("&Italic")) |
6b1eedc1 | 158 | STOCKITEM(wxID_JUMP_TO, _("&Jump to")) |
5f7bcb48 VS |
159 | STOCKITEM(wxID_JUSTIFY_CENTER, _("Centered")) |
160 | STOCKITEM(wxID_JUSTIFY_FILL, _("Justified")) | |
161 | STOCKITEM(wxID_JUSTIFY_LEFT, _("Align Left")) | |
162 | STOCKITEM(wxID_JUSTIFY_RIGHT, _("Align Right")) | |
6b1eedc1 VZ |
163 | STOCKITEM(wxID_LAST, _("&Last")) |
164 | STOCKITEM(wxID_NETWORK, _("&Network")) | |
5f7bcb48 VS |
165 | STOCKITEM(wxID_NEW, _("&New")) |
166 | STOCKITEM(wxID_NO, _("&No")) | |
167 | STOCKITEM(wxID_OK, _("&OK")) | |
5486c1a2 | 168 | STOCKITEM(wxID_OPEN, _("&Open...")) |
5f7bcb48 VS |
169 | STOCKITEM(wxID_PASTE, _("&Paste")) |
170 | STOCKITEM(wxID_PREFERENCES, _("&Preferences")) | |
5f7bcb48 | 171 | STOCKITEM(wxID_PREVIEW, _("Print previe&w")) |
6b1eedc1 | 172 | STOCKITEM(wxID_PRINT, _("&Print...")) |
5f7bcb48 | 173 | STOCKITEM(wxID_PROPERTIES, _("&Properties")) |
5f7bcb48 VS |
174 | STOCKITEM(wxID_REDO, _("&Redo")) |
175 | STOCKITEM(wxID_REFRESH, _("Refresh")) | |
176 | STOCKITEM(wxID_REMOVE, _("Remove")) | |
6b1eedc1 | 177 | STOCKITEM(wxID_REPLACE, _("Rep&lace")) |
5f7bcb48 VS |
178 | STOCKITEM(wxID_REVERT_TO_SAVED, _("Revert to Saved")) |
179 | STOCKITEM(wxID_SAVE, _("&Save")) | |
180 | STOCKITEM(wxID_SAVEAS, _("Save &As...")) | |
5486c1a2 | 181 | STOCKITEM(wxID_SELECTALL, _("Select &All")) |
6b1eedc1 VZ |
182 | STOCKITEM(wxID_SELECT_COLOR, _("&Color")) |
183 | STOCKITEM(wxID_SELECT_FONT, _("&Font")) | |
184 | STOCKITEM(wxID_SORT_ASCENDING, _("&Ascending")) | |
185 | STOCKITEM(wxID_SORT_DESCENDING, _("&Descending")) | |
186 | STOCKITEM(wxID_SPELL_CHECK, _("&Spell Check")) | |
5f7bcb48 | 187 | STOCKITEM(wxID_STOP, _("&Stop")) |
6b1eedc1 VZ |
188 | STOCKITEM(wxID_STRIKETHROUGH, _("&Strikethrough")) |
189 | STOCKITEM(wxID_TOP, _("&Top")) | |
5f7bcb48 VS |
190 | STOCKITEM(wxID_UNDELETE, _("Undelete")) |
191 | STOCKITEM(wxID_UNDERLINE, _("&Underline")) | |
192 | STOCKITEM(wxID_UNDO, _("&Undo")) | |
193 | STOCKITEM(wxID_UNINDENT, _("&Unindent")) | |
6b1eedc1 | 194 | STOCKITEM(wxID_UP, _("&Up")) |
5f7bcb48 VS |
195 | STOCKITEM(wxID_YES, _("&Yes")) |
196 | STOCKITEM(wxID_ZOOM_100, _("&Actual Size")) | |
197 | STOCKITEM(wxID_ZOOM_FIT, _("Zoom to &Fit")) | |
198 | STOCKITEM(wxID_ZOOM_IN, _("Zoom &In")) | |
199 | STOCKITEM(wxID_ZOOM_OUT, _("Zoom &Out")) | |
200 | ||
401e3b6e | 201 | default: |
9a83f860 | 202 | wxFAIL_MSG( wxT("invalid stock item ID") ); |
401e3b6e VS |
203 | break; |
204 | }; | |
205 | ||
206 | #undef STOCKITEM | |
d775fa82 | 207 | |
95ad763a | 208 | if ( flags & wxSTOCK_WITHOUT_ELLIPSIS ) |
e94ee791 VZ |
209 | { |
210 | wxString baseLabel; | |
211 | if ( stockLabel.EndsWith("...", &baseLabel) ) | |
212 | stockLabel = baseLabel; | |
213 | ||
95ad763a VZ |
214 | // accelerators only make sense for the menu items which should have |
215 | // ellipsis too while wxSTOCK_WITHOUT_ELLIPSIS is mostly useful for | |
216 | // buttons which shouldn't have accelerators in their labels | |
e94ee791 | 217 | wxASSERT_MSG( !(flags & wxSTOCK_WITH_ACCELERATOR), |
95ad763a | 218 | "labels without ellipsis shouldn't use accelerators" ); |
e94ee791 VZ |
219 | } |
220 | ||
9b26a198 VZ |
221 | #ifdef __WXMSW__ |
222 | // special case: the "Cancel" button shouldn't have a mnemonic under MSW | |
223 | // for consistency with the native dialogs (which don't use any mnemonic | |
224 | // for it because it is already bound to Esc implicitly) | |
225 | if ( id == wxID_CANCEL ) | |
226 | flags &= ~wxSTOCK_WITH_MNEMONIC; | |
227 | #endif // __WXMSW__ | |
228 | ||
4322f94f | 229 | if ( !(flags & wxSTOCK_WITH_MNEMONIC) ) |
634629fa | 230 | { |
9b3c3047 | 231 | stockLabel = wxStripMenuCodes(stockLabel); |
634629fa | 232 | } |
ee0a94cf | 233 | |
b137e493 | 234 | #if wxUSE_ACCEL |
9b3c3047 | 235 | if ( !stockLabel.empty() && (flags & wxSTOCK_WITH_ACCELERATOR) ) |
634629fa | 236 | { |
ee0a94cf RR |
237 | wxAcceleratorEntry accel = wxGetStockAccelerator(id); |
238 | if (accel.IsOk()) | |
9a83f860 | 239 | stockLabel << wxT('\t') << accel.ToString(); |
634629fa | 240 | } |
b137e493 WS |
241 | #endif // wxUSE_ACCEL |
242 | ||
634629fa | 243 | return stockLabel; |
401e3b6e VS |
244 | } |
245 | ||
345319d6 VZ |
246 | wxString wxGetStockHelpString(wxWindowID id, wxStockHelpStringClient client) |
247 | { | |
248 | wxString stockHelp; | |
249 | ||
250 | #define STOCKITEM(stockid, ctx, helpstr) \ | |
251 | case stockid: \ | |
252 | if (client==ctx) stockHelp = helpstr; \ | |
253 | break; | |
254 | ||
255 | switch (id) | |
256 | { | |
257 | // NB: these help string should be not too specific as they could be used | |
258 | // in completely different programs! | |
259 | STOCKITEM(wxID_ABOUT, wxSTOCK_MENU, _("Show about dialog")) | |
260 | STOCKITEM(wxID_COPY, wxSTOCK_MENU, _("Copy selection")) | |
261 | STOCKITEM(wxID_CUT, wxSTOCK_MENU, _("Cut selection")) | |
262 | STOCKITEM(wxID_DELETE, wxSTOCK_MENU, _("Delete selection")) | |
263 | STOCKITEM(wxID_REPLACE, wxSTOCK_MENU, _("Replace selection")) | |
264 | STOCKITEM(wxID_PASTE, wxSTOCK_MENU, _("Paste selection")) | |
265 | STOCKITEM(wxID_EXIT, wxSTOCK_MENU, _("Quit this program")) | |
266 | STOCKITEM(wxID_REDO, wxSTOCK_MENU, _("Redo last action")) | |
267 | STOCKITEM(wxID_UNDO, wxSTOCK_MENU, _("Undo last action")) | |
268 | STOCKITEM(wxID_CLOSE, wxSTOCK_MENU, _("Close current document")) | |
269 | STOCKITEM(wxID_SAVE, wxSTOCK_MENU, _("Save current document")) | |
270 | STOCKITEM(wxID_SAVEAS, wxSTOCK_MENU, _("Save current document with a different filename")) | |
271 | ||
272 | default: | |
273 | // there's no stock help string for this ID / client | |
274 | return wxEmptyString; | |
275 | } | |
276 | ||
277 | #undef STOCKITEM | |
278 | ||
279 | return stockHelp; | |
280 | } | |
281 | ||
b137e493 WS |
282 | #if wxUSE_ACCEL |
283 | ||
ee0a94cf RR |
284 | wxAcceleratorEntry wxGetStockAccelerator(wxWindowID id) |
285 | { | |
286 | wxAcceleratorEntry ret; | |
287 | ||
288 | #define STOCKITEM(stockid, flags, keycode) \ | |
289 | case stockid: \ | |
290 | ret.Set(flags, keycode, stockid); \ | |
291 | break; | |
292 | ||
293 | switch (id) | |
294 | { | |
ad7aff71 SC |
295 | STOCKITEM(wxID_COPY, wxACCEL_CMD,'C') |
296 | STOCKITEM(wxID_CUT, wxACCEL_CMD,'X') | |
297 | STOCKITEM(wxID_FIND, wxACCEL_CMD,'F') | |
298 | STOCKITEM(wxID_HELP, wxACCEL_CMD,'H') | |
299 | STOCKITEM(wxID_NEW, wxACCEL_CMD,'N') | |
300 | STOCKITEM(wxID_OPEN, wxACCEL_CMD,'O') | |
301 | STOCKITEM(wxID_PASTE, wxACCEL_CMD,'V') | |
302 | STOCKITEM(wxID_REDO, wxACCEL_CMD | wxACCEL_SHIFT,'Z') | |
303 | STOCKITEM(wxID_REPLACE, wxACCEL_CMD,'R') | |
304 | STOCKITEM(wxID_SAVE, wxACCEL_CMD,'S') | |
305 | STOCKITEM(wxID_UNDO, wxACCEL_CMD,'Z') | |
ee0a94cf RR |
306 | |
307 | default: | |
308 | // set the wxAcceleratorEntry to return into an invalid state: | |
309 | // there's no stock accelerator for that. | |
310 | ret.Set(0, 0, id); | |
311 | break; | |
312 | }; | |
313 | ||
314 | #undef STOCKITEM | |
315 | ||
316 | // always use wxAcceleratorEntry::IsOk on returned value ! | |
317 | return ret; | |
318 | } | |
319 | ||
b137e493 WS |
320 | #endif // wxUSE_ACCEL |
321 | ||
5f7bcb48 VS |
322 | bool wxIsStockLabel(wxWindowID id, const wxString& label) |
323 | { | |
324 | if (label.empty()) | |
325 | return true; | |
326 | ||
327 | wxString stock = wxGetStockLabel(id); | |
328 | ||
329 | if (label == stock) | |
330 | return true; | |
d775fa82 | 331 | |
9a83f860 | 332 | stock.Replace(wxT("&"), wxEmptyString); |
5f7bcb48 VS |
333 | if (label == stock) |
334 | return true; | |
d775fa82 | 335 | |
5f7bcb48 VS |
336 | return false; |
337 | } |