/////////////////////////////////////////////////////////////////////////////
-// 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 );
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+ virtual bool IsOwnGtkWindow( GdkWindow *window );
+
protected:
wxList m_clientList; // contains the client data for the items
virtual wxSize DoGetBestSize() const;
- virtual bool IsOwnGtkWindow( GdkWindow *window );
-
private:
// common part of Create() and DoAppend()
int GtkAddHelper(GtkWidget *menu, int pos, const wxString& item);
// 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)
};