#pragma interface "choicebase.h"
#endif
+#include "wx/defs.h"
+
#if wxUSE_CHOICE
#include "wx/ctrlsub.h" // the base class
// all generic methods are in wxControlWithItems
- // single selection logic
- virtual void SetSelection(int n) = 0;
- virtual bool SetStringSelection(const wxString& s);
-
- // don't override this
- virtual void Select(int n) { SetSelection(n); }
-
// set/get the number of columns in the control (as they're not supported on
// most platforms, they do nothing by default)
virtual void SetColumns(int WXUNUSED(n) = 1 ) { }