X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/09c4bfc330047c420e86159ee84fc5aa3ab2b166..4ecdf8fc4032944efe83947bc687051eafcae74d:/wxPython/src/_functions.i diff --git a/wxPython/src/_functions.i b/wxPython/src/_functions.i index 70ec6dd4b1..7b5d74e133 100644 --- a/wxPython/src/_functions.i +++ b/wxPython/src/_functions.i @@ -38,12 +38,31 @@ bool wxIsStockID(wxWindowID id); // given ID bool wxIsStockLabel(wxWindowID id, const wxString& label); +enum wxStockLabelQueryFlag +{ + wxSTOCK_NOFLAGS = 0, + + wxSTOCK_WITH_MNEMONIC = 1, + wxSTOCK_WITH_ACCELERATOR = 2 +}; + // Returns label that should be used for given stock UI element (e.g. "&OK" // for wxID_OK): wxString wxGetStockLabel(wxWindowID id, - bool withCodes = true, - wxString accelerator = wxPyEmptyString); - + long flags = wxSTOCK_WITH_MNEMONIC); + + +enum wxStockHelpStringClient +{ + wxSTOCK_MENU // help string to use for menu items +}; + +// Returns an help string for the given stock UI element and for the given "context". +wxString wxGetStockHelpString(wxWindowID id, + wxStockHelpStringClient client = wxSTOCK_MENU); + + + MustHaveApp(wxBell); void wxBell();