]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/progdlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxProgressDialog
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxProgressDialog
12 This class represents a dialog that shows a short message and a
13 progress bar. Optionally, it can display ABORT and SKIP buttons, and
14 the elapsed, remaining and estimated time for the end of the progress.
16 Note that you must be aware that wxProgressDialog internally calls
17 wxEventLoopBase::YieldFor with @c wxEVT_CATEGORY_UI and @c wxEVT_CATEGORY_USER_INPUT
18 and this may cause unwanted re-entrancies or the out-of-order processing
19 of pending events (to help preventing the last problem if you're using
20 wxProgressDialog in a multi-threaded application you should be sure to use
21 wxThreadEvent for your inter-threads communications).
24 @style{wxPD_APP_MODAL}
25 Make the progress dialog modal. If this flag is not given, it is
26 only "locally" modal - that is the input to the parent window is
27 disabled, but not to the other ones.
28 @style{wxPD_AUTO_HIDE}
29 Causes the progress dialog to disappear from screen as soon as the
30 maximum value of the progress meter has been reached.
31 If this style is not present, the dialog will become a modal dialog
32 (see wxDialog::ShowModal) once the maximum value has been reached;
33 this results in processing of pending events and may cause
34 unwanted re-entrancies.
36 Causes smooth progress of the gauge control (uses a wxGauge with the
37 @c wxGA_SMOOTH style).
38 @style{wxPD_CAN_ABORT}
39 This flag tells the dialog that it should have a "Cancel" button
40 which the user may press. If this happens, the next call to
41 Update() will return @false.
43 This flag tells the dialog that it should have a "Skip" button
44 which the user may press. If this happens, the next call to
45 Update() will return @true in its skip parameter.
46 @style{wxPD_ELAPSED_TIME}
47 This flag tells the dialog that it should show elapsed time (since
49 @style{wxPD_ESTIMATED_TIME}
50 This flag tells the dialog that it should show estimated time.
51 @style{wxPD_REMAINING_TIME}
52 This flag tells the dialog that it should show remaining time.
58 class wxProgressDialog
: public wxDialog
62 Constructor. Creates the dialog, displays it and disables user input
63 for other windows, or, if @c wxPD_APP_MODAL flag is not given, for its
67 Dialog title to show in titlebar.
69 Message displayed above the progress bar.
71 Maximum value for the progress bar.
72 In the generic implementation the progress bar is constructed
73 only if this value is greater than zero.
77 The dialog style. See wxProgressDialog.
79 wxProgressDialog(const wxString
& title
, const wxString
& message
,
81 wxWindow
* parent
= NULL
,
82 int style
= wxPD_AUTO_HIDE
| wxPD_APP_MODAL
);
85 Destructor. Deletes the dialog and enables all top level windows.
87 virtual ~wxProgressDialog();
90 Returns the last value passed to the Update() function or
91 @c wxNOT_FOUND if the dialog has no progress bar.
98 Returns the maximum value of the progress meter, as passed to
99 the constructor or @c wxNOT_FOUND if the dialog has no progress bar.
103 int GetRange() const;
106 Returns the last message passed to the Update() function;
107 if you always passed wxEmptyString to Update() then the message
108 set through the constructor is returned.
112 wxString
GetMessage() const;
115 Works like Update() but makes the gauge control run in indeterminate mode
116 (see wxGauge documentation); sets the remaining and the estimated time labels
117 (if present) to "Unknown" or to @a newmsg (if it's non-empty); moves the progress
118 bar a bit to indicate that some progress was done.
120 virtual bool Pulse(const wxString
& newmsg
= wxEmptyString
, bool* skip
= NULL
);
123 Can be used to continue with the dialog, after the user had clicked the "Abort" button.
128 Updates the dialog, setting the progress bar to the new value and, if
129 given changes the message above it. Returns @true unless the "Cancel" button
132 If @false is returned, the application can either immediately destroy the
133 dialog or ask the user for the confirmation and if the abort is not confirmed
134 the dialog may be resumed with Resume() function.
137 The new value of the progress meter. It should be less than or equal to
138 the maximum value given to the constructor.
139 See @c wxPD_AUTO_HIDE style for more info about the behaviour of
140 wxProgressDialog when @a value is the maximum value given in the ctor.
142 The new messages for the progress dialog text, if it is
143 empty (which is the default) the message is not changed.
145 If "Skip" button was pressed since last Update() call,
146 this is set to @true.
148 virtual bool Update(int value
, const wxString
& newmsg
= wxEmptyString
,