X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b137e49318613a59bea5fca42734ec1b0aaf6f7a..edc09871744140f16b2ef6b7abaa2289d7deb260:/include/wx/stockitem.h diff --git a/include/wx/stockitem.h b/include/wx/stockitem.h index 65e01d9f72..7ca7bb8e5c 100644 --- a/include/wx/stockitem.h +++ b/include/wx/stockitem.h @@ -13,7 +13,7 @@ #define _WX_STOCKITEM_H_ #include "wx/defs.h" -#include "wx/wxchar.h" +#include "wx/chartype.h" #include "wx/string.h" #include "wx/accel.h" @@ -51,15 +51,23 @@ WXDLLEXPORT wxString wxGetStockLabel(wxWindowID id, #endif -#ifdef __WXGTK20__ +// wxStockHelpStringClient conceptually works like wxArtClient: it gives a hint to +// wxGetStockHelpString() about the context where the help string is to be used +enum wxStockHelpStringClient +{ + wxSTOCK_MENU // help string to use for menu items +}; -#include +// Returns an help string for the given stock UI element and for the given "context". +WXDLLEXPORT wxString wxGetStockHelpString(wxWindowID id, + wxStockHelpStringClient client = wxSTOCK_MENU); + + +#ifdef __WXGTK20__ // Translates stock ID to GTK+'s stock item string indentifier: WXDLLEXPORT const char *wxGetStockGtkID(wxWindowID id); -// Returns stock accelerator modifier and key code for the given ID -WXDLLEXPORT bool wxGetStockGtkAccelerator(const char *id, GdkModifierType *mod, guint *key); #endif #endif // _WX_STOCKITEM_H_