#endif
#include "wx/defs.h"
+
#include "wx/object.h"
#include "wx/list.h"
#include "wx/control.h"
// global data
//-----------------------------------------------------------------------------
-extern const char *wxChoiceNameStr;
+extern const wxChar *wxChoiceNameStr;
//-----------------------------------------------------------------------------
// wxChoice
class wxChoice : public wxControl
{
- DECLARE_DYNAMIC_CLASS(wxChoice)
-
public:
wxChoice();
wxChoice( wxWindow *parent, wxWindowID id,
wxList m_clientDataList;
wxList m_clientObjectList;
+ void DisableEvents();
+ void EnableEvents();
void AppendCommon( const wxString &item );
void ApplyWidgetStyle();
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxChoice)
};
+
#endif // __GTKCHOICEH__