1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKCHOICEH__
11 #define __GTKCHOICEH__
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "choice.h"
17 class WXDLLIMPEXP_BASE wxSortedArrayString
;
18 class WXDLLIMPEXP_BASE wxArrayString
;
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 class wxChoice
: public wxChoiceBase
28 wxChoice( wxWindow
*parent
, wxWindowID id
,
29 const wxPoint
& pos
= wxDefaultPosition
,
30 const wxSize
& size
= wxDefaultSize
,
31 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxChoiceNameStr
)
36 m_strings
= (wxSortedArrayString
*)NULL
;
38 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
40 wxChoice( wxWindow
*parent
, wxWindowID id
,
43 const wxArrayString
& choices
,
45 const wxValidator
& validator
= wxDefaultValidator
,
46 const wxString
& name
= wxChoiceNameStr
)
48 m_strings
= (wxSortedArrayString
*)NULL
;
50 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
53 bool Create( wxWindow
*parent
, wxWindowID id
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
56 int n
= 0, const wxString choices
[] = (wxString
*) NULL
,
58 const wxValidator
& validator
= wxDefaultValidator
,
59 const wxString
& name
= wxChoiceNameStr
);
60 bool Create( wxWindow
*parent
, wxWindowID id
,
63 const wxArrayString
& choices
,
65 const wxValidator
& validator
= wxDefaultValidator
,
66 const wxString
& name
= wxChoiceNameStr
);
68 // implement base class pure virtuals
72 int GetSelection() const;
73 void SetSelection( int n
);
75 virtual int GetCount() const;
76 int FindString( const wxString
& string
) const;
77 wxString
GetString( int n
) const;
78 void SetString( int n
, const wxString
& string
);
81 wxList m_clientList
; // contains the client data for the items
83 void ApplyWidgetStyle();
84 virtual int DoAppend(const wxString
& item
);
85 virtual int DoInsert(const wxString
& item
, int pos
);
87 virtual void DoSetItemClientData( int n
, void* clientData
);
88 virtual void* DoGetItemClientData( int n
) const;
89 virtual void DoSetItemClientObject( int n
, wxClientData
* clientData
);
90 virtual wxClientData
* DoGetItemClientObject( int n
) const;
92 virtual wxSize
DoGetBestSize() const;
94 virtual bool IsOwnGtkWindow( GdkWindow
*window
);
96 // common part of Create() and DoAppend()
97 int GtkAddHelper(GtkWidget
*menu
, int pos
, const wxString
& item
);
99 // this array is only used for controls with wxCB_SORT style, so only
100 // allocate it if it's needed (hence using pointer)
101 wxSortedArrayString
*m_strings
;
103 DECLARE_DYNAMIC_CLASS(wxChoice
)
107 #endif // __GTKCHOICEH__