adjusted indentation with astyle; added Id keyword
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
/**
|
||||
@class wxMultiChoiceDialog
|
||||
@wxheader{choicdlg.h}
|
||||
|
||||
|
||||
This class represents a dialog that shows a list of strings, and allows
|
||||
the user to select one or more.
|
||||
|
||||
|
||||
@library{wxbase}
|
||||
@category{cmndlg}
|
||||
|
||||
|
||||
@seealso
|
||||
@ref overview_wxmultichoicedialogoverview "wxMultiChoiceDialog overview",
|
||||
wxSingleChoiceDialog
|
||||
@@ -27,22 +27,22 @@ public:
|
||||
/**
|
||||
Constructor taking an array of wxString choices.
|
||||
|
||||
@param parent
|
||||
@param parent
|
||||
Parent window.
|
||||
|
||||
@param message
|
||||
@param message
|
||||
Message to show on the dialog.
|
||||
|
||||
@param caption
|
||||
@param caption
|
||||
The dialog caption.
|
||||
|
||||
@param n
|
||||
@param n
|
||||
The number of choices.
|
||||
|
||||
@param choices
|
||||
@param choices
|
||||
An array of strings, or a string list, containing the choices.
|
||||
|
||||
@param style
|
||||
@param style
|
||||
A dialog style (bitlist) containing flags chosen from standard
|
||||
dialog styles and the following:
|
||||
|
||||
@@ -62,10 +62,10 @@ public:
|
||||
|
||||
Centre the message. Not Windows.
|
||||
|
||||
The default value is equivalent to wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER |
|
||||
The default value is equivalent to wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER |
|
||||
wxOK | wxCANCEL | wxCENTRE.
|
||||
|
||||
@param pos
|
||||
@param pos
|
||||
Dialog position. Not Windows.
|
||||
|
||||
@remarks Use ShowModal() to show the dialog.
|
||||
@@ -76,12 +76,12 @@ public:
|
||||
const wxString* choices,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
wxMultiChoiceDialog(wxWindow* parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
const wxArrayString& choices,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
wxMultiChoiceDialog(wxWindow* parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
const wxArrayString& choices,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
//@}
|
||||
|
||||
/**
|
||||
@@ -104,14 +104,14 @@ public:
|
||||
/**
|
||||
@class wxSingleChoiceDialog
|
||||
@wxheader{choicdlg.h}
|
||||
|
||||
|
||||
This class represents a dialog that shows a list of strings, and allows the
|
||||
user to select one. Double-clicking on a list item is equivalent to
|
||||
single-clicking and then pressing OK.
|
||||
|
||||
|
||||
@library{wxbase}
|
||||
@category{cmndlg}
|
||||
|
||||
|
||||
@seealso
|
||||
@ref overview_wxsinglechoicedialogoverview "wxSingleChoiceDialog overview",
|
||||
wxMultiChoiceDialog
|
||||
@@ -123,26 +123,26 @@ public:
|
||||
/**
|
||||
Constructor, taking an array of wxString choices and optional client data.
|
||||
|
||||
@param parent
|
||||
@param parent
|
||||
Parent window.
|
||||
|
||||
@param message
|
||||
@param message
|
||||
Message to show on the dialog.
|
||||
|
||||
@param caption
|
||||
@param caption
|
||||
The dialog caption.
|
||||
|
||||
@param n
|
||||
@param n
|
||||
The number of choices.
|
||||
|
||||
@param choices
|
||||
@param choices
|
||||
An array of strings, or a string list, containing the choices.
|
||||
|
||||
@param clientData
|
||||
@param clientData
|
||||
An array of client data to be associated with the items.
|
||||
See GetSelectionClientData.
|
||||
|
||||
@param style
|
||||
@param style
|
||||
A dialog style (bitlist) containing flags chosen from standard
|
||||
dialog styles and the following:
|
||||
|
||||
@@ -162,10 +162,10 @@ public:
|
||||
|
||||
Centre the message. Not Windows.
|
||||
|
||||
The default value is equivalent to wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER |
|
||||
The default value is equivalent to wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER |
|
||||
wxOK | wxCANCEL | wxCENTRE.
|
||||
|
||||
@param pos
|
||||
@param pos
|
||||
Dialog position. Not Windows.
|
||||
|
||||
@remarks Use ShowModal() to show the dialog.
|
||||
@@ -177,13 +177,13 @@ public:
|
||||
void** clientData = @NULL,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
wxSingleChoiceDialog(wxWindow* parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
const wxArrayString& choices,
|
||||
void** clientData = @NULL,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
wxSingleChoiceDialog(wxWindow* parent,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
const wxArrayString& choices,
|
||||
void** clientData = @NULL,
|
||||
long style = wxCHOICEDLG_STYLE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
//@}
|
||||
|
||||
/**
|
||||
@@ -231,16 +231,16 @@ int wxGetSingleChoiceIndex(const wxString& message,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
int wxGetSingleChoiceIndex(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
int wxGetSingleChoiceIndex(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
//@}
|
||||
|
||||
//@{
|
||||
@@ -250,11 +250,11 @@ int wxGetSingleChoiceIndex(const wxString& message,
|
||||
string or Cancel to return the empty string. Use
|
||||
wxGetSingleChoiceIndex if empty string is a
|
||||
valid choice and if you want to be able to detect pressing Cancel reliably.
|
||||
|
||||
|
||||
You may pass the list of strings to choose from either using @e choices
|
||||
which is an array of @e n strings for the listbox or by using a single
|
||||
@e aChoices parameter of type wxArrayString.
|
||||
|
||||
|
||||
If @e centre is @true, the message text (which may include new line
|
||||
characters) is centred; if @false, the message is left-justified.
|
||||
*/
|
||||
@@ -267,16 +267,16 @@ wxString wxGetSingleChoice(const wxString& message,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
wxString wxGetSingleChoice(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
wxString wxGetSingleChoice(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
//@}
|
||||
|
||||
//@{
|
||||
@@ -296,17 +296,17 @@ wxString wxGetSingleChoiceData(const wxString& message,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
wxString wxGetSingleChoiceData(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
const wxString& client_data[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
wxString wxGetSingleChoiceData(const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
const wxString& client_data[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
//@}
|
||||
|
||||
//@{
|
||||
@@ -316,11 +316,11 @@ wxString wxGetSingleChoiceData(const wxString& message,
|
||||
number of items in the listbox whose indices will be returned in
|
||||
@e selection array. The initial contents of this array will be used to
|
||||
select the items when the dialog is shown.
|
||||
|
||||
|
||||
You may pass the list of strings to choose from either using @e choices
|
||||
which is an array of @e n strings for the listbox or by using a single
|
||||
@e aChoices parameter of type wxArrayString.
|
||||
|
||||
|
||||
If @e centre is @true, the message text (which may include new line
|
||||
characters) is centred; if @false, the message is left-justified.
|
||||
*/
|
||||
@@ -334,16 +334,16 @@ size_t wxGetMultipleChoices(wxArrayInt& selections,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
size_t wxGetMultipleChoices(wxArrayInt& selections,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
size_t wxGetMultipleChoices(wxArrayInt& selections,
|
||||
const wxString& message,
|
||||
const wxString& caption,
|
||||
int n,
|
||||
const wxString& choices[],
|
||||
wxWindow * parent = @NULL,
|
||||
int x = -1,
|
||||
int y = -1,
|
||||
bool centre = @true,
|
||||
int width=150,
|
||||
int height=200);
|
||||
//@}
|
||||
|
||||
|
Reference in New Issue
Block a user