]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/choice.h
remove docs originally copied from wxDC docs now that wxSVGFileDC is integrated in...
[wxWidgets.git] / interface / wx / choice.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: choice.h
e54c96f1 3// Purpose: interface of wxChoice
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxChoice
7c913512 11
23324ae1 12 A choice item is used to select one of a list of strings. Unlike a
bfac6166 13 wxListBox, only the selection is visible until the user pulls down the
23324ae1 14 menu of choices.
7c913512 15
23324ae1 16 @beginStyleTable
8c6791e4 17 @style{wxCB_SORT}
23324ae1
FM
18 Sorts the entries alphabetically.
19 @endStyleTable
7c913512 20
1f1d2182 21 @beginEventTable{wxCommandEvent}
8c6791e4 22 @event{EVT_CHOICE(id, func)}
23324ae1
FM
23 Process a wxEVT_COMMAND_CHOICE_SELECTED event, when an item on the
24 list is selected.
25 @endEventTable
7c913512 26
23324ae1
FM
27 @library{wxcore}
28 @category{ctrl}
7e59b885 29 @appearance{choice.png}
7c913512 30
e54c96f1 31 @see wxListBox, wxComboBox, wxCommandEvent
23324ae1
FM
32*/
33class wxChoice : public wxControlWithItems
34{
35public:
bfac6166
BP
36 /**
37 Default constructor.
38
39 @see Create(), wxValidator
40 */
41 wxChoice();
42
23324ae1
FM
43 //@{
44 /**
45 Constructor, creating and showing a choice.
3c4f71cc 46
7c913512 47 @param parent
4cc4bfaf 48 Parent window. Must not be @NULL.
7c913512 49 @param id
4cc4bfaf 50 Window identifier. The value wxID_ANY indicates a default value.
7c913512 51 @param pos
4cc4bfaf 52 Window position.
7c913512 53 @param size
bfac6166 54 Window size. If wxDefaultSize is specified then the choice is sized
4cc4bfaf 55 appropriately.
7c913512 56 @param n
4cc4bfaf 57 Number of strings with which to initialise the choice control.
7c913512 58 @param choices
4cc4bfaf 59 An array of strings with which to initialise the choice control.
7c913512 60 @param style
4cc4bfaf 61 Window style. See wxChoice.
7c913512 62 @param validator
4cc4bfaf 63 Window validator.
7c913512 64 @param name
4cc4bfaf 65 Window name.
3c4f71cc 66
4cc4bfaf 67 @see Create(), wxValidator
bfac6166
BP
68
69 @beginWxPythonOnly
70
71 The wxChoice constructor in wxPython reduces the @a n and @a choices
72 arguments to a single argument, which is a list of strings.
73
74 @endWxPythonOnly
23324ae1 75 */
4cc4bfaf 76 wxChoice(wxWindow* parent, wxWindowID id,
7c913512
FM
77 const wxPoint& pos,
78 const wxSize& size, int n,
79 const wxString choices[],
80 long style = 0,
81 const wxValidator& validator = wxDefaultValidator,
82 const wxString& name = "choice");
792255cc
VZ
83
84 /**
85 Constructor, creating and showing a choice.
86
87 @param parent
88 Parent window. Must not be @NULL.
89 @param id
90 Window identifier. The value wxID_ANY indicates a default value.
91 @param pos
92 Window position.
93 @param size
94 Window size. If wxDefaultSize is specified then the choice is sized
95 appropriately.
96 @param choices
97 An array of strings with which to initialise the choice control.
98 @param style
99 Window style. See wxChoice.
100 @param validator
101 Window validator.
102 @param name
103 Window name.
104
105 @see Create(), wxValidator
106
107 @beginWxPythonOnly
108
109 The wxChoice constructor in wxPython reduces the @a n and @a choices
110 arguments to a single argument, which is a list of strings.
111
112 @endWxPythonOnly
113 */
4cc4bfaf 114 wxChoice(wxWindow* parent, wxWindowID id,
7c913512
FM
115 const wxPoint& pos,
116 const wxSize& size,
117 const wxArrayString& choices,
118 long style = 0,
119 const wxValidator& validator = wxDefaultValidator,
120 const wxString& name = "choice");
23324ae1
FM
121 //@}
122
123 /**
124 Destructor, destroying the choice item.
125 */
b7e94bd7 126 virtual ~wxChoice();
23324ae1
FM
127
128 //@{
129 /**
130 Creates the choice for two-step construction. See wxChoice().
131 */
4cc4bfaf 132 bool Create(wxWindow* parent, wxWindowID id, const wxPoint& pos,
23324ae1
FM
133 const wxSize& size, int n,
134 const wxString choices[],
135 long style = 0,
136 const wxValidator& validator = wxDefaultValidator,
137 const wxString& name = "choice");
4cc4bfaf 138 bool Create(wxWindow* parent, wxWindowID id,
7c913512
FM
139 const wxPoint& pos,
140 const wxSize& size,
141 const wxArrayString& choices,
142 long style = 0,
143 const wxValidator& validator = wxDefaultValidator,
144 const wxString& name = "choice");
23324ae1
FM
145 //@}
146
147 /**
148 Gets the number of columns in this choice item.
3c4f71cc 149
3f16e52c
RR
150 @remarks This is implemented for GTK and Motif only and always
151 returns 1 for the other platforms.
23324ae1 152 */
b7e94bd7 153 virtual int GetColumns() const;
23324ae1
FM
154
155 /**
bfac6166
BP
156 Unlike wxControlWithItems::GetSelection() which only returns the
157 accepted selection value, i.e. the selection in the control once the
158 user closes the dropdown list, this function returns the current
159 selection. That is, while the dropdown list is shown, it returns the
160 currently selected item in it. When it is not shown, its result is the
161 same as for the other function.
162
1e24c2af
VS
163 @since 2.6.2.
164 In older versions, wxControlWithItems::GetSelection() itself
165 behaved like this.
23324ae1 166 */
b7e94bd7 167 virtual int GetCurrentSelection() const;
23324ae1
FM
168
169 /**
170 Sets the number of columns in this choice item.
3c4f71cc 171
7c913512 172 @param n
4cc4bfaf 173 Number of columns.
bfac6166 174
3f16e52c
RR
175 @remarks This is implemented for GTK and Motif only and doesn’t do
176 anything under other platforms.
23324ae1 177 */
b7e94bd7 178 virtual void SetColumns(int n = 1);
23324ae1 179};
e54c96f1 180