Basics of job view when sending KDM emails from dcpomatic_kdm.
[dcpomatic.git] / src / wx / job_view.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/noncopyable.hpp>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/signals2.hpp>
23
24 class Job;
25 class wxScrolledWindow;
26 class wxWindow;
27 class wxFlexGridSizer;
28 class wxCommandEvent;
29 class wxBoxSizer;
30 class wxGauge;
31 class wxStaticText;
32 class wxButton;
33
34 class JobView : public boost::noncopyable
35 {
36 public:
37         JobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
38
39         void maybe_pulse ();
40
41 private:
42
43         void progress ();
44         void finished ();
45         void details_clicked (wxCommandEvent &);
46         void cancel_clicked (wxCommandEvent &);
47         void pause_clicked (wxCommandEvent &);
48
49         boost::shared_ptr<Job> _job;
50         wxWindow* _parent;
51         wxBoxSizer* _gauge_message;
52         wxGauge* _gauge;
53         wxStaticText* _message;
54         wxButton* _cancel;
55         wxButton* _pause;
56         wxButton* _details;
57         std::string _last_message;
58
59         boost::signals2::scoped_connection _progress_connection;
60         boost::signals2::scoped_connection _finished_connection;
61 };