wxXXChoiceDialog documentation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -16,7 +16,73 @@ the user to select one or more.
|
|||||||
|
|
||||||
\wxheading{See also}
|
\wxheading{See also}
|
||||||
|
|
||||||
\helpref{wxMultiChoiceDialog overview}{wxmultichoicedialogoverview}
|
\helpref{wxMultiChoiceDialog overview}{wxmultichoicedialogoverview},
|
||||||
|
\helpref{wxSingleChoiceDialog}{wxsinglechoicedialog}
|
||||||
|
|
||||||
\latexignore{\rtfignore{\wxheading{Members}}}
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
||||||
|
|
||||||
|
\membersection{wxMultiChoiceDialog::wxMultiChoiceDialog}\label{wxmultichoicedialogconstr}
|
||||||
|
|
||||||
|
\func{}{wxMultiChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
||||||
|
\param{const wxString\& }{caption}, \param{int }{n}, \param{const wxString* }{choices}, \param{long }{style = wxCHOICEDLG\_STYLE},\rtfsp
|
||||||
|
\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
||||||
|
|
||||||
|
\func{}{wxMultiChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
||||||
|
\param{const wxString\& }{caption}, \param{const wxArrayString\& }{choices}, \param{long }{style = wxCHOICEDLG\_STYLE},\rtfsp
|
||||||
|
\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
||||||
|
|
||||||
|
Constructor, taking an array of wxString choices and optional client data.
|
||||||
|
|
||||||
|
\wxheading{Parameters}
|
||||||
|
|
||||||
|
\docparam{parent}{Parent window.}
|
||||||
|
|
||||||
|
\docparam{message}{Message to show on the dialog.}
|
||||||
|
|
||||||
|
\docparam{caption}{The dialog caption.}
|
||||||
|
|
||||||
|
\docparam{n}{The number of choices.}
|
||||||
|
|
||||||
|
\docparam{choices}{An array of strings, or a string list, containing the choices.}
|
||||||
|
|
||||||
|
\docparam{style}{A dialog style (bitlist) containing flags chosen from standard
|
||||||
|
dialog styles and the following:
|
||||||
|
|
||||||
|
\twocolwidtha{5cm}
|
||||||
|
\begin{twocollist}
|
||||||
|
\twocolitem{{\bf wxOK}}{Show an OK button.}
|
||||||
|
\twocolitem{{\bf wxCANCEL}}{Show a Cancel button.}
|
||||||
|
\twocolitem{{\bf wxCENTRE}}{Centre the message. Not Windows.}
|
||||||
|
\end{twocollist}
|
||||||
|
The default value is equivalent to {\bf wxDEFAULT\_DIALOG\_STYLE \pipe wxRESIZE\_BORDER \pipe wxOK \pipe wxCANCEL \pipe wxCENTRE}.
|
||||||
|
}
|
||||||
|
|
||||||
|
\docparam{pos}{Dialog position. Not Windows.}
|
||||||
|
|
||||||
|
\wxheading{Remarks}
|
||||||
|
|
||||||
|
Use \helpref{wxMultiChoiceDialog::ShowModal}{wxmultichoicedialogshowmodal} to show the dialog.
|
||||||
|
|
||||||
|
\pythonnote{For Python the two parameters {\tt n} and {\tt choices} are collapsed
|
||||||
|
into a multi parameter {\tt choices} which is expected to be a Python
|
||||||
|
list of strings.}
|
||||||
|
|
||||||
|
\perlnote{In wxPerl there is just an array reference in place of {\tt n}.}
|
||||||
|
|
||||||
|
\membersection{wxMultiChoiceDialog::GetSelections}
|
||||||
|
|
||||||
|
\constfunc{wxArrayInt}{GetSelection}{\void}
|
||||||
|
|
||||||
|
Returns array with indexes of selected items.
|
||||||
|
|
||||||
|
\membersection{wxMultiChoiceDialog::SetSelections}
|
||||||
|
|
||||||
|
\constfunc{void}{SetSelections}{\param{const wxArrayInt\&}{ selections}}
|
||||||
|
|
||||||
|
Sets selected items from the array of selected items' indexes.
|
||||||
|
|
||||||
|
\membersection{wxMultiChoiceDialog::ShowModal}\label{wxmultichoicedialogshowmodal}
|
||||||
|
|
||||||
|
\func{int}{ShowModal}{\void}
|
||||||
|
|
||||||
|
Shows the dialog, returning either wxID\_OK or wxID\_CANCEL.
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
\section{\class{wxSingleChoiceDialog}}\label{wxsinglechoicedialog}
|
\section{\class{wxSingleChoiceDialog}}\label{wxsinglechoicedialog}
|
||||||
|
|
||||||
This class represents a dialog that shows a list of strings, and allows
|
This class represents a dialog that shows a list of strings, and allows the
|
||||||
the user to select one. Double-clicking on a list item is equivalent to single-clicking
|
user to select one. Double-clicking on a list item is equivalent to
|
||||||
and then pressing OK.
|
single-clicking and then pressing OK.
|
||||||
|
|
||||||
\wxheading{Derived from}
|
\wxheading{Derived from}
|
||||||
|
|
||||||
@@ -17,7 +17,8 @@ and then pressing OK.
|
|||||||
|
|
||||||
\wxheading{See also}
|
\wxheading{See also}
|
||||||
|
|
||||||
\helpref{wxSingleChoiceDialog overview}{wxsinglechoicedialogoverview}
|
\helpref{wxSingleChoiceDialog overview}{wxsinglechoicedialogoverview},
|
||||||
|
\helpref{wxMultiChoiceDialog}{wxmultichoicedialog}
|
||||||
|
|
||||||
\latexignore{\rtfignore{\wxheading{Members}}}
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
||||||
|
|
||||||
@@ -25,18 +26,16 @@ and then pressing OK.
|
|||||||
|
|
||||||
\func{}{wxSingleChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
\func{}{wxSingleChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
||||||
\param{const wxString\& }{caption}, \param{int }{n}, \param{const wxString* }{choices},\rtfsp
|
\param{const wxString\& }{caption}, \param{int }{n}, \param{const wxString* }{choices},\rtfsp
|
||||||
\param{void**}{ clientData = NULL}, \param{long }{style = wxOK \pipe wxCANCEL \pipe wxCENTRE},\rtfsp
|
\param{void**}{ clientData = NULL}, \param{long }{style = wxCHOICEDLG\_STYLE},\rtfsp
|
||||||
|
\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
||||||
|
|
||||||
|
\func{}{wxSingleChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
||||||
|
\param{const wxString\& }{caption}, \param{const wxArrayString\& }{choices},\rtfsp
|
||||||
|
\param{void**}{ clientData = NULL}, \param{long }{style = wxCHOICEDLG\_STYLE},\rtfsp
|
||||||
\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
||||||
|
|
||||||
Constructor, taking an array of wxString choices and optional client data.
|
Constructor, taking an array of wxString choices and optional client data.
|
||||||
|
|
||||||
%\func{}{wxSingleChoiceDialog}{\param{wxWindow* }{parent}, \param{const wxString\& }{message},\rtfsp
|
|
||||||
%\param{const wxString\& }{caption}, \param{const wxStringList\& }{choices},\rtfsp
|
|
||||||
%\param{void**}{ clientData = NULL}, \param{long }{style = wxOK \pipe wxCANCEL \pipe wxCENTRE},\rtfsp
|
|
||||||
%\param{const wxPoint\& }{pos = wxDefaultPosition}}
|
|
||||||
%
|
|
||||||
%Constructor, taking a string list and optional client data.
|
|
||||||
|
|
||||||
\wxheading{Parameters}
|
\wxheading{Parameters}
|
||||||
|
|
||||||
\docparam{parent}{Parent window.}
|
\docparam{parent}{Parent window.}
|
||||||
@@ -49,7 +48,11 @@ Constructor, taking an array of wxString choices and optional client data.
|
|||||||
|
|
||||||
\docparam{choices}{An array of strings, or a string list, containing the choices.}
|
\docparam{choices}{An array of strings, or a string list, containing the choices.}
|
||||||
|
|
||||||
\docparam{style}{A dialog style (bitlist) containing flags chosen from the following:
|
\docparam{clientData}{An array of client data to be associated with the items.
|
||||||
|
See \helpref{GetSelectionClientData}{wxsinglechoicedialoggetselectionclientdata}.}
|
||||||
|
|
||||||
|
\docparam{style}{A dialog style (bitlist) containing flags chosen from standard
|
||||||
|
dialog styles and the following:
|
||||||
|
|
||||||
\twocolwidtha{5cm}
|
\twocolwidtha{5cm}
|
||||||
\begin{twocollist}
|
\begin{twocollist}
|
||||||
@@ -57,6 +60,7 @@ Constructor, taking an array of wxString choices and optional client data.
|
|||||||
\twocolitem{{\bf wxCANCEL}}{Show a Cancel button.}
|
\twocolitem{{\bf wxCANCEL}}{Show a Cancel button.}
|
||||||
\twocolitem{{\bf wxCENTRE}}{Centre the message. Not Windows.}
|
\twocolitem{{\bf wxCENTRE}}{Centre the message. Not Windows.}
|
||||||
\end{twocollist}
|
\end{twocollist}
|
||||||
|
The default value is equivalent to {\bf wxDEFAULT\_DIALOG\_STYLE \pipe wxRESIZE\_BORDER \pipe wxOK \pipe wxCANCEL \pipe wxCENTRE}.
|
||||||
}
|
}
|
||||||
|
|
||||||
\docparam{pos}{Dialog position. Not Windows.}
|
\docparam{pos}{Dialog position. Not Windows.}
|
||||||
@@ -73,19 +77,13 @@ list of strings.}
|
|||||||
and {\tt choices}, and the client data array, if present, must have the
|
and {\tt choices}, and the client data array, if present, must have the
|
||||||
same length as the choices array.}
|
same length as the choices array.}
|
||||||
|
|
||||||
\membersection{wxSingleChoiceDialog::\destruct{wxSingleChoiceDialog}}
|
|
||||||
|
|
||||||
\func{}{\destruct{wxSingleChoiceDialog}}{\void}
|
|
||||||
|
|
||||||
Destructor.
|
|
||||||
|
|
||||||
\membersection{wxSingleChoiceDialog::GetSelection}
|
\membersection{wxSingleChoiceDialog::GetSelection}
|
||||||
|
|
||||||
\constfunc{int}{GetSelection}{\void}
|
\constfunc{int}{GetSelection}{\void}
|
||||||
|
|
||||||
Returns the index of selected item.
|
Returns the index of selected item.
|
||||||
|
|
||||||
\membersection{wxSingleChoiceDialog::GetSelectionClientData}
|
\membersection{wxSingleChoiceDialog::GetSelectionClientData}\label{wxsinglechoicedialoggetselectionclientdata}
|
||||||
|
|
||||||
\constfunc{char*}{GetSelectionClientData}{\void}
|
\constfunc{char*}{GetSelectionClientData}{\void}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user