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