X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f154ff601846554edeabb11d9585ec636f5f6a9c..54313f9ce0ba59137453cc6621cd46628a540374:/include/wx/cocoa/choice.h diff --git a/include/wx/cocoa/choice.h b/include/wx/cocoa/choice.h index 3f6370a673..7db48f39f0 100644 --- a/include/wx/cocoa/choice.h +++ b/include/wx/cocoa/choice.h @@ -15,6 +15,8 @@ //#include "wx/cocoa/NSPopUpButton.h" #include "wx/cocoa/NSMenu.h" +class WXDLLIMPEXP_BASE wxSortedArrayString; + // ======================================================================== // wxChoice // ======================================================================== @@ -39,6 +41,17 @@ public: Init(); Create(parent, winid, pos, size, n, choices, style, validator, name); } + wxChoice(wxWindow *parent, wxWindowID winid, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + long style = 0, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxChoiceNameStr) + { + Init(); + Create(parent, winid, pos, size, choices, style, validator, name); + } bool Create(wxWindow *parent, wxWindowID winid, const wxPoint& pos = wxDefaultPosition, @@ -47,6 +60,13 @@ public: long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxChoiceNameStr); + bool Create(wxWindow *parent, wxWindowID winid, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + long style = 0, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxChoiceNameStr); virtual ~wxChoice(); protected: void Init();