X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fjob_manager_view.cc;h=42d5f9dbeb5e5aade18cec6c3216abc3ff4a5234;hp=e70622b30e8b0cb6c0e66b85f45e4265949ee437;hb=8f12e84009d7c2685bb2eeb32665876463d4e6e5;hpb=cc9bfc4b9974b81e7a653e84c8a894bbaae726ec diff --git a/src/wx/job_manager_view.cc b/src/wx/job_manager_view.cc index e70622b30..42d5f9dbe 100644 --- a/src/wx/job_manager_view.cc +++ b/src/wx/job_manager_view.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2017 Carl Hetherington This file is part of DCP-o-matic. @@ -23,13 +23,15 @@ */ #include "job_manager_view.h" -#include "job_view.h" +#include "batch_job_view.h" +#include "normal_job_view.h" #include "wx_util.h" #include "lib/job_manager.h" #include "lib/job.h" #include "lib/util.h" #include "lib/exceptions.h" #include "lib/compose.hpp" +#include #include using std::string; @@ -39,23 +41,23 @@ using std::min; using std::cout; using boost::shared_ptr; using boost::weak_ptr; +using boost::bind; /** @param parent Parent window. - * @param latest_at_top true to put the last-added job at the top of the view, - * false to put it at the bottom. + * @param batch true to use BatchJobView, false to use NormalJobView. * * Must be called in the GUI thread. */ -JobManagerView::JobManagerView (wxWindow* parent, bool latest_at_top) +JobManagerView::JobManagerView (wxWindow* parent, bool batch) : wxScrolledWindow (parent) - , _latest_at_top (latest_at_top) + , _batch (batch) { _panel = new wxPanel (this); wxSizer* sizer = new wxBoxSizer (wxVERTICAL); sizer->Add (_panel, 1, wxEXPAND); SetSizer (sizer); - _table = new wxFlexGridSizer (4, 4, 6); + _table = new wxFlexGridSizer (2, 6, 6); _table->AddGrowableCol (0, 1); _panel->SetSizer (_table); @@ -67,6 +69,7 @@ JobManagerView::JobManagerView (wxWindow* parent, bool latest_at_top) _timer->Start (1000); JobManager::instance()->JobAdded.connect (bind (&JobManagerView::job_added, this, _1)); + JobManager::instance()->JobsReordered.connect (bind (&JobManagerView::replace, this)); } void @@ -74,10 +77,18 @@ JobManagerView::job_added (weak_ptr j) { shared_ptr job = j.lock (); if (job) { - _job_records.push_back (shared_ptr (new JobView (job, this, _panel, _table, _latest_at_top))); + shared_ptr v; + if (_batch) { + v.reset (new BatchJobView (job, this, _panel, _table)); + } else { + v.reset (new NormalJobView (job, this, _panel, _table)); + } + v->setup (); + _job_records.push_back (v); } FitInside(); + job_list_changed (); } void @@ -87,3 +98,41 @@ JobManagerView::periodic () (*i)->maybe_pulse (); } } + +void +JobManagerView::replace () +{ + /* Make a new version of _job_records which reflects the order in JobManager's job list */ + + list > new_job_records; + + BOOST_FOREACH (shared_ptr i, JobManager::instance()->get()) { + /* Find this job's JobView */ + BOOST_FOREACH (shared_ptr j, _job_records) { + if (j->job() == i) { + new_job_records.push_back (j); + break; + } + } + } + + BOOST_FOREACH (shared_ptr i, _job_records) { + i->detach (); + } + + _job_records = new_job_records; + + BOOST_FOREACH (shared_ptr i, _job_records) { + i->insert (i->insert_position ()); + } + + job_list_changed (); +} + +void +JobManagerView::job_list_changed () +{ + BOOST_FOREACH (shared_ptr i, _job_records) { + i->job_list_changed (); + } +}