C++11 tidying.
[dcpomatic.git] / src / wx / job_view_dialog.cc
1 /*
2     Copyright (C) 2015-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 "job_view_dialog.h"
23 #include "normal_job_view.h"
24 #include "lib/job.h"
25
26
27 using std::shared_ptr;
28
29
30 JobViewDialog::JobViewDialog (wxWindow* parent, wxString title, shared_ptr<Job> job)
31         : TableDialog (parent, title, 4, 0, false)
32         , _job (job)
33 {
34         _view = new NormalJobView (job, this, this, _table);
35         _view->setup ();
36         layout ();
37         SetMinSize (wxSize (960, -1));
38
39         Bind (wxEVT_TIMER, boost::bind(&JobViewDialog::periodic, this));
40         _timer.reset (new wxTimer(this));
41         _timer->Start (1000);
42
43         /* Start off with OK disabled and it will be enabled when the job is finished */
44         auto ok = dynamic_cast<wxButton *>(FindWindowById(wxID_OK, this));
45         if (ok) {
46                 ok->Enable (false);
47         }
48 }
49
50
51 JobViewDialog::~JobViewDialog ()
52 {
53         delete _view;
54 }
55
56
57 void
58 JobViewDialog::periodic ()
59 {
60         _view->maybe_pulse ();
61
62         auto job = _job.lock ();
63         auto ok = dynamic_cast<wxButton *>(FindWindowById(wxID_OK, this));
64         if (job && ok) {
65                 ok->Enable (job->finished ());
66         }
67 }