Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / wx / batch_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 "batch_job_view.h"
22 #include "dcpomatic_button.h"
23 #include "lib/job_manager.h"
24 #include <wx/sizer.h>
25 #include <wx/button.h>
26
27 using std::list;
28 using boost::shared_ptr;
29
30 BatchJobView::BatchJobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
31         : JobView (job, parent, container, table)
32 {
33
34 }
35
36 int
37 BatchJobView::insert_position () const
38 {
39         return _table->GetEffectiveRowsCount() * _table->GetEffectiveColsCount();
40 }
41
42 void
43 BatchJobView::finish_setup (wxWindow* parent, wxSizer* sizer)
44 {
45         _higher_priority = new Button (parent, _("Higher priority"));
46         _higher_priority->Bind (wxEVT_BUTTON, boost::bind (&BatchJobView::higher_priority_clicked, this));
47         sizer->Add (_higher_priority, 1, wxALIGN_CENTER_VERTICAL);
48         _lower_priority = new Button (parent, _("Lower priority"));
49         _lower_priority->Bind (wxEVT_BUTTON, boost::bind (&BatchJobView::lower_priority_clicked, this));
50         sizer->Add (_lower_priority, 1, wxALIGN_CENTER_VERTICAL);
51 }
52 void
53 BatchJobView::higher_priority_clicked ()
54 {
55         JobManager::instance()->increase_priority (_job);
56 }
57
58 void
59 BatchJobView::lower_priority_clicked ()
60 {
61         JobManager::instance()->decrease_priority (_job);
62 }
63
64 void
65 BatchJobView::job_list_changed ()
66 {
67         bool high = false;
68         bool low = false;
69         list<shared_ptr<Job> > jobs = JobManager::instance()->get();
70         if (!jobs.empty ()) {
71                 if (_job != jobs.front()) {
72                         high = true;
73                 }
74                 if (_job != jobs.back()) {
75                         low = true;
76                 }
77         }
78
79         _higher_priority->Enable (high);
80         _lower_priority->Enable (low);
81 }