]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tcommdlg.tex
added a note that wxStringList is obsolete
[wxWidgets.git] / docs / latex / wx / tcommdlg.tex
CommitLineData
a660d684
KB
1\section{Common dialogs overview}\label{commondialogsoverview}
2
3Classes: \helpref{wxColourDialog}{wxcolourdialog}, \helpref{wxFontDialog}{wxfontdialog},
4\rtfsp\helpref{wxPrintDialog}{wxprintdialog}, \helpref{wxFileDialog}{wxfiledialog},\rtfsp
5\helpref{wxDirDialog}{wxdirdialog}, \helpref{wxTextEntryDialog}{wxtextentrydialog},\rtfsp
6\helpref{wxMessageDialog}{wxmessagedialog}, \helpref{wxSingleChoiceDialog}{wxsinglechoicedialog},\rtfsp
7\helpref{wxMultipleChoiceDialog}{wxmultiplechoicedialog}
8
9Common dialog classes and functions encapsulate commonly-needed dialog box requirements.
10They are all `modal', grabbing the flow of control until the user dismisses the dialog,
11to make them easy to use within an application.
12
13Some dialogs have both platform-dependent and platform-independent implementations,
14so that if underlying windowing systems that do not provide the required functionality,
15the generic classes and functions can stand in. For example, under MS Windows, wxColourDialog
16uses the standard colour selector. There is also an equivalent called wxGenericColourDialog
17for other platforms, and a macro defines wxColourDialog to be the same as wxGenericColourDialog
18on non-MS Windows platforms. However, under MS Windows, the generic dialog can also be
19used, for testing or other purposes.
20
21\subsection{wxColourDialog overview}\label{wxcolourdialogoverview}
22
23Classes: \helpref{wxColourDialog}{wxcolourdialog}, \helpref{wxColourData}{wxcolourdata}
24
25The wxColourDialog presents a colour selector to the user, and returns
26with colour information.
27
28{\bf The MS Windows colour selector}
29
30Under Windows, the native colour selector common dialog is used. This
31presents a dialog box with three main regions: at the top left, a
32palette of 48 commonly-used colours is shown. Under this, there is a
33palette of 16 `custom colours' which can be set by the application if
34desired. Additionally, the user may open up the dialog box to show
35a right-hand panel containing controls to select a precise colour, and add
36it to the custom colour palette.
37
38{\bf The generic colour selector}
39
40Under non-MS Windows platforms, the colour selector is a simulation of
41most of the features of the MS Windows selector. Two palettes of 48
42standard and 16 custom colours are presented, with the right-hand area
43containing three sliders for the user to select a colour from red,
44green and blue components. This colour may be added to the custom colour
45palette, and will replace either the currently selected custom colour,
46or the first one in the palette if none is selected. The RGB colour sliders
47are not optional in the generic colour selector. The generic colour
48selector is also available under MS Windows; use the name
49wxGenericColourDialog.
50
51{\bf Example}
52
53In the samples/dialogs directory, there is an example of using
54the wxColourDialog class. Here is an excerpt, which
55sets various parameters of a wxColourData object, including
56a grey scale for the custom colours. If the user did not cancel
57the dialog, the application retrieves the selected colour and
fe604ccd 58uses it to set the background of a window.
a660d684
KB
59
60\begin{verbatim}
61 wxColourData data;
62 data.SetChooseFull(TRUE);
63 for (int i = 0; i < 16; i++)
64 {
65 wxColour colour(i*16, i*16, i*16);
66 data.SetCustomColour(i, colour);
67 }
68
69 wxColourDialog dialog(this, &data);
70 if (dialog.ShowModal() == wxID_OK)
71 {
72 wxColourData retData = dialog.GetColourData();
73 wxColour col = retData.GetColour();
74 wxBrush brush(col, wxSOLID);
fe604ccd
JS
75 myWindow->SetBackground(brush);
76 myWindow->Clear();
77 myWindow->Refresh();
a660d684
KB
78 }
79\end{verbatim}
80
81
82\subsection{wxFontDialog overview}\label{wxfontdialogoverview}
83
84Classes: \helpref{wxFontDialog}{wxfontdialog}, \helpref{wxFontData}{wxfontdata}
85
86The wxFontDialog presents a font selector to the user, and returns
87with font and colour information.
88
89{\bf The MS Windows font selector}
90
91Under Windows, the native font selector common dialog is used. This
92presents a dialog box with controls for font name, point size, style, weight,
93underlining, strikeout and text foreground colour. A sample of the
94font is shown on a white area of the dialog box. Note that
95in the translation from full MS Windows fonts to wxWindows font
96conventions, strikeout is ignored and a font family (such as
97Swiss or Modern) is deduced from the actual font name (such as Arial
98or Courier). The full range of Windows fonts cannot be used in wxWindows
99at present.
100
101{\bf The generic font selector}
102
103Under non-MS Windows platforms, the font selector is simpler.
104Controls for font family, point size, style, weight,
105underlining and text foreground colour are provided, and
106a sample is shown upon a white background. The generic font selector
107is also available under MS Windows; use the name wxGenericFontDialog.
108
109In both cases, the application is responsible for deleting the
110new font returned from calling wxFontDialog::Show (if any).
111This returned font is guaranteed to be a new object and not
112one currently in use in the application.
113
114{\bf Example}
115
116In the samples/dialogs directory, there is an example of using
117the wxFontDialog class. The application uses the returned font
118and colour for drawing text on a canvas. Here is an excerpt:
119
120\begin{verbatim}
121 wxFontData data;
122 data.SetInitialFont(canvasFont);
123 data.SetColour(canvasTextColour);
124
125 wxFontDialog dialog(this, &data);
126 if (dialog.ShowModal() == wxID_OK)
127 {
128 wxFontData retData = dialog.GetFontData();
129 canvasFont = retData.GetChosenFont();
130 canvasTextColour = retData.GetColour();
fe604ccd 131 myWindow->Refresh();
a660d684
KB
132 }
133\end{verbatim}
134
135\subsection{wxPrintDialog overview}\label{wxprintdialogoverview}
136
137Classes: \helpref{wxPrintDialog}{wxprintdialog}, \helpref{wxPrintData}{wxprintdata}
138
139This class represents the print and print setup common dialogs.
140You may obtain a \helpref{wxPrinterDC}{wxprinterdc} device context from
141a successfully dismissed print dialog.
142
143The samples/printing example shows how to use it: see \helpref{Printing overview}{printingoverview} for
144an excerpt from this example.
145
146\subsection{wxFileDialog overview}\label{wxfiledialogoverview}
147
148Classes: \helpref{wxFileDialog}{wxfiledialog}
149
150Pops up a file selector box. In Windows, this is the common file selector
151dialog. In X, this is a file selector box with somewhat less functionality.
152The path and filename are distinct elements of a full file pathname.
153If path is ``", the current directory will be used. If filename is ``",
154no default filename will be supplied. The wildcard determines what files
155are displayed in the file selector, and file extension supplies a type
156extension for the required filename. Flags may be a combination of wxOPEN,
cddfbd9f 157wxSAVE, wxOVERWRITE\_PROMPT, wxHIDE\_READONLY, wxFILE\_MUST\_EXIST or 0.
a660d684
KB
158
159Both the X and Windows versions implement a wildcard filter. Typing a
160filename containing wildcards (*, ?) in the filename text item, and
161clicking on Ok, will result in only those files matching the pattern being
162displayed. In the X version, supplying no default name will result in the
163wildcard filter being inserted in the filename text item; the filter is
164ignored if a default name is supplied.
165
cddfbd9f 166The wildcard may be a specification for multiple
a660d684
KB
167types of file with a description for each, such as:
168
169\begin{verbatim}
170 "BMP files (*.bmp) | *.bmp | GIF files (*.gif) | *.gif"
171\end{verbatim}
172
173\subsection{wxDirDialog overview}\label{wxdirdialogoverview}
174
175Classes: \helpref{wxDirDialog}{wxdirdialog}
176
177This dialog shows a directory selector dialog, allowing the user to select a single
178directory.
179
180\subsection{wxTextEntryDialog overview}\label{wxtextentrydialogoverview}
181
182Classes: \helpref{wxTextEntryDialog}{wxtextentrydialog}
183
184This is a dialog with a text entry field. The value that the user
185entered is obtained using \helpref{wxTextEntryDialog::GetValue}{wxtextentrydialoggetvalue}.
186
187\subsection{wxMessageDialog overview}\label{wxmessagedialogoverview}
188
189Classes: \helpref{wxMessageDialog}{wxmessagedialog}
190
191This dialog shows a message, plus buttons that can be chosen from OK, Cancel, Yes, and No.
192Under Windows, an optional icon can be shown, such as an exclamation mark or question mark.
193
194The return value of \helpref{wxMessageDialog::ShowModal}{wxmessagedialogshowmodal} indicates
195which button the user pressed.
196
197\subsection{wxSingleChoiceDialog overview}\label{wxsinglechoicedialogoverview}
198
199Classes: \helpref{wxSingleChoiceDialog}{wxsinglechoicedialog}
200
201This dialog shows a list of choices, plus OK and (optionally) Cancel. The user can
202select one of them. The selection can be obtained from the dialog as an index,
203a string or client data.
204
205\subsection{wxMultipleChoiceDialog overview}\label{wxmultiplechoicedialogoverview}
206
207Classes: \helpref{wxMultipleChoiceDialog}{wxmultiplechoicedialog}
208
209This dialog shows a list of choices, plus OK and (optionally) Cancel. The user can
5b6aa0ff
JS
210select one or more of them.
211
a660d684 212