X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_view.cc;h=06d10401f578c23a980fc92279aceea1d380930b;hb=bad190166f2126b67a39a01852a2006a3b5fe3fe;hp=52c975beefaa38d5754d7292dfbba1b535b28260;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/wx/job_view.cc b/src/wx/job_view.cc index 52c975bee..06d10401f 100644 --- a/src/wx/job_view.cc +++ b/src/wx/job_view.cc @@ -18,6 +18,7 @@ */ + #include "job_view.h" #include "wx_util.h" #include "message_dialog.h" @@ -34,11 +35,12 @@ #include #include + using std::string; using std::min; using std::shared_ptr; using boost::bind; -using std::dynamic_pointer_cast; + JobView::JobView (shared_ptr job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table) : _job (job) @@ -50,6 +52,7 @@ JobView::JobView (shared_ptr job, wxWindow* parent, wxWindow* container, wx } + void JobView::setup () { @@ -95,14 +98,19 @@ JobView::setup () _table->Layout (); } + void JobView::maybe_pulse () { - if (_gauge && _job->running() && !_job->progress()) { - _gauge->Pulse (); + if (_gauge && _job->running()) { + auto elapsed = _job->seconds_since_last_progress_update(); + if (!_job->progress() || !elapsed || *elapsed > 2) { + _gauge->Pulse (); + } } } + void JobView::progress () { @@ -110,7 +118,7 @@ JobView::progress () if (!_job->sub_name().empty ()) { whole += _job->sub_name() + " "; } - string s = _job->status (); + auto s = _job->status (); /* Watch out for < > in the error string */ boost::algorithm::replace_all (s, "<", "<"); boost::algorithm::replace_all (s, ">", ">"); @@ -128,6 +136,7 @@ JobView::progress () } } + void JobView::finished () { @@ -144,12 +153,12 @@ JobView::finished () } if (_job->message()) { - MessageDialog* d = new MessageDialog (_parent, _job->name(), _job->message().get()); + auto d = new MessageDialog (_parent, std_to_wx(_job->name()), std_to_wx(_job->message().get())); d->ShowModal (); d->Destroy (); } - if ((dynamic_pointer_cast(_job) || dynamic_pointer_cast(_job)) && _notify->GetValue()) { + if (_job->enable_notify() && _notify->GetValue()) { if (Config::instance()->notification(Config::MESSAGE_BOX)) { wxMessageBox (std_to_wx(_job->name() + ": " + _job->status()), _("DCP-o-matic"), wxICON_INFORMATION); } @@ -162,14 +171,16 @@ JobView::finished () } } + void JobView::details_clicked (wxCommandEvent &) { - string s = _job->error_summary(); + auto s = _job->error_summary(); s[0] = toupper (s[0]); error_dialog (_parent, std_to_wx(s), std_to_wx(_job->error_details())); } + void JobView::cancel_clicked (wxCommandEvent &) { @@ -178,6 +189,7 @@ JobView::cancel_clicked (wxCommandEvent &) } } + void JobView::insert (int pos) { @@ -186,6 +198,7 @@ JobView::insert (int pos) _table->Layout (); } + void JobView::detach () { @@ -193,6 +206,7 @@ JobView::detach () _table->Detach (_controls); } + void JobView::notify_clicked () {