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