wxdialog overviewclasses: wxdialog a dialog box is similar to a panel, in that it is a window which can be used for placing controls, with the following exceptions:
under windows 3, modal dialogs have to be emulated using modeless dialogs and a message loop. this is because windows 3 expects the contents of a modal dialog to be loaded from a resource file or created on receipt of a dialog initialization message. this is too restrictive for wxwidgets, where any window may be created and displayed before its contents are created. for a set of dialog convenience functions, including file selection, see dialog functions. see also wxpanel and wxwindow for inherited member functions. validation of data in controls is covered in validator overview.
|