1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/progdlgg.cpp
3 // Purpose: wxGenericProgressDialog class
4 // Author: Karsten Ballueder
8 // Copyright: (c) Karsten Ballueder
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
32 #include "wx/button.h"
33 #include "wx/stattext.h"
38 #include "wx/dcclient.h"
40 #include "wx/settings.h"
44 #include "wx/progdlg.h"
45 #include "wx/evtloop.h"
47 // ---------------------------------------------------------------------------
49 // ---------------------------------------------------------------------------
51 /* Macro for avoiding #ifdefs when value have to be different depending on size of
52 device we display on - take it from something like wxDesktopPolicy in the future
55 #if defined(__SMARTPHONE__)
56 #define wxLARGESMALL(large,small) small
58 #define wxLARGESMALL(large,small) large
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 #define LAYOUT_MARGIN wxLARGESMALL(8,2)
67 static const int wxID_SKIP
= 32000; // whatever
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 BEGIN_EVENT_TABLE(wxGenericProgressDialog
, wxDialog
)
74 EVT_BUTTON(wxID_CANCEL
, wxGenericProgressDialog::OnCancel
)
75 EVT_BUTTON(wxID_SKIP
, wxGenericProgressDialog::OnSkip
)
77 EVT_CLOSE(wxGenericProgressDialog::OnClose
)
80 // ============================================================================
81 // wxGenericProgressDialog implementation
82 // ============================================================================
84 wxIMPLEMENT_CLASS(wxProgressDialog
, wxDialog
)
86 // ----------------------------------------------------------------------------
87 // wxGenericProgressDialog creation
88 // ----------------------------------------------------------------------------
90 void wxGenericProgressDialog::Init(wxWindow
*parent
, int maximum
, int style
)
92 // Initialize the inherited members that we always use (even when we don't
93 // create a valid window here).
95 // we may disappear at any moment, let the others know about it
96 SetExtraStyle(GetExtraStyle() | wxWS_EX_TRANSIENT
);
97 m_windowStyle
|= style
;
99 m_parentTop
= wxGetTopLevelParent(parent
);
102 // Initialize our own members.
103 m_state
= Uncancelable
;
106 #if defined(__WXMSW__) || defined(__WXPM__)
107 // we can't have values > 65,536 in the progress control under Windows, so
108 // scale everything down
109 m_factor
= m_maximum
/ 65536 + 1;
110 m_maximum
/= m_factor
;
114 m_timeStart
= wxGetCurrentTime();
115 m_timeStop
= (unsigned long)-1;
120 m_display_estimated
=
127 m_hasSkipButton
= false;
129 m_winDisabler
= NULL
;
130 m_tempEventLoop
= NULL
;
133 wxGenericProgressDialog::wxGenericProgressDialog(wxWindow
*parent
,
138 Init(parent
, maximum
, style
);
141 wxGenericProgressDialog::wxGenericProgressDialog(const wxString
& title
,
142 const wxString
& message
,
148 Init(parent
, maximum
, style
);
150 Create( title
, message
, maximum
, parent
, style
);
153 void wxGenericProgressDialog::Create( const wxString
& title
,
154 const wxString
& message
,
159 wxDialog::Create(GetParentForModalDialog(parent
, style
), wxID_ANY
, title
);
161 SetParent( GetParentForModalDialog(parent
, style
) );
164 // We need a running event loop in order to update the dialog and be able
165 // to process clicks on its buttons, so ensure that there is one running
166 // even if this means we have to start it ourselves (this happens most
167 // commonly during the program initialization, e.g. for the progress
168 // dialogs shown from overridden wxApp::OnInit()).
169 if ( !wxEventLoopBase::GetActive() )
171 m_tempEventLoop
= new wxEventLoop
;
172 wxEventLoop::SetActive(m_tempEventLoop
);
175 m_hasAbortButton
= (style
& wxPD_CAN_ABORT
) != 0;
176 m_hasSkipButton
= (style
& wxPD_CAN_SKIP
) != 0;
178 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
179 // we have to remove the "Close" button from the title bar then as it is
180 // confusing to have it - it doesn't work anyhow
182 // FIXME: should probably have a (extended?) window style for this
183 if ( !m_hasAbortButton
)
185 EnableCloseButton(false);
189 #if defined(__SMARTPHONE__)
193 m_state
= m_hasAbortButton
? Continue
: Uncancelable
;
195 // top-level sizerTop
196 wxSizer
* const sizerTop
= new wxBoxSizer(wxVERTICAL
);
198 m_msg
= new wxStaticText(this, wxID_ANY
, message
);
199 sizerTop
->Add(m_msg
, 0, wxLEFT
| wxTOP
, 2*LAYOUT_MARGIN
);
203 int gauge_style
= wxGA_HORIZONTAL
;
204 if ( style
& wxPD_SMOOTH
)
205 gauge_style
|= wxGA_SMOOTH
;
206 m_gauge
= new wxGauge
212 // make the progress bar sufficiently long
213 wxSize(wxMin(wxGetClientDisplayRect().width
/3, 300), -1),
217 sizerTop
->Add(m_gauge
, 0, wxLEFT
| wxRIGHT
| wxTOP
| wxEXPAND
, 2*LAYOUT_MARGIN
);
218 m_gauge
->SetValue(0);
225 // create the estimated/remaining/total time zones if requested
230 // also count how many labels we really have
231 size_t nTimeLabels
= 0;
233 wxSizer
* const sizerLabels
= new wxFlexGridSizer(2);
235 if ( style
& wxPD_ELAPSED_TIME
)
239 m_elapsed
= CreateLabel(GetElapsedLabel(), sizerLabels
);
242 if ( style
& wxPD_ESTIMATED_TIME
)
246 m_estimated
= CreateLabel(GetEstimatedLabel(), sizerLabels
);
249 if ( style
& wxPD_REMAINING_TIME
)
253 m_remaining
= CreateLabel(GetRemainingLabel(), sizerLabels
);
255 sizerTop
->Add(sizerLabels
, 0, wxALIGN_CENTER_HORIZONTAL
| wxTOP
, LAYOUT_MARGIN
);
257 #if defined(__SMARTPHONE__)
258 if ( m_hasSkipButton
)
259 SetRightMenu(wxID_SKIP
, _("Skip"));
260 if ( m_hasAbortButton
)
261 SetLeftMenu(wxID_CANCEL
);
266 wxBoxSizer
*buttonSizer
= new wxBoxSizer(wxHORIZONTAL
);
268 // Windows dialogs usually have buttons in the lower right corner
269 const int sizerFlags
=
270 #if defined(__WXMSW__) || defined(__WXPM__)
271 wxALIGN_RIGHT
| wxALL
273 wxALIGN_CENTER_HORIZONTAL
| wxBOTTOM
| wxTOP
277 if ( m_hasSkipButton
)
279 m_btnSkip
= new wxButton(this, wxID_SKIP
, _("&Skip"));
281 buttonSizer
->Add(m_btnSkip
, 0, sizerFlags
, LAYOUT_MARGIN
);
284 if ( m_hasAbortButton
)
286 m_btnAbort
= new wxButton(this, wxID_CANCEL
);
288 buttonSizer
->Add(m_btnAbort
, 0, sizerFlags
, LAYOUT_MARGIN
);
291 if (!m_hasSkipButton
&& !m_hasAbortButton
)
292 buttonSizer
->AddSpacer(LAYOUT_MARGIN
);
294 sizerTop
->Add(buttonSizer
, 0, sizerFlags
, LAYOUT_MARGIN
);
295 #endif // __SMARTPHONE__/!__SMARTPHONE__
297 SetSizerAndFit(sizerTop
);
299 Centre(wxCENTER_FRAME
| wxBOTH
);
301 DisableOtherWindows();
306 // this one can be initialized even if the others are unknown for now
308 // NB: do it after calling Layout() to keep the labels correctly aligned
311 SetTimeLabel(0, m_elapsed
);
317 void wxGenericProgressDialog::UpdateTimeEstimates(int value
,
318 unsigned long &elapsedTime
,
319 unsigned long &estimatedTime
,
320 unsigned long &remainingTime
)
322 unsigned long elapsed
= wxGetCurrentTime() - m_timeStart
;
323 if ( value
!= 0 && (m_last_timeupdate
< elapsed
|| value
== m_maximum
) )
325 m_last_timeupdate
= elapsed
;
326 unsigned long estimated
= m_break
+
327 (unsigned long)(( (double) (elapsed
-m_break
) * m_maximum
) / ((double)value
)) ;
328 if ( estimated
> m_display_estimated
334 else if ( estimated
< m_display_estimated
344 if ( m_ctdelay
>= m_delay
// enough confirmations for a higher value
345 || m_ctdelay
<= (m_delay
*-1) // enough confirmations for a lower value
346 || value
== m_maximum
// to stay consistent
347 || elapsed
> m_display_estimated
// to stay consistent
348 || ( elapsed
> 0 && elapsed
< 4 ) // additional updates in the beginning
351 m_display_estimated
= estimated
;
358 long display_remaining
= m_display_estimated
- elapsed
;
359 if ( display_remaining
< 0 )
361 display_remaining
= 0;
364 estimatedTime
= m_display_estimated
;
365 remainingTime
= display_remaining
;
368 elapsedTime
= elapsed
;
372 wxString
wxGenericProgressDialog::GetFormattedTime(unsigned long timeInSec
)
376 if ( timeInSec
== (unsigned long)-1 )
378 timeAsHMS
= _("Unknown");
382 unsigned hours
= timeInSec
/ 3600;
383 unsigned minutes
= (timeInSec
% 3600) / 60;
384 unsigned seconds
= timeInSec
% 60;
385 timeAsHMS
.Printf("%u:%02u:%02u", hours
, minutes
, seconds
);
392 wxGenericProgressDialog::CreateLabel(const wxString
& text
, wxSizer
*sizer
)
394 wxStaticText
*label
= new wxStaticText(this, wxID_ANY
, text
);
395 wxStaticText
*value
= new wxStaticText(this, wxID_ANY
, _("unknown"));
397 // select placement most native or nice on target GUI
398 #if defined(__SMARTPHONE__)
399 // value and time to the left in two rows
400 sizer
->Add(label
, 1, wxALIGN_LEFT
);
401 sizer
->Add(value
, 1, wxALIGN_LEFT
);
402 #elif defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__) || defined(__WXGTK20__)
403 // value and time centered in one row
404 sizer
->Add(label
, 1, wxLARGESMALL(wxALIGN_RIGHT
,wxALIGN_LEFT
) | wxTOP
| wxRIGHT
, LAYOUT_MARGIN
);
405 sizer
->Add(value
, 1, wxALIGN_LEFT
| wxTOP
, LAYOUT_MARGIN
);
407 // value and time to the right in one row
409 sizer
->Add(value
, 0, wxLEFT
, LAYOUT_MARGIN
);
415 // ----------------------------------------------------------------------------
416 // wxGenericProgressDialog operations
417 // ----------------------------------------------------------------------------
420 wxGenericProgressDialog::Update(int value
, const wxString
& newmsg
, bool *skip
)
422 if ( !DoBeforeUpdate(skip
) )
425 wxASSERT_MSG( value
== -1 || m_gauge
, wxT("cannot update non existent dialog") );
431 wxASSERT_MSG( value
<= m_maximum
, wxT("invalid progress value") );
434 m_gauge
->SetValue(value
);
436 UpdateMessage(newmsg
);
438 if ( (m_elapsed
|| m_remaining
|| m_estimated
) && (value
!= 0) )
440 unsigned long elapsed
;
441 unsigned long display_remaining
;
443 UpdateTimeEstimates( value
,
448 SetTimeLabel(elapsed
, m_elapsed
);
449 SetTimeLabel(m_display_estimated
, m_estimated
);
450 SetTimeLabel(display_remaining
, m_remaining
);
453 if ( value
== m_maximum
)
455 if ( m_state
== Finished
)
457 // ignore multiple calls to Update(m_maximum): it may sometimes be
458 // troublesome to ensure that Update() is not called twice with the
459 // same value (e.g. because of the rounding errors) and if we don't
460 // return now we're going to generate asserts below
464 // so that we return true below and that out [Cancel] handler knew what
467 if( !HasFlag(wxPD_AUTO_HIDE
) )
471 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
475 if ( newmsg
.empty() )
477 // also provide the finishing message if the application didn't
478 m_msg
->SetLabel(_("Done."));
481 // allow the window to repaint:
482 // NOTE: since we yield only for UI events with this call, there
483 // should be no side-effects
484 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI
);
486 // NOTE: this call results in a new event loop being created
487 // and to a call to ProcessPendingEvents() (which may generate
488 // unwanted re-entrancies).
493 // reenable other windows before hiding this one because otherwise
494 // Windows wouldn't give the focus back to the window which had
495 // been previously focused because it would still be disabled
496 ReenableOtherWindows();
501 else // not at maximum yet
506 // update the display in case yielding above didn't do it
509 return m_state
!= Canceled
;
512 bool wxGenericProgressDialog::Pulse(const wxString
& newmsg
, bool *skip
)
514 if ( !DoBeforeUpdate(skip
) )
517 wxASSERT_MSG( m_gauge
, wxT("cannot update non existent dialog") );
519 // show a bit of progress
522 UpdateMessage(newmsg
);
524 if (m_elapsed
|| m_remaining
|| m_estimated
)
526 unsigned long elapsed
= wxGetCurrentTime() - m_timeStart
;
528 SetTimeLabel(elapsed
, m_elapsed
);
529 SetTimeLabel((unsigned long)-1, m_estimated
);
530 SetTimeLabel((unsigned long)-1, m_remaining
);
535 return m_state
!= Canceled
;
538 bool wxGenericProgressDialog::DoBeforeUpdate(bool *skip
)
540 // we have to yield because not only we want to update the display but
541 // also to process the clicks on the cancel and skip buttons
542 // NOTE: using YieldFor() this call shouldn't give re-entrancy problems
543 // for event handlers not interested to UI/user-input events.
544 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI
|wxEVT_CATEGORY_USER_INPUT
);
548 if ( m_skip
&& skip
&& !*skip
)
555 return m_state
!= Canceled
;
558 void wxGenericProgressDialog::DoAfterUpdate()
560 // allow the window to repaint:
561 // NOTE: since we yield only for UI events with this call, there
562 // should be no side-effects
563 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI
);
566 void wxGenericProgressDialog::Resume()
569 m_ctdelay
= m_delay
; // force an update of the elapsed/estimated/remaining time
570 m_break
+= wxGetCurrentTime()-m_timeStop
;
577 bool wxGenericProgressDialog::Show( bool show
)
579 // reenable other windows before hiding this one because otherwise
580 // Windows wouldn't give the focus back to the window which had
581 // been previously focused because it would still be disabled
583 ReenableOtherWindows();
585 return wxDialog::Show(show
);
588 int wxGenericProgressDialog::GetValue() const
591 return m_gauge
->GetValue();
595 int wxGenericProgressDialog::GetRange() const
598 return m_gauge
->GetRange();
602 wxString
wxGenericProgressDialog::GetMessage() const
604 return m_msg
->GetLabel();
607 void wxGenericProgressDialog::SetRange(int maximum
)
609 wxASSERT_MSG(m_gauge
, "The dialog should have been constructed with a range > 0");
610 wxASSERT_MSG(maximum
> 0, "Invalid range");
612 m_gauge
->SetRange(maximum
);
615 #if defined(__WXMSW__) || defined(__WXPM__)
616 // we can't have values > 65,536 in the progress control under Windows, so
617 // scale everything down
618 m_factor
= m_maximum
/ 65536 + 1;
619 m_maximum
/= m_factor
;
624 bool wxGenericProgressDialog::WasCancelled() const
626 return m_hasAbortButton
&& m_state
== Canceled
;
629 bool wxGenericProgressDialog::WasSkipped() const
631 return m_hasSkipButton
&& m_skip
;
635 void wxGenericProgressDialog::SetTimeLabel(unsigned long val
,
642 if (val
!= (unsigned long)-1)
644 s
= GetFormattedTime(val
);
651 if ( s
!= label
->GetLabel() )
656 // ----------------------------------------------------------------------------
658 // ----------------------------------------------------------------------------
660 void wxGenericProgressDialog::OnCancel(wxCommandEvent
& event
)
662 if ( m_state
== Finished
)
664 // this means that the count down is already finished and we're being
665 // shown as a modal dialog - so just let the default handler do the job
670 // request to cancel was received, the next time Update() is called we
674 // update the buttons state immediately so that the user knows that the
675 // request has been noticed
679 // save the time when the dialog was stopped
680 m_timeStop
= wxGetCurrentTime();
684 void wxGenericProgressDialog::OnSkip(wxCommandEvent
& WXUNUSED(event
))
690 void wxGenericProgressDialog::OnClose(wxCloseEvent
& event
)
692 if ( m_state
== Uncancelable
)
694 // can't close this dialog
697 else if ( m_state
== Finished
)
699 // let the default handler close the window as we already terminated
704 // next Update() will notice it
709 m_timeStop
= wxGetCurrentTime();
713 // ----------------------------------------------------------------------------
715 // ----------------------------------------------------------------------------
717 wxGenericProgressDialog::~wxGenericProgressDialog()
719 // normally this should have been already done, but just in case
720 ReenableOtherWindows();
722 if ( m_tempEventLoop
)
724 wxEventLoopBase::SetActive(NULL
);
725 delete m_tempEventLoop
;
729 void wxGenericProgressDialog::DisableOtherWindows()
731 if ( HasFlag(wxPD_APP_MODAL
) )
733 m_winDisabler
= new wxWindowDisabler(this);
738 m_parentTop
->Disable();
739 m_winDisabler
= NULL
;
743 void wxGenericProgressDialog::ReenableOtherWindows()
745 if ( HasFlag(wxPD_APP_MODAL
) )
747 wxDELETE(m_winDisabler
);
752 m_parentTop
->Enable();
756 // ----------------------------------------------------------------------------
758 // ----------------------------------------------------------------------------
760 void wxGenericProgressDialog::EnableSkip(bool enable
)
764 #ifdef __SMARTPHONE__
766 SetRightMenu(wxID_SKIP
, _("Skip"));
771 m_btnSkip
->Enable(enable
);
776 void wxGenericProgressDialog::EnableAbort(bool enable
)
780 #ifdef __SMARTPHONE__
782 SetLeftMenu(wxID_CANCEL
); // stock buttons makes Cancel label
787 m_btnAbort
->Enable(enable
);
792 void wxGenericProgressDialog::EnableClose()
796 #ifdef __SMARTPHONE__
797 SetLeftMenu(wxID_CANCEL
, _("Close"));
801 m_btnAbort
->Enable();
802 m_btnAbort
->SetLabel(_("Close"));
808 void wxGenericProgressDialog::UpdateMessage(const wxString
&newmsg
)
810 if ( !newmsg
.empty() && newmsg
!= m_msg
->GetLabel() )
812 m_msg
->SetLabel(newmsg
);
814 // allow the window to repaint:
815 // NOTE: since we yield only for UI events with this call, there
816 // should be no side-effects
817 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI
);
821 #endif // wxUSE_PROGRESSDLG