Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / wx / job_manager_view.cc
index b32c695a907fa7e9b77c5bb0c4a0607a90a1bd70..42d5f9dbeb5e5aade18cec6c3216abc3ff4a5234 100644 (file)
@@ -1,19 +1,20 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    This program is distributed in the hope that it will be useful,
+    DCP-o-matic is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
  */
 
 #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 <boost/foreach.hpp>
 #include <iostream>
 
 using std::string;
@@ -38,17 +41,23 @@ using std::min;
 using std::cout;
 using boost::shared_ptr;
 using boost::weak_ptr;
+using boost::bind;
 
-/** Must be called in the GUI thread */
-JobManagerView::JobManagerView (wxWindow* parent)
+/** @param parent Parent window.
+ *  @param batch true to use BatchJobView, false to use NormalJobView.
+ *
+ *  Must be called in the GUI thread.
+ */
+JobManagerView::JobManagerView (wxWindow* parent, bool batch)
        : wxScrolledWindow (parent)
+       , _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);
 
@@ -60,6 +69,7 @@ JobManagerView::JobManagerView (wxWindow* parent)
        _timer->Start (1000);
 
        JobManager::instance()->JobAdded.connect (bind (&JobManagerView::job_added, this, _1));
+       JobManager::instance()->JobsReordered.connect (bind (&JobManagerView::replace, this));
 }
 
 void
@@ -67,8 +77,18 @@ JobManagerView::job_added (weak_ptr<Job> j)
 {
        shared_ptr<Job> job = j.lock ();
        if (job) {
-               _job_records.push_back (shared_ptr<JobView> (new JobView (job, this, _panel, _table)));
+               shared_ptr<JobView> 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
@@ -78,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<shared_ptr<JobView> > new_job_records;
+
+       BOOST_FOREACH (shared_ptr<Job> i, JobManager::instance()->get()) {
+               /* Find this job's JobView */
+               BOOST_FOREACH (shared_ptr<JobView> j, _job_records) {
+                       if (j->job() == i) {
+                               new_job_records.push_back (j);
+                               break;
+                       }
+               }
+       }
+
+       BOOST_FOREACH (shared_ptr<JobView> i, _job_records) {
+               i->detach ();
+       }
+
+       _job_records = new_job_records;
+
+       BOOST_FOREACH (shared_ptr<JobView> i, _job_records) {
+               i->insert (i->insert_position ());
+       }
+
+       job_list_changed ();
+}
+
+void
+JobManagerView::job_list_changed ()
+{
+       BOOST_FOREACH (shared_ptr<JobView> i, _job_records) {
+               i->job_list_changed ();
+       }
+}