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