]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/choice.h
added wx/msw/wince/libraries.h to workaround SDK differences problems
[wxWidgets.git] / include / wx / cocoa / choice.h
index 3f6370a6732bb64b20db72caccc2f6aaaa00ec33..7db48f39f02b75486efd7cb522d789dd501c3f39 100644 (file)
@@ -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();