]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/choice.h
wxSystemSettings mods in wxGTK
[wxWidgets.git] / include / wx / gtk1 / choice.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: choice.h
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
29006414 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKCHOICEH__
11#define __GTKCHOICEH__
12
13#ifdef __GNUG__
9abe166a 14 #pragma interface "choice.h"
c801d85f
KB
15#endif
16
c801d85f
KB
17//-----------------------------------------------------------------------------
18// wxChoice
19//-----------------------------------------------------------------------------
20
9abe166a 21class wxChoice : public wxChoiceBase
c801d85f 22{
fd0eed64 23public:
29006414
VZ
24 wxChoice();
25 wxChoice( wxWindow *parent, wxWindowID id,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
28 int n = 0, const wxString choices[] = (const wxString *) NULL,
29 long style = 0,
30 const wxValidator& validator = wxDefaultValidator,
31 const wxString& name = wxChoiceNameStr )
32 {
e01c8145
VZ
33 m_strings = (wxSortedArrayString *)NULL;
34
29006414
VZ
35 Create(parent, id, pos, size, n, choices, style, validator, name);
36 }
37 ~wxChoice();
38 bool Create( wxWindow *parent, wxWindowID id,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 int n = 0, const wxString choices[] = (wxString *) NULL,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxChoiceNameStr );
c801d85f 45
9abe166a 46 // implement base class pure virtuals
29006414 47 void Delete(int n);
9abe166a
VZ
48 void Clear();
49
50 int GetSelection() const;
51 void SetSelection( int n );
29006414 52
9abe166a 53 virtual int GetCount() const;
6c8a980f 54 int FindString( const wxString& string ) const;
29006414 55 wxString GetString( int n ) const;
6c8a980f 56 void SetString( int n, const wxString& string );
29006414 57
20e05ffb 58protected:
e01c8145 59 wxList m_clientList; // contains the client data for the items
29006414 60
29006414 61 void ApplyWidgetStyle();
9abe166a
VZ
62 virtual int DoAppend(const wxString& item);
63
6c8a980f
VZ
64 virtual void DoSetItemClientData( int n, void* clientData );
65 virtual void* DoGetItemClientData( int n ) const;
66 virtual void DoSetItemClientObject( int n, wxClientData* clientData );
67 virtual wxClientData* DoGetItemClientObject( int n ) const;
d6538e2c 68
f68586e5
VZ
69 virtual wxSize DoGetBestSize() const;
70
738f9e5a 71private:
e01c8145 72 // common part of Create() and DoAppend()
20e05ffb 73 size_t GtkAppendHelper(GtkWidget *menu, const wxString& item);
e01c8145
VZ
74
75 // this array is only used for controls with wxCB_SORT style, so only
76 // allocate it if it's needed (hence using pointer)
77 wxSortedArrayString *m_strings;
78
738f9e5a 79 DECLARE_DYNAMIC_CLASS(wxChoice)
c801d85f
KB
80};
81
ce4169a4 82
c801d85f 83#endif // __GTKCHOICEH__