new stock buttons API
[wxWidgets.git] / include / wx / stockitem.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/stockitem.h
3 // Purpose: stock items helpers (privateh header)
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 #ifndef _WX_STOCKITEM_H_
13 #define _WX_STOCKITEM_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "stockitem.h"
17 #endif
18
19 #include "wx/defs.h"
20 #include "wx/string.h"
21
22 // ----------------------------------------------------------------------------
23 // Helper functions for stock items handling:
24 // ----------------------------------------------------------------------------
25
26 // Returns true if the ID is in the list of recognized stock actions
27 bool wxIsStockID(wxWindowID id);
28
29 // Returns true of the label is empty or label of a stock button with
30 // given ID
31 bool wxIsStockLabel(wxWindowID id, const wxString& label);
32
33 // Returns label that should be used for given stock UI element (e.g. "&OK"
34 // for wxSTOCK_OK):
35 wxString wxGetStockLabel(wxWindowID id);
36
37 #ifdef __WXGTK20__
38 // Translates stock ID to GTK+'s stock item string indentifier:
39 const char *wxGetStockGtkID(wxWindowID id);
40 #endif
41
42 #endif // _WX_STOCKITEM_H_