]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/progdlg.tex
2 typos corrected
[wxWidgets.git] / docs / latex / wx / progdlg.tex
CommitLineData
8fa2e6a2
KB
1\section{\class{wxProgressDialog}}\label{wxprogressdialog}
2
3This class represents a dialog that shows a short message and a
4progress bar. Optionally, it can display an ABORT button.
5
6\wxheading{Derived from}
7
8\helpref{wxFrame}{wxframe}\\
9\helpref{wxWindow}{wxwindow}\\
10\helpref{wxEvtHandler}{wxevthandler}\\
11\helpref{wxObject}{wxobject}
12
13\wxheading{Include files}
14
15<wx/progdlg.h>
16
17\latexignore{\rtfignore{\wxheading{Members}}}
18
19\membersection{wxProgressDialog::wxProgressDialog}\label{wxprogressdialogconstr}
20
21\func{}{wxProgressDialog}
22{\param{const wxString\& }{title},
23 \param{const wxString\& }{message},\rtfsp
24 \param{int }{maximum = 100},
25 \param{wxWindow * }{parent = NULL},\rtfsp
88ac883a 26 \param{int }{style = wxPD\_AUTO\_HIDE | wxPD\_APP\_MODAL}
8fa2e6a2
KB
27 }
28
29Constructor. Creates the dialog, displays it and disables user input
88ac883a 30for other windows, or, if wxPD\_APP\_MODAL flag is not given, for its parent
8fa2e6a2
KB
31window only.
32
33\wxheading{Parameters}
34
35\docparam{title}{Dialog title to show in titlebar.}
36
37\docparam{message}{Message displayed above the progress bar.}
38
39\docparam{maximum}{Maximum value for the progress bar.}
40
41\docparam{parent}{Parent window.}
42
43\docparam{message}{Message to show on the dialog.}
44
88ac883a
VZ
45\docparam{style}{The dialog style. This is the combination of the following
46 bitmask constants defined in wx/defs.h:
47
48\twocolwidtha{7cm}
49\begin{twocollist}\itemsep=0pt
50\twocolitem{wxPD\_APP\_MODAL}{Make the progress dialog modal. If this flag is
51 not given, it is only "locally" modal - that is the input to the parent
52 window is disabled, but not to the other ones.}
53\twocolitem{wxPD\_AUTO\_HIDE}{By default, the progress dialog will disappear
54 from screen as soon as the maximum value of the progress meter has been
55 reached. This flag prevents it from doing it - instead the dialog will wait
56 until the user closes it.}
57\twocolitem{wxPD\_CAN\_ABORT}{This flag tells the dialog that it should have a
58 "Cancel" button which the user may press. If this happens, the next call to
59 \helpref{Update()}{wxprogressdialogupdate} will return FALSE.}
60\end{twocollist}%
61}
8fa2e6a2
KB
62
63\membersection{wxProgressDialog::\destruct{wxProgressDialog}}
64
65\func{}{\destruct{wxMessageDialog}}{\void}
66Destructor.
67Deletes the dialog and enables all top level windows.
68
69\membersection{wxProgressDialog::Update}\label{wxprogressdialogupdate}
70
71\func{bool}{Update}{
72 \param{int }{value = -1},\rtfsp
73 \param{const char * }{newmsg = NULL}, }
74
75Updates the dialog, setting the progress bar to the new value and, if
88ac883a 76given changes the message above it. Returns TRUE if the ABORT button
8fa2e6a2
KB
77has \emph{not} been pressed.
78
88ac883a
VZ
79If FALSE is returned, the application can either immediately destroy the dialog
80or ask the user for the confirmation and if the abort is not confirmed the
81dialog may be resumed with \helpref{Resume}{wxprogressdialogresume} function.
82
83\docparam{value}{The new value of the progress meter. It must be strictly less
84 than the maximum value given to the constructor (i.e., as usual in C, the
85 index runs from $0$ to $maximum-1$).}
86\docparam{newmsg}{The new messages for the progress dialog text, if none is
87 given the message is not changed.}
8fa2e6a2
KB
88
89\membersection{wxProgressDialog::Resume}\label{wxprogressdialogresume}
90
91\func{void}{Resume}{\void}
88ac883a 92
8fa2e6a2
KB
93Can be used to continue with the dialog, after the user had chosen
94ABORT.
95
96