• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:is

14 A dialog box is a window with a title bar and sometimes a system menu, which
16 is often used to allow the user to make some choice or to answer a question.
23 them (such button, if present, is automatically activated if the user presses
26 wxWidgets 2.7 it is also possible to use a button with a different identifier
32 positioned correctly (including their order which is platform-dependent).
50 blocks program flow and user input on other windows until it is dismissed,
52 continues, and input in other windows is still possible. To show a modal dialog
57 Note that the modal dialog is one of the very few examples of
95 \twocolitem{\windowstyle{wxDEFAULT\_DIALOG\_STYLE}}{Equivalent to a combination of wxCAPTION, wxCLOSE\_BOX and wxSYSTEM\_MENU (the last one is not used under Unix)}
108 style to prevent this from happening and create an orphan dialog. This is not recommended for modal dialogs.}
111 a wxEVT\_HELP event if the user clicked on an application window. {\it Note}\ that this is an extended
112 style and must be set by calling \helpref{SetExtraStyle}{wxwindowsetextrastyle} before Create is called (two-step construction).}
113 \twocolitem{\windowstyle{wxDIALOG\_EX\_METAL}}{On Mac OS X, frames with this style will be shown with a metallic look. This is an {\it extra} style.}
149 \docparam{id}{An identifier for the dialog. A value of -1 is taken to mean a default.}
205 Creates a sizer with standard buttons. {\it flags} is a bit list
214 the return value is valid before using it.
233 Creates a \helpref{wxStdDialogButtonSizer}{wxstddialogbuttonsizer} with standard buttons. {\it flags} is a bit list
243 This function is called when the titlebar OK button is pressed (PocketPC only).
244 A command event for the identifier returned by GetAffirmativeId is sent by
299 A return code is normally associated with a modal dialog, where \helpref{wxDialog::ShowModal}{wxdialogshowmodal} returns
312 On PocketPC, a dialog is automatically provided with an empty toolbar. GetToolBar
316 This function is not available on any other platform.
342 Returns true if the dialog box is iconized. Windows only.
353 Returns true if the dialog box is modal, false otherwise.
385 identifier is pressed, the dialog calls \helpref{Validate}{wxwindowvalidate}
391 the special OK button in the PocketPC title bar, an event with this id is
394 By default, the affirmative id is wxID\_OK.
406 \texttt{\textsc{Cancel}} button in this dialog. When the button with this id is
407 clicked, the dialog is closed. Also, when the user presses \texttt{\textsc{ESC}}
409 this is mapped to the click of the button with the specified id.
411 By default, the escape id is the special value \texttt{wxID\_ANY} meaning that
412 \texttt{wxID\_CANCEL} button is used if it's present in the dialog and
414 is used. Another special value for \arg{id} is \texttt{wxID\_NONE} meaning that
415 \texttt{\textsc{ESC}} presses should be ignored. If any other value is given, it
416 is interpreted as the id of the button to map the escape key to.
449 {\bf NB:} This function is deprecated and doesn't work for all ports, just use
452 Allows the programmer to specify whether the dialog box is modal (wxDialog::Show blocks control
453 until the dialog is hidden) or modeless (control returns immediately).
472 A return code is normally associated with a modal dialog, where \helpref{wxDialog::ShowModal}{wxdialogshowmodal} returns
489 \docparam{show}{If true, the dialog box is shown and brought to the front;
490 otherwise the box is hidden. If false and the dialog is
491 modal, control is returned to the calling program.}
495 The preferred way of dismissing a modal dialog is to use \helpref{wxDialog::EndModal}{wxdialogendmodal}.
507 The return value is the value set with \helpref{wxDialog::SetReturnCode}{wxdialogsetreturncode}.