]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/progdlg.tex
Mentioned docview changes
[wxWidgets.git] / docs / latex / wx / progdlg.tex
... / ...
CommitLineData
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}{\param{const wxString\& }{title},
22 \param{const wxString\& }{message},\rtfsp
23 \param{int }{maximum = 100},
24 \param{wxWindow * }{parent = NULL},\rtfsp
25 \param{int }{style = wxPD\_AUTO\_HIDE | wxPD\_APP\_MODAL}}
26
27Constructor. Creates the dialog, displays it and disables user input
28for other windows, or, if wxPD\_APP\_MODAL flag is not given, for its parent
29window only.
30
31\wxheading{Parameters}
32
33\docparam{title}{Dialog title to show in titlebar.}
34
35\docparam{message}{Message displayed above the progress bar.}
36
37\docparam{maximum}{Maximum value for the progress bar.}
38
39\docparam{parent}{Parent window.}
40
41\docparam{message}{Message to show on the dialog.}
42
43\docparam{style}{The dialog style. This is the combination of the following
44bitmask constants defined in wx/defs.h:
45
46\twocolwidtha{7cm}
47\begin{twocollist}\itemsep=0pt
48\twocolitem{{\bf wxPD\_APP\_MODAL}}{Make the progress dialog modal. If this flag is
49not given, it is only "locally" modal - that is the input to the parent
50window is disabled, but not to the other ones.}
51\twocolitem{{\bf wxPD\_AUTO\_HIDE}}{Causes the progress dialog to disappear
52from screen as soon as the maximum value of the progress meter has been
53reached.}
54\twocolitem{{\bf wxPD\_CAN\_ABORT}}{This flag tells the dialog that it should have a
55"Cancel" button which the user may press. If this happens, the next call to
56 \helpref{Update()}{wxprogressdialogupdate} will return false.}
57\twocolitem{{\bf wxPD\_ELAPSED\_TIME}}{This flag tells the dialog that it should show elapsed time (since creating the dialog).}
58\twocolitem{{\bf wxPD\_ESTIMATED\_TIME}}{This flag tells the dialog that it should show estimated time.}
59\twocolitem{{\bf wxPD\_REMAINING\_TIME}}{This flag tells the dialog that it should show remaining time.}
60%\twocolitem{{\bf wxPD\_SMOOTH}}{This flag tells the dialog that it should use
61%smooth gauge (has effect only under 32bit Windows).}
62\end{twocollist}%
63}
64
65\membersection{wxProgressDialog::\destruct{wxProgressDialog}}
66
67\func{}{\destruct{wxMessageDialog}}{\void}
68
69Destructor. Deletes the dialog and enables all top level windows.
70
71\membersection{wxProgressDialog::Resume}\label{wxprogressdialogresume}
72
73\func{void}{Resume}{\void}
74
75Can be used to continue with the dialog, after the user had chosen
76ABORT.
77
78\membersection{wxProgressDialog::Update}\label{wxprogressdialogupdate}
79
80\func{bool}{Update}{
81 \param{int }{value},\rtfsp
82 \param{const wxString\&}{newmsg = ""}, }
83
84Updates the dialog, setting the progress bar to the new value and, if
85given changes the message above it. Returns true unless the Cancel button
86has been pressed.
87
88If false is returned, the application can either immediately destroy the dialog
89or ask the user for the confirmation and if the abort is not confirmed the
90dialog may be resumed with \helpref{Resume}{wxprogressdialogresume} function.
91
92\wxheading{Parameters}
93
94\docparam{value}{The new value of the progress meter. It must be strictly less
95than the maximum value given to the constructor (i.e., as usual in C, the
96index runs from $0$ to $maximum-1$).}
97\docparam{newmsg}{The new messages for the progress dialog text, if it is
98empty (which is the default) the message is not changed.}
99