]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/stockitem.h
warn the user that for all basic classes wxPoint,wxRect,wxSize,wxRealPoint negative...
[wxWidgets.git] / interface / wx / stockitem.h
CommitLineData
23324ae1 1/////////////////////////////////////////////////////////////////////////////
7c913512 2// Name: stockitem.h
e54c96f1 3// Purpose: interface of global functions
7c913512
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
b21126db 9/** @addtogroup group_funcmacro_misc */
7fa7088e
BP
10//@{
11
7c913512 12/**
7fa7088e
BP
13 Returns label that should be used for given @a id element.
14
15 @param id
16 Given id of the wxMenuItem, wxButton, wxToolBar tool, etc.
17 @param withCodes
18 If @false then strip accelerator code from the label; useful for
19 getting labels without accelerator char code like for toolbar tooltip
20 or on platforms without traditional keyboard like smartphones.
21 @param accelerator
22 Optional accelerator string automatically added to label; useful for
23 building labels for wxMenuItem.
7c913512 24
7fa7088e 25 @header{wx/stockitem.h}
23324ae1 26*/
4cc4bfaf 27wxString wxGetStockLabel(wxWindowID id, bool withCodes = true,
23324ae1
FM
28 const wxString& accelerator = wxEmptyString);
29
7fa7088e 30//@}
23324ae1 31