/////////////////////////////////////////////////////////////////////////////
-// Name: choice.h
+// Name: wx/gtk/choice.h
// Purpose:
// Author: Robert Roebling
// Id: $Id$
#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;
+ int GetCurrentSelection() const { return GetSelection(); }
void SetSelection( int n );
virtual int GetCount() const;
- int FindString( const wxString& string ) const;
+ virtual int FindString(const wxString& s, bool bCase = false) const;
wxString GetString( int n ) const;
void SetString( int n, const wxString& string );
// allocate it if it's needed (hence using pointer)
wxSortedArrayString *m_strings;
- // this circumvents a GTK+ 2.0 bug so that the selection is
- // invalidated properly
+public:
+ // this circumvents a GTK+ 2.0 bug so that the selection is
+ // invalidated properly
int m_selection_hack;
-
+
+private:
DECLARE_DYNAMIC_CLASS(wxChoice)
};