]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/choice.cpp
wxWebKit now properly updates after a resize event.
[wxWidgets.git] / src / univ / choice.cpp
index 7af8af88e41d7f16cbedf8fedcaa2341aa8eb0e4..426b2b41803d01b0371d02e5fdc9cbb4d78b9d45 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "univchoice.h"
 #endif
 
@@ -31,6 +31,7 @@
 
 #ifndef WX_PRECOMP
     #include "wx/choice.h"
+    #include "wx/arrstr.h"
 #endif
 
 IMPLEMENT_DYNAMIC_CLASS(wxChoice, wxControl)
@@ -39,13 +40,38 @@ BEGIN_EVENT_TABLE(wxChoice, wxComboBox)
     EVT_COMBOBOX(-1, wxChoice::OnComboBox)
 END_EVENT_TABLE()
 
+wxChoice::wxChoice(wxWindow *parent, wxWindowID id,
+                   const wxPoint& pos,
+                   const wxSize& size,
+                   const wxArrayString& choices,
+                   long style,
+                   const wxValidator& validator,
+                   const wxString& name)
+{
+    Create(parent, id, pos, size, choices, style, validator, name);
+}
+
 bool wxChoice::Create(wxWindow *parent, wxWindowID id,
                       const wxPoint& pos,
                       const wxSize& size,
-                      int n, const wxString choices[],
+                      const wxArrayString& choices,
                       long style,
                       const wxValidator& validator,
                       const wxString& name)
+{
+    wxCArrayString chs(choices);
+
+    return Create(parent, id, pos, size, chs.GetCount(), chs.GetStrings(),
+                  style, validator, name);
+}
+
+bool wxChoice::Create(wxWindow *parent, wxWindowID id,
+                      const wxPoint& pos,
+                      const wxSize& size,
+                      int n, const wxString choices[],
+                      long WXUNUSED(style),
+                      const wxValidator& validator,
+                      const wxString& name)
 {
     wxString value;
     if ( n )