// Created: 01/02/97
// RCS-ID: $Id$
// Copyright: (c)
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __CHOICEDLGH_G__
#include "wx/setup.h"
#include "wx/dialog.h"
+#include "wx/listbox.h"
#define wxCHOICE_HEIGHT 150
#define wxCHOICE_WIDTH 200
-#define wxCHOICEDLG_STYLE (wxOK | wxCANCEL | wxCENTRE)
+#define wxCHOICEDLG_STYLE (wxDEFAULT_DIALOG_STYLE|wxOK | wxCANCEL | wxCENTRE)
class WXDLLEXPORT wxSingleChoiceDialog: public wxDialog
{
void OnListBoxDClick(wxCommandEvent& event);
protected:
- long m_dialogStyle;
int m_selection;
+ int m_dialogStyle;
wxString m_stringSelection;
- void *m_clientData;
wxListBox *m_listbox;
private: