1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/stockitem.cpp
3 // Purpose: Stock buttons, menu and toolbar items labels
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik, 2004
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/stockitem.h"
31 #include "wx/utils.h" // for wxStripMenuCodes()
34 bool wxIsStockID(wxWindowID id
)
69 case wxID_JUSTIFY_CENTER
:
70 case wxID_JUSTIFY_FILL
:
71 case wxID_JUSTIFY_LEFT
:
72 case wxID_JUSTIFY_RIGHT
:
80 case wxID_PREFERENCES
:
88 case wxID_REVERT_TO_SAVED
:
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
:
98 case wxID_STRIKETHROUGH
:
117 wxString
wxGetStockLabel(wxWindowID id
, long flags
)
121 #define STOCKITEM(stockid, label) \
123 stockLabel = label; \
128 STOCKITEM(wxID_ABOUT
, _("&About..."))
129 STOCKITEM(wxID_ADD
, _("Add"))
130 STOCKITEM(wxID_APPLY
, _("&Apply"))
131 STOCKITEM(wxID_BACKWARD
, _("&Back"))
132 STOCKITEM(wxID_BOLD
, _("&Bold"))
133 STOCKITEM(wxID_BOTTOM
, _("&Bottom"))
134 STOCKITEM(wxID_CANCEL
, _("&Cancel"))
135 STOCKITEM(wxID_CDROM
, _("&CD-Rom"))
136 STOCKITEM(wxID_CLEAR
, _("&Clear"))
137 STOCKITEM(wxID_CLOSE
, _("&Close"))
138 STOCKITEM(wxID_CONVERT
, _("&Convert"))
139 STOCKITEM(wxID_COPY
, _("&Copy"))
140 STOCKITEM(wxID_CUT
, _("Cu&t"))
141 STOCKITEM(wxID_DELETE
, _("&Delete"))
142 STOCKITEM(wxID_DOWN
, _("&Down"))
143 STOCKITEM(wxID_EDIT
, _("&Edit"))
144 STOCKITEM(wxID_EXECUTE
, _("&Execute"))
145 STOCKITEM(wxID_EXIT
, _("&Quit"))
146 STOCKITEM(wxID_FILE
, _("&File"))
147 STOCKITEM(wxID_FIND
, _("&Find"))
148 STOCKITEM(wxID_FIRST
, _("&First"))
149 STOCKITEM(wxID_FLOPPY
, _("&Floppy"))
150 STOCKITEM(wxID_FORWARD
, _("&Forward"))
151 STOCKITEM(wxID_HARDDISK
, _("&Harddisk"))
152 STOCKITEM(wxID_HELP
, _("&Help"))
153 STOCKITEM(wxID_HOME
, _("&Home"))
154 STOCKITEM(wxID_INDENT
, _("Indent"))
155 STOCKITEM(wxID_INDEX
, _("&Index"))
156 STOCKITEM(wxID_INFO
, _("&Info"))
157 STOCKITEM(wxID_ITALIC
, _("&Italic"))
158 STOCKITEM(wxID_JUMP_TO
, _("&Jump to"))
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"))
163 STOCKITEM(wxID_LAST
, _("&Last"))
164 STOCKITEM(wxID_NETWORK
, _("&Network"))
165 STOCKITEM(wxID_NEW
, _("&New"))
166 STOCKITEM(wxID_NO
, _("&No"))
167 STOCKITEM(wxID_OK
, _("&OK"))
168 STOCKITEM(wxID_OPEN
, _("&Open..."))
169 STOCKITEM(wxID_PASTE
, _("&Paste"))
170 STOCKITEM(wxID_PREFERENCES
, _("&Preferences"))
171 STOCKITEM(wxID_PREVIEW
, _("Print previe&w"))
172 STOCKITEM(wxID_PRINT
, _("&Print..."))
173 STOCKITEM(wxID_PROPERTIES
, _("&Properties"))
174 STOCKITEM(wxID_REDO
, _("&Redo"))
175 STOCKITEM(wxID_REFRESH
, _("Refresh"))
176 STOCKITEM(wxID_REMOVE
, _("Remove"))
177 STOCKITEM(wxID_REPLACE
, _("Rep&lace"))
178 STOCKITEM(wxID_REVERT_TO_SAVED
, _("Revert to Saved"))
179 STOCKITEM(wxID_SAVE
, _("&Save"))
180 STOCKITEM(wxID_SAVEAS
, _("Save &As..."))
181 STOCKITEM(wxID_SELECTALL
, _("Select &All"))
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"))
187 STOCKITEM(wxID_STOP
, _("&Stop"))
188 STOCKITEM(wxID_STRIKETHROUGH
, _("&Strikethrough"))
189 STOCKITEM(wxID_TOP
, _("&Top"))
190 STOCKITEM(wxID_UNDELETE
, _("Undelete"))
191 STOCKITEM(wxID_UNDERLINE
, _("&Underline"))
192 STOCKITEM(wxID_UNDO
, _("&Undo"))
193 STOCKITEM(wxID_UNINDENT
, _("&Unindent"))
194 STOCKITEM(wxID_UP
, _("&Up"))
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"))
202 wxFAIL_MSG( _T("invalid stock item ID") );
208 if ( !(flags
& wxSTOCK_WITH_MNEMONIC
) )
210 stockLabel
= wxStripMenuCodes(stockLabel
);
214 if ( !stockLabel
.empty() && (flags
& wxSTOCK_WITH_ACCELERATOR
) )
216 wxAcceleratorEntry accel
= wxGetStockAccelerator(id
);
218 stockLabel
<< _T('\t') << accel
.ToString();
220 #endif // wxUSE_ACCEL
225 wxString
wxGetStockHelpString(wxWindowID id
, wxStockHelpStringClient client
)
229 #define STOCKITEM(stockid, ctx, helpstr) \
231 if (client==ctx) stockHelp = helpstr; \
236 // NB: these help string should be not too specific as they could be used
237 // in completely different programs!
238 STOCKITEM(wxID_ABOUT
, wxSTOCK_MENU
, _("Show about dialog"))
239 STOCKITEM(wxID_COPY
, wxSTOCK_MENU
, _("Copy selection"))
240 STOCKITEM(wxID_CUT
, wxSTOCK_MENU
, _("Cut selection"))
241 STOCKITEM(wxID_DELETE
, wxSTOCK_MENU
, _("Delete selection"))
242 STOCKITEM(wxID_REPLACE
, wxSTOCK_MENU
, _("Replace selection"))
243 STOCKITEM(wxID_PASTE
, wxSTOCK_MENU
, _("Paste selection"))
244 STOCKITEM(wxID_EXIT
, wxSTOCK_MENU
, _("Quit this program"))
245 STOCKITEM(wxID_REDO
, wxSTOCK_MENU
, _("Redo last action"))
246 STOCKITEM(wxID_UNDO
, wxSTOCK_MENU
, _("Undo last action"))
247 STOCKITEM(wxID_CLOSE
, wxSTOCK_MENU
, _("Close current document"))
248 STOCKITEM(wxID_SAVE
, wxSTOCK_MENU
, _("Save current document"))
249 STOCKITEM(wxID_SAVEAS
, wxSTOCK_MENU
, _("Save current document with a different filename"))
252 // there's no stock help string for this ID / client
253 return wxEmptyString
;
263 wxAcceleratorEntry
wxGetStockAccelerator(wxWindowID id
)
265 wxAcceleratorEntry ret
;
267 #define STOCKITEM(stockid, flags, keycode) \
269 ret.Set(flags, keycode, stockid); \
274 STOCKITEM(wxID_COPY
, wxACCEL_CMD
,'C')
275 STOCKITEM(wxID_CUT
, wxACCEL_CMD
,'X')
276 STOCKITEM(wxID_FIND
, wxACCEL_CMD
,'F')
277 STOCKITEM(wxID_HELP
, wxACCEL_CMD
,'H')
278 STOCKITEM(wxID_NEW
, wxACCEL_CMD
,'N')
279 STOCKITEM(wxID_OPEN
, wxACCEL_CMD
,'O')
280 STOCKITEM(wxID_PASTE
, wxACCEL_CMD
,'V')
281 STOCKITEM(wxID_REDO
, wxACCEL_CMD
| wxACCEL_SHIFT
,'Z')
282 STOCKITEM(wxID_REPLACE
, wxACCEL_CMD
,'R')
283 STOCKITEM(wxID_SAVE
, wxACCEL_CMD
,'S')
284 STOCKITEM(wxID_UNDO
, wxACCEL_CMD
,'Z')
287 // set the wxAcceleratorEntry to return into an invalid state:
288 // there's no stock accelerator for that.
295 // always use wxAcceleratorEntry::IsOk on returned value !
299 #endif // wxUSE_ACCEL
301 bool wxIsStockLabel(wxWindowID id
, const wxString
& label
)
306 wxString stock
= wxGetStockLabel(id
);
311 stock
.Replace(_T("&"), wxEmptyString
);