// wxAnyChoiceDialog
// ----------------------------------------------------------------------------
+wxAnyChoiceDialog::wxAnyChoiceDialog()
+{
+}
+
+wxAnyChoiceDialog::wxAnyChoiceDialog(wxWindow *parent,
+ const wxString& message,
+ const wxString& caption,
+ int n,
+ const wxString *choices,
+ long styleDlg,
+ const wxPoint& pos,
+ long styleLbox)
+{
+ (void)Create(parent, message, caption, n, choices, styleDlg, pos, styleLbox);
+}
+
bool wxAnyChoiceDialog::Create(wxWindow *parent,
const wxString& message,
const wxString& caption,
IMPLEMENT_DYNAMIC_CLASS(wxSingleChoiceDialog, wxDialog)
+wxSingleChoiceDialog::wxSingleChoiceDialog()
+{
+ m_selection = -1;
+}
+
wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent,
const wxString& message,
const wxString& caption,
IMPLEMENT_DYNAMIC_CLASS(wxMultiChoiceDialog, wxDialog)
+wxMultiChoiceDialog::wxMultiChoiceDialog()
+{
+}
+
+wxMultiChoiceDialog::wxMultiChoiceDialog(wxWindow *parent,
+ const wxString& message,
+ const wxString& caption,
+ int n,
+ const wxString *choices,
+ long style,
+ const wxPoint& pos)
+{
+ (void)Create(parent, message, caption, n, choices, style, pos);
+}
+
bool wxMultiChoiceDialog::Create( wxWindow *parent,
const wxString& message,
const wxString& caption,