#ifndef _WX_CHOICE_H_
#define _WX_CHOICE_H_
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "choice.h"
#endif
-WXDLLEXPORT_DATA(extern const char*) wxChoiceNameStr;
-
#include "wx/clntdata.h"
-#include "wx/dynarray.h"
-WX_DEFINE_ARRAY(WXWidget, wxWidgetArray);
+#ifndef wxWIDGET_ARRAY_DEFINED
+ #define wxWIDGET_ARRAY_DEFINED
+
+ #include "wx/dynarray.h"
+ WX_DEFINE_ARRAY(WXWidget, wxWidgetArray);
+#endif
// Choice item
class WXDLLEXPORT wxChoice: public wxChoiceBase
Create(parent, id, pos, size, n, choices, style, validator, name);
}
+ wxChoice(wxWindow *parent, wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxChoiceNameStr)
+ {
+ Init();
+ Create(parent, id, pos, size, choices, style, validator, name);
+ }
+
bool Create(wxWindow *parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxChoiceNameStr);
+ bool Create(wxWindow *parent, wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxChoiceNameStr);
+
// implementation of wxControlWithItems
virtual int GetCount() const;
virtual int DoAppend(const wxString& item);