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