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