Use make_shared<>.
[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 widget to show the progress of jobs.
23  */
24
25 #include "job_manager_view.h"
26 #include "job_view.h"
27 #include "wx_util.h"
28 #include "lib/job_manager.h"
29 #include "lib/job.h"
30 #include "lib/util.h"
31 #include "lib/exceptions.h"
32 #include "lib/compose.hpp"
33 #include <boost/make_shared.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::make_shared;
43 using boost::weak_ptr;
44
45 /** Must be called in the GUI thread */
46 JobManagerView::JobManagerView (wxWindow* parent)
47         : wxScrolledWindow (parent)
48 {
49         _panel = new wxPanel (this);
50         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
51         sizer->Add (_panel, 1, wxEXPAND);
52         SetSizer (sizer);
53
54         _table = new wxFlexGridSizer (4, 4, 6);
55         _table->AddGrowableCol (0, 1);
56         _panel->SetSizer (_table);
57
58         SetScrollRate (0, 32);
59         EnableScrolling (false, true);
60
61         Bind (wxEVT_TIMER, boost::bind (&JobManagerView::periodic, this));
62         _timer.reset (new wxTimer (this));
63         _timer->Start (1000);
64
65         JobManager::instance()->JobAdded.connect (bind (&JobManagerView::job_added, this, _1));
66 }
67
68 void
69 JobManagerView::job_added (weak_ptr<Job> j)
70 {
71         shared_ptr<Job> job = j.lock ();
72         if (job) {
73                 _job_records.push_back (make_shared<JobView> (job, this, _panel, _table));
74         }
75 }
76
77 void
78 JobManagerView::periodic ()
79 {
80         for (list<shared_ptr<JobView> >::iterator i = _job_records.begin(); i != _job_records.end(); ++i) {
81                 (*i)->maybe_pulse ();
82         }
83 }