Take advantage of the new ctors accepting a wxArrayString
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -17,7 +17,6 @@
|
||||
|
||||
MAKE_CONST_WXSTRING(ChoiceNameStr);
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
%newgroup;
|
||||
|
||||
@@ -30,7 +29,8 @@ public:
|
||||
wxChoice(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array=NULL,
|
||||
//int choices=0, wxString* choices_array=NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyChoiceNameStr);
|
||||
@@ -39,7 +39,8 @@ public:
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array=NULL,
|
||||
//int choices=0, wxString* choices_array=NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyChoiceNameStr);
|
||||
|
@@ -155,7 +155,7 @@ public:
|
||||
wxMultiChoiceDialog(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
int LCOUNT, wxString *choices,
|
||||
int choices=0, wxString* choices_array,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
|
@@ -35,7 +35,8 @@ public:
|
||||
const wxString& value = wxPyEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array=NULL,
|
||||
//int choices=0, wxString* choices_array=NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyComboBoxNameStr);
|
||||
@@ -45,7 +46,8 @@ public:
|
||||
const wxString& value = wxPyEmptyString,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array=NULL,
|
||||
//int choices=0, wxString* choices_array=NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyComboBoxNameStr);
|
||||
|
@@ -35,7 +35,8 @@ public:
|
||||
wxListBox(wxWindow* parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array = NULL,
|
||||
//int choices=0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyListBoxNameStr);
|
||||
@@ -44,7 +45,8 @@ public:
|
||||
bool Create(wxWindow* parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices=0, wxString* choices_array = NULL,
|
||||
//int choices=0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyListBoxNameStr);
|
||||
@@ -120,7 +122,8 @@ public:
|
||||
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices = 0, wxString* choices_array = NULL,
|
||||
//int choices = 0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyListBoxNameStr);
|
||||
@@ -129,7 +132,8 @@ public:
|
||||
bool Create(wxWindow *parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices = 0, wxString* choices_array = NULL,
|
||||
//int choices = 0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
long style = 0,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = wxPyListBoxNameStr);
|
||||
|
@@ -33,7 +33,8 @@ public:
|
||||
const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices = 0, wxString* choices_array = NULL,
|
||||
//int choices = 0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
int majorDimension = 0,
|
||||
long style = wxRA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
@@ -44,7 +45,8 @@ public:
|
||||
const wxString& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
int choices = 0, wxString* choices_array = NULL,
|
||||
//int choices = 0, wxString* choices_array = NULL,
|
||||
const wxArrayString& choices = wxPyEmptyStringArray,
|
||||
int majorDimension = 0,
|
||||
long style = wxRA_HORIZONTAL,
|
||||
const wxValidator& validator = wxDefaultValidator,
|
||||
|
@@ -30,6 +30,10 @@ MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
|
||||
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
|
||||
MAKE_CONST_WXSTRING_NOSWIG(ControlNameStr);
|
||||
|
||||
%{
|
||||
const wxArrayString wxPyEmptyStringArray;
|
||||
%}
|
||||
|
||||
|
||||
// Include all the files that make up this module
|
||||
|
||||
|
Reference in New Issue
Block a user