Fix various bad automatic merges in i18n files.
[dcpomatic.git] / src / wx / job_manager_view.cc
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/job_manager_view.cc
22  *  @brief Class generating a GTK widget to show the progress of jobs.
23  */
24
25 #include "job_manager_view.h"
26 #include "batch_job_view.h"
27 #include "normal_job_view.h"
28 #include "wx_util.h"
29 #include "lib/job_manager.h"
30 #include "lib/job.h"
31 #include "lib/util.h"
32 #include "lib/exceptions.h"
33 #include "lib/compose.hpp"
34 #include <iostream>
35
36 using std::string;
37 using std::list;
38 using std::map;
39 using std::min;
40 using std::cout;
41 using boost::shared_ptr;
42 using boost::weak_ptr;
43
44 /** @param parent Parent window.
45  *  @param batch true to use BatchJobView, false to use NormalJobView.
46  *
47  *  Must be called in the GUI thread.
48  */
49 JobManagerView::JobManagerView (wxWindow* parent, bool batch)
50         : wxScrolledWindow (parent)
51         , _batch (batch)
52 {
53         _panel = new wxPanel (this);
54         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
55         sizer->Add (_panel, 1, wxEXPAND);
56         SetSizer (sizer);
57
58         _table = new wxFlexGridSizer (2, 6, 6);
59         _table->AddGrowableCol (0, 1);
60         _panel->SetSizer (_table);
61
62         SetScrollRate (0, 32);
63         EnableScrolling (false, true);
64
65         Bind (wxEVT_TIMER, boost::bind (&JobManagerView::periodic, this));
66         _timer.reset (new wxTimer (this));
67         _timer->Start (1000);
68
69         JobManager::instance()->JobAdded.connect (bind (&JobManagerView::job_added, this, _1));
70 }
71
72 void
73 JobManagerView::job_added (weak_ptr<Job> j)
74 {
75         shared_ptr<Job> job = j.lock ();
76         if (job) {
77                 shared_ptr<JobView> v;
78                 if (_batch) {
79                         v.reset (new BatchJobView (job, this, _panel, _table));
80                 } else {
81                         v.reset (new NormalJobView (job, this, _panel, _table));
82                 }
83                 v->setup ();
84                 _job_records.push_back (v);
85         }
86
87         FitInside();
88 }
89
90 void
91 JobManagerView::periodic ()
92 {
93         for (list<shared_ptr<JobView> >::iterator i = _job_records.begin(); i != _job_records.end(); ++i) {
94                 (*i)->maybe_pulse ();
95         }
96 }