@page overview_cmndlg Common dialogs overview
- Classes: #wxColourDialog, #wxFontDialog, #wxPrintDialog, #wxFileDialog,
- #wxDirDialog, #wxTextEntryDialog, #wxPasswordEntryDialog,
- #wxMessageDialog, #wxSingleChoiceDialog, #wxMultiChoiceDialog
+ Classes: wxColourDialog, wxFontDialog, wxPrintDialog, wxFileDialog,
+ wxDirDialog, wxTextEntryDialog, wxPasswordEntryDialog,
+ wxMessageDialog, wxSingleChoiceDialog, wxMultiChoiceDialog
Common dialog classes and functions encapsulate commonly-needed dialog box requirements.
They are all 'modal', grabbing the flow of control until the user dismisses the dialog,
@section overview_cmndlg_colour wxColourDialog overview
- Classes: #wxColourDialog, #wxColourData
+ Classes: wxColourDialog, wxColourData
The wxColourDialog presents a colour selector to the user, and returns
with colour information.
@section overview_cmndlg_font wxFontDialog overview
- Classes: #wxFontDialog, #wxFontData
+ Classes: wxFontDialog, wxFontData
The wxFontDialog presents a font selector to the user, and returns
with font and colour information.
@section overview_cmndlg_print wxPrintDialog overview
- Classes: #wxPrintDialog, #wxPrintData
+ Classes: wxPrintDialog, wxPrintData
This class represents the print and print setup common dialogs.
- You may obtain a #wxPrinterDC device context from
+ You may obtain a wxPrinterDC device context from
a successfully dismissed print dialog.
The samples/printing example shows how to use it: see @ref overview_printing for
@section overview_cmndlg_file wxFileDialog overview
- Classes: #wxFileDialog
+ Classes: wxFileDialog
Pops up a file selector box. In Windows and GTK2.4+, this is the common
file selector dialog. In X, this is a file selector box with somewhat less
@section overview_cmndlg_dir wxDirDialog overview
- Classes: #wxDirDialog
+ Classes: wxDirDialog
This dialog shows a directory selector dialog, allowing the user to select
a single directory.
@section overview_cmndlg_textentry wxTextEntryDialog overview
- Classes: #wxTextEntryDialog
+ Classes: wxTextEntryDialog
This is a dialog with a text entry field. The value that the user
entered is obtained using wxTextEntryDialog::GetValue.
@section overview_cmndlg_password wxPasswordEntryDialog overview
- Classes: #wxPasswordEntryDialog
+ Classes: wxPasswordEntryDialog
This is a dialog with a password entry field. The value that the user
entered is obtained using wxTextEntryDialog::GetValue.
@section overview_cmndlg_msg wxMessageDialog overview
- Classes: #wxMessageDialog
+ Classes: wxMessageDialog
This dialog shows a message, plus buttons that can be chosen from OK, Cancel, Yes, and No.
Under Windows, an optional icon can be shown, such as an exclamation mark or question mark.
@section overview_cmndlg_singlechoice wxSingleChoiceDialog overview
- Classes: #wxSingleChoiceDialog
+ Classes: wxSingleChoiceDialog
This dialog shows a list of choices, plus OK and (optionally) Cancel. The user can
select one of them. The selection can be obtained from the dialog as an index,
@section overview_cmndlg_multichoice wxMultiChoiceDialog overview
- Classes: #wxMultiChoiceDialog
+ Classes: wxMultiChoiceDialog
This dialog shows a list of choices, plus OK and (optionally) Cancel. The user can
select one or more of them.