C++11 tidying.
[dcpomatic.git] / src / wx / normal_job_view.cc
1 /*
2     Copyright (C) 2012-2021 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
22 #include "normal_job_view.h"
23 #include "dcpomatic_button.h"
24 #include "lib/job.h"
25 #include <wx/wx.h>
26
27
28 using std::shared_ptr;
29
30
31 NormalJobView::NormalJobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
32         : JobView (job, parent, container, table)
33 {
34
35 }
36
37
38 void
39 NormalJobView::finish_setup (wxWindow* parent, wxSizer* sizer)
40 {
41         _pause = new Button (parent, _("Pause"));
42         _pause->Bind (wxEVT_BUTTON, boost::bind (&NormalJobView::pause_clicked, this));
43         sizer->Add (_pause, 1, wxALIGN_CENTER_VERTICAL);
44 }
45
46 int
47
48 NormalJobView::insert_position () const
49 {
50         return 0;
51 }
52
53
54 void
55 NormalJobView::pause_clicked ()
56 {
57         if (_job->paused_by_user()) {
58                 _job->resume ();
59                 _pause->SetLabel (_("Pause"));
60         } else {
61                 _job->pause_by_user ();
62                 _pause->SetLabel (_("Resume"));
63         }
64 }
65
66
67 void
68 NormalJobView::finished ()
69 {
70         JobView::finished ();
71         _pause->Enable (false);
72 }