#ifndef __GTKCHOICEH__
#define __GTKCHOICEH__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "choice.h"
-#endif
-
class WXDLLIMPEXP_BASE wxSortedArrayString;
class WXDLLIMPEXP_BASE wxArrayString;
// wxChoice
//-----------------------------------------------------------------------------
-class wxChoice : public wxChoiceBase
+class WXDLLIMPEXP_CORE wxChoice : public wxChoiceBase
{
public:
wxChoice();
void Clear();
int GetSelection() const;
+#if wxABI_VERSION >= 20602
+ int GetCurrentSelection() const { return GetSelection(); }
+#endif
void SetSelection( int n );
virtual int GetCount() const;
// allocate it if it's needed (hence using pointer)
wxSortedArrayString *m_strings;
+public:
// this circumvents a GTK+ 2.0 bug so that the selection is
// invalidated properly
int m_selection_hack;
-
+
+private:
DECLARE_DYNAMIC_CLASS(wxChoice)
};