1 \section{\class{wxSingleChoiceDialog
}}\label{wxsinglechoicedialog
}
3 This class represents a dialog that shows a list of strings, and allows
4 the user to select one. Double-clicking on a list item is equivalent to single-clicking
7 \wxheading{Derived from
}
9 \helpref{wxDialog
}{wxdialog
}\\
10 \helpref{wxWindow
}{wxwindow
}\\
11 \helpref{wxEvtHandler
}{wxevthandler
}\\
12 \helpref{wxObject
}{wxobject
}
14 \wxheading{Include files
}
20 \helpref{wxSingleChoiceDialog overview
}{wxsinglechoicedialogoverview
}
22 \latexignore{\rtfignore{\wxheading{Members
}}}
24 \membersection{wxSingleChoiceDialog::wxSingleChoiceDialog
}\label{wxsinglechoicedialogconstr
}
26 \func{}{wxSingleChoiceDialog
}{\param{wxWindow*
}{parent
},
\param{const wxString\&
}{message
},
\rtfsp
27 \param{const wxString\&
}{caption
},
\param{int
}{n
},
\param{const wxString*
}{choices
},
\rtfsp
28 \param{void**
}{ clientData = NULL
},
\param{long
}{style = wxOK
\pipe wxCANCEL
\pipe wxCENTRE
},
\rtfsp
29 \param{const wxPoint\&
}{pos = wxDefaultPosition
}}
31 Constructor, taking an array of wxString choices and optional client data.
33 \func{}{wxSingleChoiceDialog
}{\param{wxWindow*
}{parent
},
\param{const wxString\&
}{message
},
\rtfsp
34 \param{const wxString\&
}{caption
},
\param{const wxStringList\&
}{choices
},
\rtfsp
35 \param{void**
}{ clientData = NULL
},
\param{long
}{style = wxOK
\pipe wxCANCEL
\pipe wxCENTRE
},
\rtfsp
36 \param{const wxPoint\&
}{pos = wxDefaultPosition
}}
38 Constructor, taking a string list and optional client data.
40 \wxheading{Parameters
}
42 \docparam{parent
}{Parent window.
}
44 \docparam{message
}{Message to show on the dialog.
}
46 \docparam{caption
}{The dialog caption.
}
48 \docparam{n
}{The number of choices.
}
50 \docparam{choices
}{An array of strings, or a string list, containing the choices.
}
52 \docparam{style
}{A dialog style (bitlist) containing flags chosen from the following:
56 \twocolitem{{\bf wxOK
}}{Show an OK button.
}
57 \twocolitem{{\bf wxCANCEL
}}{Show a Cancel button.
}
58 \twocolitem{{\bf wxCENTRE
}}{Centre the message. Not Windows.
}
62 \docparam{pos
}{Dialog position. Not Windows.
}
66 Use
\helpref{wxSingleChoiceDialog::ShowModal
}{wxsinglechoicedialogshowmodal
} to show the dialog.
68 \pythonnote{For Python the two parametes
{\tt n
} and
{\tt choices
} are collapsed
69 into a single parameter
{\tt choices
} which is expected to be a Python
72 \membersection{wxSingleChoiceDialog::
\destruct{wxSingleChoiceDialog
}}
74 \func{}{\destruct{wxSingleChoiceDialog
}}{\void}
78 \membersection{wxSingleChoiceDialog::GetSelection
}
80 \constfunc{int
}{GetSelection
}{\void}
82 Returns the index of selected item.
84 \membersection{wxSingleChoiceDialog::GetSelectionClientData
}
86 \constfunc{char*
}{GetSelectionClientData
}{\void}
88 Returns the client data associated with the selection.
90 \membersection{wxSingleChoiceDialog::GetStringSelection
}
92 \constfunc{wxString
}{GetStringSelection
}{\void}
94 Returns the selected string.
96 \membersection{wxSingleChoiceDialog::SetSelection
}
98 \constfunc{void
}{SetSelection
}{\param{int
}{ selection
}}
100 Sets the index of the initially selected item.
102 \membersection{wxSingleChoiceDialog::ShowModal
}\label{wxsinglechoicedialogshowmodal
}
104 \func{int
}{ShowModal
}{\void}
106 Shows the dialog, returning either wxID
\_OK or wxID
\_CANCEL.