]>
Commit | Line | Data |
---|---|---|
ed1288ee | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/generic/progdlgg.h |
c31d9c7f | 3 | // Purpose: wxGenericProgressDialog class |
9d55bfef | 4 | // Author: Karsten Ballueder |
ed1288ee | 5 | // Modified by: Francesco Montorsi |
8fa2e6a2 KB |
6 | // Created: 09.05.1999 |
7 | // RCS-ID: $Id$ | |
9d55bfef | 8 | // Copyright: (c) Karsten Ballueder |
65571936 | 9 | // Licence: wxWindows licence |
ed1288ee | 10 | /////////////////////////////////////////////////////////////////////////////// |
8fa2e6a2 KB |
11 | |
12 | #ifndef __PROGDLGH_G__ | |
13 | #define __PROGDLGH_G__ | |
14 | ||
0655ad29 | 15 | #include "wx/dialog.h" |
8fa2e6a2 | 16 | |
b5dbe15d | 17 | class WXDLLIMPEXP_FWD_CORE wxButton; |
7ad8a38a | 18 | class WXDLLIMPEXP_FWD_CORE wxEventLoop; |
b5dbe15d VS |
19 | class WXDLLIMPEXP_FWD_CORE wxGauge; |
20 | class WXDLLIMPEXP_FWD_CORE wxStaticText; | |
79e58a40 | 21 | class WXDLLIMPEXP_FWD_CORE wxWindowDisabler; |
0655ad29 | 22 | |
ed1288ee FM |
23 | /* |
24 | Progress dialog which shows a moving progress bar. | |
25 | Taken from the Mahogany project. | |
26 | */ | |
c31d9c7f | 27 | class WXDLLIMPEXP_CORE wxGenericProgressDialog : public wxDialog |
8fa2e6a2 | 28 | { |
8fa2e6a2 | 29 | public: |
f27f9577 | 30 | wxGenericProgressDialog(); |
c31d9c7f VZ |
31 | wxGenericProgressDialog(const wxString& title, const wxString& message, |
32 | int maximum = 100, | |
33 | wxWindow *parent = NULL, | |
34 | int style = wxPD_APP_MODAL | wxPD_AUTO_HIDE); | |
ed1288ee | 35 | |
c31d9c7f | 36 | virtual ~wxGenericProgressDialog(); |
695f550b | 37 | |
f27f9577 VZ |
38 | bool Create(const wxString& title, |
39 | const wxString& message, | |
40 | int maximum = 100, | |
41 | wxWindow *parent = NULL, | |
42 | int style = wxPD_APP_MODAL | wxPD_AUTO_HIDE); | |
43 | ||
695f550b | 44 | virtual bool Update(int value, const wxString& newmsg = wxEmptyString, bool *skip = NULL); |
f4aa7ec3 | 45 | virtual bool Pulse(const wxString& newmsg = wxEmptyString, bool *skip = NULL); |
fe8635a7 | 46 | |
695f550b | 47 | void Resume(); |
8fa2e6a2 | 48 | |
af237ae4 FM |
49 | int GetValue() const; |
50 | int GetRange() const; | |
51 | wxString GetMessage() const; | |
7d1dcec2 | 52 | |
ed1288ee FM |
53 | void SetRange(int maximum); |
54 | ||
f994a8ac VZ |
55 | // Return whether "Cancel" or "Skip" button was pressed, always return |
56 | // false if the corresponding button is not shown. | |
57 | bool WasCancelled() const; | |
58 | bool WasSkipped() const; | |
59 | ||
ed1288ee FM |
60 | // Must provide overload to avoid hiding it (and warnings about it) |
61 | virtual void Update() { wxDialog::Update(); } | |
62 | ||
63 | virtual bool Show( bool show = true ); | |
64 | ||
c31d9c7f VZ |
65 | // This enum is an implementation detail and should not be used |
66 | // by user code. | |
4f4d6f44 | 67 | enum State |
c31d9c7f VZ |
68 | { |
69 | Uncancelable = -1, // dialog can't be canceled | |
70 | Canceled, // can be cancelled and, in fact, was | |
71 | Continue, // can be cancelled but wasn't | |
cc31a982 VZ |
72 | Finished, // finished, waiting to be removed from screen |
73 | Dismissed // was closed by user after finishing | |
c31d9c7f VZ |
74 | }; |
75 | ||
ef8698d6 | 76 | protected: |
2de77c6a VZ |
77 | // Update just the m_maximum field, this is used by public SetRange() but, |
78 | // unlike it, doesn't update the controls state. This makes it useful for | |
79 | // both this class and its derived classes that don't use m_gauge to | |
80 | // display progress. | |
81 | void SetMaximum(int maximum); | |
82 | ||
c31d9c7f VZ |
83 | // Return the labels to use for showing the elapsed/estimated/remaining |
84 | // times respectively. | |
d20dfbf0 MB |
85 | static wxString GetElapsedLabel() { return wxGetTranslation("Elapsed time:"); } |
86 | static wxString GetEstimatedLabel() { return wxGetTranslation("Estimated time:"); } | |
87 | static wxString GetRemainingLabel() { return wxGetTranslation("Remaining time:"); } | |
c31d9c7f VZ |
88 | |
89 | ||
e77570de VZ |
90 | // Similar to wxWindow::HasFlag() but tests for a presence of a wxPD_XXX |
91 | // flag in our (separate) flags instead of using m_windowStyle. | |
92 | bool HasPDFlag(int flag) const { return (m_pdStyle & flag) != 0; } | |
93 | ||
94 | // Return the progress dialog style. Prefer to use HasPDFlag() if possible. | |
95 | int GetPDStyle() const { return m_pdStyle; } | |
f27f9577 | 96 | void SetPDStyle(int pdStyle) { m_pdStyle = pdStyle; } |
e77570de | 97 | |
c31d9c7f VZ |
98 | // Updates estimated times from a given progress bar value and stores the |
99 | // results in provided arguments. | |
100 | void UpdateTimeEstimates(int value, | |
101 | unsigned long &elapsedTime, | |
102 | unsigned long &estimatedTime, | |
103 | unsigned long &remainingTime); | |
104 | ||
105 | // Converts seconds to HH:mm:ss format. | |
106 | static wxString GetFormattedTime(unsigned long timeInSec); | |
107 | ||
695f550b VZ |
108 | // callback for optional abort button |
109 | void OnCancel(wxCommandEvent&); | |
ef8698d6 | 110 | |
695f550b VZ |
111 | // callback for optional skip button |
112 | void OnSkip(wxCommandEvent&); | |
ecda9475 | 113 | |
695f550b VZ |
114 | // callback to disable "hard" window closing |
115 | void OnClose(wxCloseEvent&); | |
8fa2e6a2 | 116 | |
c31d9c7f VZ |
117 | // called to disable the other windows while this dialog is shown |
118 | void DisableOtherWindows(); | |
119 | ||
695f550b VZ |
120 | // must be called to reenable the other windows temporarily disabled while |
121 | // the dialog was shown | |
122 | void ReenableOtherWindows(); | |
ef8698d6 | 123 | |
7e083675 VZ |
124 | // Set the top level parent we store from the parent window provided when |
125 | // creating the dialog. | |
126 | void SetTopParent(wxWindow* parent); | |
127 | ||
c31d9c7f VZ |
128 | // return the top level parent window of this dialog (may be NULL) |
129 | wxWindow *GetTopParent() const { return m_parentTop; } | |
130 | ||
131 | ||
132 | // continue processing or not (return value for Update()) | |
4f4d6f44 | 133 | State m_state; |
c31d9c7f VZ |
134 | |
135 | // the maximum value | |
136 | int m_maximum; | |
137 | ||
138 | #if defined(__WXMSW__ ) || defined(__WXPM__) | |
139 | // the factor we use to always keep the value in 16 bit range as the native | |
140 | // control only supports ranges from 0 to 65,535 | |
141 | size_t m_factor; | |
142 | #endif // __WXMSW__ | |
143 | ||
144 | // time when the dialog was created | |
145 | unsigned long m_timeStart; | |
146 | // time when the dialog was closed or cancelled | |
147 | unsigned long m_timeStop; | |
148 | // time between the moment the dialog was closed/cancelled and resume | |
149 | unsigned long m_break; | |
150 | ||
8fa2e6a2 | 151 | private: |
c31d9c7f VZ |
152 | // update the label to show the given time (in seconds) |
153 | static void SetTimeLabel(unsigned long val, wxStaticText *label); | |
154 | ||
155 | // common part of all ctors | |
f27f9577 | 156 | void Init(); |
c31d9c7f | 157 | |
695f550b VZ |
158 | // create the label with given text and another one to show the time nearby |
159 | // as the next windows in the sizer, returns the created control | |
160 | wxStaticText *CreateLabel(const wxString& text, wxSizer *sizer); | |
0655ad29 | 161 | |
fe8635a7 | 162 | // updates the label message |
695f550b VZ |
163 | void UpdateMessage(const wxString &newmsg); |
164 | ||
165 | // common part of Update() and Pulse(), returns true if not cancelled | |
86417abf VZ |
166 | bool DoBeforeUpdate(bool *skip); |
167 | ||
168 | // common part of Update() and Pulse() | |
169 | void DoAfterUpdate(); | |
695f550b VZ |
170 | |
171 | // shortcuts for enabling buttons | |
172 | void EnableClose(); | |
173 | void EnableSkip(bool enable = true); | |
174 | void EnableAbort(bool enable = true); | |
175 | void DisableSkip() { EnableSkip(false); } | |
176 | void DisableAbort() { EnableAbort(false); } | |
177 | ||
af237ae4 | 178 | // the widget displaying current status (may be NULL) |
695f550b VZ |
179 | wxGauge *m_gauge; |
180 | // the message displayed | |
181 | wxStaticText *m_msg; | |
182 | // displayed elapsed, estimated, remaining time | |
183 | wxStaticText *m_elapsed, | |
184 | *m_estimated, | |
185 | *m_remaining; | |
695f550b VZ |
186 | |
187 | // parent top level window (may be NULL) | |
188 | wxWindow *m_parentTop; | |
abceee76 | 189 | |
e77570de VZ |
190 | // Progress dialog styles: this is not the same as m_windowStyle because |
191 | // wxPD_XXX constants clash with the existing TLW styles so to be sure we | |
192 | // don't have any conflicts we just use a separate variable for storing | |
193 | // them. | |
194 | int m_pdStyle; | |
195 | ||
69c69546 WS |
196 | // skip some portion |
197 | bool m_skip; | |
ecda9475 WS |
198 | |
199 | #if !defined(__SMARTPHONE__) | |
69c69546 WS |
200 | // the abort and skip buttons (or NULL if none) |
201 | wxButton *m_btnAbort; | |
202 | wxButton *m_btnSkip; | |
ecda9475 | 203 | #endif |
cbc66a27 | 204 | |
69c69546 WS |
205 | // saves the time when elapsed time was updated so there is only one |
206 | // update per second | |
207 | unsigned long m_last_timeupdate; | |
c31d9c7f | 208 | |
69c69546 | 209 | // tells how often a change of the estimated time has to be confirmed |
c31d9c7f | 210 | // before it is actually displayed - this reduces the frequency of updates |
69c69546 | 211 | // of estimated and remaining time |
c31d9c7f VZ |
212 | int m_delay; |
213 | ||
69c69546 WS |
214 | // counts the confirmations |
215 | int m_ctdelay; | |
216 | unsigned long m_display_estimated; | |
8fa2e6a2 | 217 | |
69c69546 | 218 | // for wxPD_APP_MODAL case |
79e58a40 | 219 | wxWindowDisabler *m_winDisabler; |
cbc66a27 | 220 | |
7ad8a38a VZ |
221 | // Temporary event loop created by the dialog itself if there is no |
222 | // currently active loop when it is created. | |
223 | wxEventLoop *m_tempEventLoop; | |
224 | ||
225 | ||
69c69546 | 226 | DECLARE_EVENT_TABLE() |
c31d9c7f | 227 | wxDECLARE_NO_COPY_CLASS(wxGenericProgressDialog); |
8fa2e6a2 | 228 | }; |
ce4169a4 | 229 | |
555f645a | 230 | #endif // __PROGDLGH_G__ |