Confirm dialogue for job cancellation.
[dcpomatic.git] / src / wx / job_view.cc
1 /*
2     Copyright (C) 2012-2015 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 "lib/job.h"
24 #include "lib/compose.hpp"
25 #include <wx/wx.h>
26
27 using std::string;
28 using std::min;
29 using boost::shared_ptr;
30
31 JobView::JobView (shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table)
32         : _job (job)
33         , _parent (parent)
34 {
35         int n = 0;
36
37         _gauge_message = new wxBoxSizer (wxVERTICAL);
38         _gauge = new wxGauge (container, wxID_ANY, 100);
39         /* This seems to be required to allow the gauge to shrink under OS X */
40         _gauge->SetMinSize (wxSize (0, -1));
41         _gauge_message->Add (_gauge, 0, wxEXPAND | wxLEFT | wxRIGHT);
42         _message = new wxStaticText (container, wxID_ANY, wxT (" \n "));
43         _gauge_message->Add (_message, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
44         table->Insert (n, _gauge_message, 1, wxEXPAND | wxLEFT | wxRIGHT);
45         ++n;
46
47         _cancel = new wxButton (container, wxID_ANY, _("Cancel"));
48         _cancel->Bind (wxEVT_COMMAND_BUTTON_CLICKED, &JobView::cancel_clicked, this);
49         table->Insert (n, _cancel, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
50         ++n;
51
52         _pause = new wxButton (container, wxID_ANY, _("Pause"));
53         _pause->Bind (wxEVT_COMMAND_BUTTON_CLICKED, &JobView::pause_clicked, this);
54         table->Insert (n, _pause, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
55         ++n;
56
57         _details = new wxButton (container, wxID_ANY, _("Details..."));
58         _details->Bind (wxEVT_COMMAND_BUTTON_CLICKED, &JobView::details_clicked, this);
59         _details->Enable (false);
60         table->Insert (n, _details, 1, wxALIGN_CENTER_VERTICAL | wxALL, 3);
61         ++n;
62
63         _progress_connection = job->Progress.connect (boost::bind (&JobView::progress, this));
64         _finished_connection = job->Finished.connect (boost::bind (&JobView::finished, this));
65
66         progress ();
67
68         table->Layout ();
69 }
70
71 void
72 JobView::maybe_pulse ()
73 {
74         if (_job->running() && !_job->progress ()) {
75                 _gauge->Pulse ();
76         }
77 }
78
79 void
80 JobView::progress ()
81 {
82         string whole = "<b>" + _job->name () + "</b>\n";
83         if (!_job->sub_name().empty ()) {
84                 whole += _job->sub_name() + " ";
85         }
86         whole += _job->status ();
87         if (whole != _last_message) {
88                 _message->SetLabelMarkup (std_to_wx (whole));
89                 _gauge_message->Layout ();
90                 _last_message = whole;
91         }
92         if (_job->progress ()) {
93                 _gauge->SetValue (min (100.0f, _job->progress().get() * 100));
94         }
95 }
96
97 void
98 JobView::finished ()
99 {
100         progress ();
101
102         if (!_job->finished_cancelled ()) {
103                 _gauge->SetValue (100);
104         }
105
106         _cancel->Enable (false);
107         _pause->Enable (false);
108         if (!_job->error_details().empty ()) {
109                 _details->Enable (true);
110         }
111 }
112
113 void
114 JobView::details_clicked (wxCommandEvent &)
115 {
116         string s = _job->error_summary();
117         s[0] = toupper (s[0]);
118         error_dialog (_parent, std_to_wx (String::compose ("%1.\n\n%2", s, _job->error_details())));
119 }
120
121 void
122 JobView::cancel_clicked (wxCommandEvent &)
123 {
124         if (confirm_dialog (_parent, _("Are you sure you want to cancel this job?"))) {
125                 _job->cancel ();
126         }
127 }
128
129 void
130 JobView::pause_clicked (wxCommandEvent &)
131 {
132         if (_job->paused()) {
133                 _job->resume ();
134                 _pause->SetLabel (_("Pause"));
135         } else {
136                 _job->pause ();
137                 _pause->SetLabel (_("Resume"));
138         }
139 }