1 \section{\class{wxDialog
}}\label{wxdialog
}
3 A dialog box is a window with a title bar and sometimes a system menu, which can be moved around
4 the screen. It can contain controls and other windows.
6 \wxheading{Derived from
}
8 \helpref{wxPanel
}{wxpanel
}\\
9 \helpref{wxWindow
}{wxwindow
}\\
10 \helpref{wxEvtHandler
}{wxevthandler
}\\
11 \helpref{wxObject
}{wxobject
}
13 \wxheading{Include files
}
19 There are two kinds of dialog -
{\it modal
} and
{\it modeless
}. A modal dialog
20 blocks program flow and user input on other windows until it is dismissed, whereas a modeless dialog behaves more
21 like a frame in that program flow continues, and input on other windows is still possible.
22 You specify the type of dialog with the
{\bf wxDIALOG
\_MODAL} and
{\bf wxDIALOG
\_MODELESS} window
25 A dialog may be loaded from a wxWindows resource file (extension
{\tt wxr
}), which may itself
26 be created by Dialog Editor. For details,
27 see
\helpref{The wxWindows resource system
}{resourceformats
},
\helpref{wxWindows resource functions
}{resourcefuncs
} and
30 An application can define an
\helpref{OnCloseWindow
}{wxwindowonclosewindow
} handler for the
31 dialog to respond to system close events.
33 \wxheading{Window styles
}
36 \begin{twocollist
}\itemsep=
0pt
37 \twocolitem{\windowstyle{wxDIALOG
\_MODAL}}{Specifies that the dialog box will be modal.
}
38 \twocolitem{\windowstyle{wxCAPTION
}}{Puts a caption on the dialog box.
}
39 \twocolitem{\windowstyle{wxDEFAULT
\_DIALOG\_STYLE}}{Equivalent to a combination of wxCAPTION, wxSYSTEM
\_MENU and wxTHICK
\_FRAME}
40 \twocolitem{\windowstyle{wxRESIZE
\_BORDER}}{Display a resizeable frame around the window.
}
41 \twocolitem{\windowstyle{wxSYSTEM
\_MENU}}{Display a system menu.
}
42 \twocolitem{\windowstyle{wxTHICK
\_FRAME}}{Display a thick frame around the window.
}
43 \twocolitem{\windowstyle{wxSTAY
\_ON\_TOP}}{The dialog stays on top of all other windows (Windows only).
}
44 \twocolitem{\windowstyle{wxNO
\_3D}}{Under Windows, specifies that the child controls
45 should not have
3D borders unless specified in the control.
}
48 Under Unix or Linux, MWM (the Motif Window Manager) or other window managers reckognizing
49 the MHM hints should be running for any of these styles to have an effect.
51 See also
\helpref{Generic window styles
}{windowstyles
}.
55 \helpref{wxDialog overview
}{wxdialogoverview
},
\helpref{wxFrame
}{wxframe
},
\helpref{Resources
}{resources
},
\rtfsp
56 \helpref{Validator overview
}{validatoroverview
}
58 \latexignore{\rtfignore{\wxheading{Members
}}}
60 \membersection{wxDialog::wxDialog
}\label{wxdialogconstr
}
62 \func{}{wxDialog
}{\void}
66 \func{}{wxDialog
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
67 \param{const wxString\&
}{title
},
\rtfsp
68 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
69 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
70 \param{long
}{ style = wxDEFAULT
\_DIALOG\_STYLE},
\rtfsp
71 \param{const wxString\&
}{name = ``dialogBox"
}}
75 \wxheading{Parameters
}
77 \docparam{parent
}{Can be NULL, a frame or another dialog box.
}
79 \docparam{id
}{An identifier for the dialog. A value of -
1 is taken to mean a default.
}
81 \docparam{title
}{The title of the dialog.
}
83 \docparam{pos
}{The dialog position. A value of (-
1, -
1) indicates a default position, chosen by
84 either the windowing system or wxWindows, depending on platform.
}
86 \docparam{size
}{The dialog size. A value of (-
1, -
1) indicates a default size, chosen by
87 either the windowing system or wxWindows, depending on platform.
}
89 \docparam{style
}{The window style. See
\helpref{wxDialog
}{wxdialog
}.
}
91 \docparam{name
}{Used to associate a name with the window,
92 allowing the application user to set Motif resource values for
93 individual dialog boxes.
}
97 \helpref{wxDialog::Create
}{wxdialogcreate
}
99 \membersection{wxDialog::
\destruct{wxDialog
}}
101 \func{}{\destruct{wxDialog
}}{\void}
103 Destructor. Deletes any child windows before deleting the physical window.
105 \membersection{wxDialog::Centre
}\label{wxdialogcentre
}
107 \func{void
}{Centre
}{\param{int
}{ direction = wxBOTH
}}
109 Centres the dialog box on the display.
111 \wxheading{Parameters
}
113 \docparam{direction
}{May be
{\tt wxHORIZONTAL
},
{\tt wxVERTICAL
} or
{\tt wxBOTH
}.
}
115 \membersection{wxDialog::Create
}\label{wxdialogcreate
}
117 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
118 \param{const wxString\&
}{title
},
\rtfsp
119 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
120 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
121 \param{long
}{ style = wxDEFAULT
\_DIALOG\_STYLE},
\rtfsp
122 \param{const wxString\&
}{name = ``dialogBox"
}}
124 Used for two-step dialog box construction. See
\helpref{wxDialog::wxDialog
}{wxdialogconstr
}\rtfsp
127 \membersection{wxDialog::EndModal
}\label{wxdialogendmodal
}
129 \func{void
}{EndModal
}{\param{int
}{retCode
}}
131 Ends a modal dialog, passing a value to be returned from the
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
}\rtfsp
134 \wxheading{Parameters
}
136 \docparam{retCode
}{The value that should be returned by
{\bf ShowModal
}.
}
140 \helpref{wxDialog::ShowModal
}{wxdialogshowmodal
},
\rtfsp
141 \helpref{wxDialog::GetReturnCode
}{wxdialoggetreturncode
},
\rtfsp
142 \helpref{wxDialog::SetReturnCode
}{wxdialogsetreturncode
}
144 \membersection{wxDialog::GetReturnCode
}\label{wxdialoggetreturncode
}
146 \func{int
}{GetReturnCode
}{\void}
148 Gets the return code for this window.
152 A return code is normally associated with a modal dialog, where
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
} returns
153 a code to the application.
157 \helpref{wxDialog::SetReturnCode
}{wxdialogsetreturncode
},
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
},
\rtfsp
158 \helpref{wxDialog::EndModal
}{wxdialogendmodal
}
160 \membersection{wxDialog::GetTitle
}\label{wxdialoggettitle
}
162 \constfunc{wxString
}{GetTitle
}{\void}
164 Returns the title of the dialog box.
166 \membersection{wxDialog::Iconize
}\label{wxdialogiconized
}
168 \func{void
}{Iconize
}{\param{const bool
}{ iconize
}}
170 Iconizes or restores the dialog. Windows only.
172 \wxheading{Parameters
}
174 \docparam{iconize
}{If TRUE, iconizes the dialog box; if FALSE, shows and restores it.
}
178 Note that in Windows, iconization has no effect since dialog boxes cannot be
179 iconized. However, applications may need to explicitly restore dialog
180 boxes under Motif which have user-iconizable frames, and under Windows
181 calling
{\tt Iconize(FALSE)
} will bring the window to the front, as does
182 \rtfsp{\tt Show(TRUE)
}.
184 \membersection{wxDialog::IsIconized
}\label{wxdialogisiconized
}
186 \constfunc{bool
}{IsIconized
}{\void}
188 Returns TRUE if the dialog box is iconized. Windows only.
192 Always returns FALSE under Windows since dialogs cannot be iconized.
194 \membersection{wxDialog::IsModal
}\label{wxdialogismodal
}
196 \constfunc{bool
}{IsModal
}{\void}
198 Returns TRUE if the dialog box is modal, FALSE otherwise.
200 \membersection{wxDialog::OnCharHook
}\label{wxdialogoncharhook
}
202 \func{void
}{OnCharHook
}{\param{wxKeyEvent\&
}{ event
}}
204 This member is called to allow the window to intercept keyboard events
205 before they are processed by child windows.
207 For more information, see
\helpref{wxWindow::OnCharHook
}{wxwindowoncharhook
}
211 wxDialog implements this handler to fake a cancel command if the escape key has been
212 pressed. This will dismiss the dialog.
214 \membersection{wxDialog::OnApply
}\label{wxdialogonapply
}
216 \func{void
}{OnApply
}{\param{wxCommandEvent\&
}{event
}}
218 The default handler for the wxID
\_APPLY identifier.
222 This function calls
\helpref{wxWindow::Validate
}{wxwindowvalidate
} and
\helpref{wxWindow::TransferDataToWindow
}{wxwindowtransferdatatowindow
}.
226 \helpref{wxDialog::OnOK
}{wxdialogonok
},
\helpref{wxDialog::OnCancel
}{wxdialogoncancel
}
228 \membersection{wxDialog::OnCancel
}\label{wxdialogoncancel
}
230 \func{void
}{OnCancel
}{\param{wxCommandEvent\&
}{event
}}
232 The default handler for the wxID
\_CANCEL identifier.
236 The function either calls
{\bf EndModal(wxID
\_CANCEL)
} if the dialog is modal, or
237 sets the return value to wxID
\_CANCEL and calls
{\bf Show(FALSE)
} if the dialog is modeless.
241 \helpref{wxDialog::OnOK
}{wxdialogonok
},
\helpref{wxDialog::OnApply
}{wxdialogonapply
}
243 \membersection{wxDialog::OnOK
}\label{wxdialogonok
}
245 \func{void
}{OnOK
}{\param{wxCommandEvent\&
}{event
}}
247 The default handler for the wxID
\_OK identifier.
252 \rtfsp\helpref{wxWindow::Validate
}{wxwindowvalidate
}, then
\helpref{wxWindow::TransferDataFromWindow
}{wxwindowtransferdatafromwindow
}.
253 If this returns TRUE, the function either calls
{\bf EndModal(wxID
\_OK)
} if the dialog is modal, or
254 sets the return value to wxID
\_OK and calls
{\bf Show(FALSE)
} if the dialog is modeless.
258 \helpref{wxDialog::OnCancel
}{wxdialogoncancel
},
\helpref{wxDialog::OnApply
}{wxdialogonapply
}
260 \membersection{wxDialog::OnSysColourChanged
}\label{wxdialogonsyscolourchanged
}
262 \func{void
}{OnSysColourChanged
}{\param{wxSysColourChangedEvent\&
}{event
}}
264 The default handler for wxEVT
\_SYS\_COLOUR\_CHANGED.
266 \wxheading{Parameters
}
268 \docparam{event
}{The colour change event.
}
272 Changes the dialog's colour to conform to the current settings (Windows only).
273 Add an event table entry for your dialog class if you wish the behaviour
274 to be different (such as keeping a user-defined
275 background colour). If you do override this function, call
\helpref{wxWindow::OnSysColourChanged
}{wxwindowonsyscolourchanged
} to
276 propagate the notification to child windows and controls.
280 \helpref{wxSysColourChangedEvent
}{wxsyscolourchangedevent
}
282 \membersection{wxDialog::SetModal
}\label{wxdialogsetmodal
}
284 \func{void
}{SetModal
}{\param{const bool
}{ flag
}}
286 {\bf NB:
} This function is deprecated and doesn't work for all ports, just use
287 \helpref{ShowModal
}{wxdialogshowmodal
} to show a modal dialog instead.
289 Allows the programmer to specify whether the dialog box is modal (wxDialog::Show blocks control
290 until the dialog is hidden) or modeless (control returns immediately).
292 \wxheading{Parameters
}
294 \docparam{flag
}{If TRUE, the dialog will be modal, otherwise it will be modeless.
}
296 \membersection{wxDialog::SetReturnCode
}\label{wxdialogsetreturncode
}
298 \func{void
}{SetReturnCode
}{\param{int
}{retCode
}}
300 Sets the return code for this window.
302 \wxheading{Parameters
}
304 \docparam{retCode
}{The integer return code, usually a control identifier.
}
308 A return code is normally associated with a modal dialog, where
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
} returns
309 a code to the application. The function
\helpref{wxDialog::EndModal
}{wxdialogendmodal
} calls
{\bf SetReturnCode
}.
313 \helpref{wxDialog::GetReturnCode
}{wxdialoggetreturncode
},
\helpref{wxDialog::ShowModal
}{wxdialogshowmodal
},
\rtfsp
314 \helpref{wxDialog::EndModal
}{wxdialogendmodal
}
316 \membersection{wxDialog::SetTitle
}\label{wxdialogsettitle
}
318 \func{void
}{SetTitle
}{\param{const wxString\&
}{ title
}}
320 Sets the title of the dialog box.
322 \wxheading{Parameters
}
324 \docparam{title
}{The dialog box title.
}
326 \membersection{wxDialog::Show
}\label{wxdialogshow
}
328 \func{bool
}{Show
}{\param{const bool
}{ show
}}
330 Hides or shows the dialog.
332 \wxheading{Parameters
}
334 \docparam{show
}{If TRUE, the dialog box is shown and brought to the front;
335 otherwise the box is hidden. If FALSE and the dialog is
336 modal, control is returned to the calling program.
}
340 The preferred way of dismissing a modal dialog is to use
\helpref{wxDialog::EndModal
}{wxdialogendmodal
}.
342 \membersection{wxDialog::ShowModal
}\label{wxdialogshowmodal
}
344 \func{int
}{ShowModal
}{\void}
346 Shows a modal dialog. Program flow does not return until the dialog has been dismissed with
\rtfsp
347 \helpref{wxDialog::EndModal
}{wxdialogendmodal
}.
349 \wxheading{Return value
}
351 The return value is the value set with
\helpref{wxDialog::SetReturnCode
}{wxdialogsetreturncode
}.
355 \helpref{wxDialog::EndModal
}{wxdialogendmodal
},
\rtfsp
356 \helpref{wxDialog:GetReturnCode
}{wxdialoggetreturncode
},
\rtfsp
357 \helpref{wxDialog::SetReturnCode
}{wxdialogsetreturncode
}