1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxChoice documentation
4 %% Author: wxWidgets Team
8 %% Copyright: (c) wxWidgets Team
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxChoice
}}\label{wxchoice
}
14 A choice item is used to select one of a list of strings. Unlike a
15 listbox, only the selection is visible until the user pulls down the
18 \wxheading{Derived from
}
20 \helpref{wxControlWithItems
}{wxcontrolwithitems
}\\
21 \helpref{wxControl
}{wxcontrol
}\\
22 \helpref{wxWindow
}{wxwindow
}\\
23 \helpref{wxEvtHandler
}{wxevthandler
}\\
24 \helpref{wxObject
}{wxobject
}
26 \wxheading{Include files
}
30 \wxheading{Window styles
}
32 There are no special styles for wxChoice.
34 See also
\helpref{window styles overview
}{windowstyles
}.
36 \wxheading{Event handling
}
39 \begin{twocollist
}\itemsep=
0pt
40 \twocolitem{{\bf EVT
\_CHOICE(id, func)
}}{Process a wxEVT
\_COMMAND\_CHOICE\_SELECTED event,
41 when an item on the list is selected.
}
46 \helpref{wxListBox
}{wxlistbox
},
\helpref{wxComboBox
}{wxcombobox
},
47 \rtfsp\helpref{wxCommandEvent
}{wxcommandevent
}
49 \latexignore{\rtfignore{\wxheading{Members
}}}
52 \membersection{wxChoice::wxChoice
}\label{wxchoicector
}
54 \func{}{wxChoice
}{\void}
58 \func{}{wxChoice
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
59 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
60 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
61 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``choice"
}}
63 \func{}{wxChoice
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
64 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
65 \param{const wxArrayString\&
}{choices
},
\rtfsp
66 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``choice"
}}
68 Constructor, creating and showing a choice.
70 \wxheading{Parameters
}
72 \docparam{parent
}{Parent window. Must not be NULL.
}
74 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
76 \docparam{pos
}{Window position.
}
78 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the choice is sized
81 \docparam{n
}{Number of strings with which to initialise the choice control.
}
83 \docparam{choices
}{An array of strings with which to initialise the choice control.
}
85 \docparam{style
}{Window style. See
\helpref{wxChoice
}{wxchoice
}.
}
87 \docparam{validator
}{Window validator.
}
89 \docparam{name
}{Window name.
}
93 \helpref{wxChoice::Create
}{wxchoicecreate
},
\helpref{wxValidator
}{wxvalidator
}
95 \pythonnote{The wxChoice constructor in wxPython reduces the
{\tt n
}
96 and
{\tt choices
} arguments are to a single argument, which is
99 \perlnote{In wxPerl there is just an array reference in place of
{\tt n
}
103 \membersection{wxChoice::
\destruct{wxChoice
}}\label{wxchoicedtor
}
105 \func{}{\destruct{wxChoice
}}{\void}
107 Destructor, destroying the choice item.
110 \membersection{wxChoice::Create
}\label{wxchoicecreate
}
112 \func{bool
}{Create
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
113 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
114 \param{int
}{ n
},
\param{const wxString
}{choices
[]},
\rtfsp
115 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\rtfsp
116 \param{const wxString\&
}{name = ``choice"
}}
118 \func{bool
}{Create
}{\param{wxWindow *
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
119 \param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{ size
},
\rtfsp
120 \param{const wxArrayString\&
}{choices
},
\rtfsp
121 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\rtfsp
122 \param{const wxString\&
}{name = ``choice"
}}
124 Creates the choice for two-step construction. See
\helpref{wxChoice::wxChoice
}{wxchoicector
}.
127 \membersection{wxChoice::GetColumns
}\label{wxchoicegetcolumns
}
129 \constfunc{int
}{GetColumns
}{\void}
131 Gets the number of columns in this choice item.
135 This is implemented for Motif only and always returns $
1$ for the other
139 \membersection{wxChoice::GetCurrentSelection
}\label{wxchoicegetcurrentselection
}
141 \constfunc{int
}{GetCurrentSelection
}{\void}
143 Unlike
\helpref{GetSelection
}{wxcontrolwithitemsgetselection
} which only
144 returns the accepted selection value, i.e. the selection in the control once
145 the user closes the dropdown list, this function returns the current selection.
146 That is, while the dropdown list is shown, it returns the currently selected
147 item in it. When it is not shown, its result is the same as for the other
150 \newsince{2.6.2} (before this version
151 \helpref{GetSelection
}{wxcontrolwithitemsgetselection
} itself behaved like
155 \membersection{wxChoice::SetColumns
}\label{wxchoicesetcolumns
}
157 \func{void
}{SetColumns
}{\param{int
}{ n =
1}}
159 Sets the number of columns in this choice item.
161 \wxheading{Parameters
}
163 \docparam{n
}{Number of columns.
}
167 This is implemented for Motif only and doesn't do anything under other