Support buttons.
[dcpomatic.git] / src / wx / job_view.cc
1 /*
2     Copyright (C) 2012-2018 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 "job_view.h"
22 #include "wx_util.h"
23 #include "message_dialog.h"
24 #include "static_text.h"
25 #include "check_box.h"
26 #include "dcpomatic_button.h"
27 #include "lib/job.h"
28 #include "lib/job_manager.h"
29 #include "lib/compose.hpp"
30 #include "lib/config.h"
31 #include "lib/send_notification_email_job.h"
32 #include "lib/transcode_job.h"
33 #include "lib/analyse_audio_job.h"
34 #include <wx/wx.h>
35
36 using std::string;
37 using std::min;
38 using boost::shared_ptr;
39 using boost::bind;
40 using boost::dynamic_pointer_cast;
41
42 JobView::JobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
43         : _job (job)
44         , _table (table)
45         , _parent (parent)
46         , _container (container)
47         , _gauge (0)
48 {
49
50 }
51
52 void
53 JobView::setup ()
54 {
55         int n = insert_position ();
56
57         _gauge_message = new wxBoxSizer (wxVERTICAL);
58         _gauge = new wxGauge (_container, wxID_ANY, 100);
59         /* This seems to be required to allow the gauge to shrink under OS X */
60         _gauge->SetMinSize (wxSize (0, -1));
61         _gauge_message->Add (_gauge, 0, wxEXPAND | wxLEFT | wxRIGHT);
62         _message = new StaticText (_container, wxT(" \n "), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_MIDDLE);
63         _gauge_message->Add (_message, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
64         _table->Insert (n, _gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
65         ++n;
66
67         _buttons = new wxBoxSizer (wxHORIZONTAL);
68
69         _cancel = new Button (_container, _("Cancel"));
70         _cancel->Bind (wxEVT_BUTTON, &JobView::cancel_clicked, this);
71         _buttons->Add (_cancel, 1, wxALIGN_CENTER_VERTICAL);
72
73         _details = new Button (_container, _("Details..."));
74         _details->Bind (wxEVT_BUTTON, &JobView::details_clicked, this);
75         _details->Enable (false);
76         _buttons->Add (_details, 1, wxALIGN_CENTER_VERTICAL);
77
78         finish_setup (_container, _buttons);
79
80         _controls = new wxBoxSizer (wxVERTICAL);
81         _controls->Add (_buttons);
82         _notify = new CheckBox (_container, _("Notify when complete"));
83         _notify->Bind (wxEVT_CHECKBOX, bind (&JobView::notify_clicked, this));
84         _notify->SetValue (Config::instance()->default_notify());
85         _controls->Add (_notify);
86
87         _table->Insert (n, _controls, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
88
89         _progress_connection = _job->Progress.connect (boost::bind (&JobView::progress, this));
90         _finished_connection = _job->Finished.connect (boost::bind (&JobView::finished, this));
91
92         progress ();
93
94         _table->Layout ();
95 }
96
97 void
98 JobView::maybe_pulse ()
99 {
100         if (_gauge && _job->running() && !_job->progress()) {
101                 _gauge->Pulse ();
102         }
103 }
104
105 void
106 JobView::progress ()
107 {
108         string whole = "<b>" + _job->name () + "</b>\n";
109         if (!_job->sub_name().empty ()) {
110                 whole += _job->sub_name() + " ";
111         }
112         whole += _job->status ();
113         if (whole != _last_message) {
114                 _message->SetLabelMarkup (std_to_wx (whole));
115                 /* This hack fixes the size of _message on OS X */
116                 _message->InvalidateBestSize ();
117                 _message->SetSize (_message->GetBestSize ());
118                 _gauge_message->Layout ();
119                 _last_message = whole;
120         }
121         if (_job->progress ()) {
122                 _gauge->SetValue (min (100.0f, _job->progress().get() * 100));
123         }
124 }
125
126 void
127 JobView::finished ()
128 {
129         progress ();
130
131         if (!_job->finished_cancelled ()) {
132                 _gauge->SetValue (100);
133         }
134
135         _cancel->Enable (false);
136         _notify->Enable (false);
137         if (!_job->error_details().empty ()) {
138                 _details->Enable (true);
139         }
140
141         if (_job->message()) {
142                 MessageDialog* d = new MessageDialog (_parent, _job->name(), _job->message().get());
143                 d->ShowModal ();
144                 d->Destroy ();
145         }
146
147         if ((dynamic_pointer_cast<TranscodeJob>(_job) || dynamic_pointer_cast<AnalyseAudioJob>(_job)) && _notify->GetValue()) {
148                 if (Config::instance()->notification(Config::MESSAGE_BOX)) {
149                         wxMessageBox (std_to_wx(_job->name() + ": " + _job->status()), _("DCP-o-matic"), wxICON_INFORMATION);
150                 }
151                 if (Config::instance()->notification(Config::EMAIL)) {
152                         string body = Config::instance()->notification_email();
153                         boost::algorithm::replace_all (body, "$JOB_NAME", _job->name());
154                         boost::algorithm::replace_all (body, "$JOB_STATUS", _job->status());
155                         JobManager::instance()->add_after (_job, shared_ptr<Job> (new SendNotificationEmailJob (body)));
156                 }
157         }
158 }
159
160 void
161 JobView::details_clicked (wxCommandEvent &)
162 {
163         string s = _job->error_summary();
164         s[0] = toupper (s[0]);
165         error_dialog (_parent, std_to_wx(s), std_to_wx(_job->error_details()));
166 }
167
168 void
169 JobView::cancel_clicked (wxCommandEvent &)
170 {
171         if (confirm_dialog (_parent, _("Are you sure you want to cancel this job?"))) {
172                 _job->cancel ();
173         }
174 }
175
176 void
177 JobView::insert (int pos)
178 {
179         _table->Insert (pos, _gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
180         _table->Insert (pos + 1, _controls, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
181         _table->Layout ();
182 }
183
184 void
185 JobView::detach ()
186 {
187         _table->Detach (_gauge_message);
188         _table->Detach (_controls);
189 }
190
191 void
192 JobView::notify_clicked ()
193 {
194         Config::instance()->set_default_notify (_notify->GetValue ());
195 }