Include subscribers / supporters in git.
[dcpomatic.git] / src / wx / job_view.h
1 /*
2     Copyright (C) 2012-2017 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 #ifndef DCPOMATIC_JOB_VIEW_H
22 #define DCPOMATIC_JOB_VIEW_H
23
24 #include <boost/signals2.hpp>
25
26 class Job;
27 class wxScrolledWindow;
28 class wxWindow;
29 class wxFlexGridSizer;
30 class wxCommandEvent;
31 class wxBoxSizer;
32 class wxGauge;
33 class wxStaticText;
34 class wxButton;
35 class wxSizer;
36 class wxCheckBox;
37
38 class JobView
39 {
40 public:
41         JobView (std::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
42         virtual ~JobView () {}
43
44         JobView (JobView const&) = delete;
45         JobView& operator= (JobView const&) = delete;
46
47         virtual int insert_position () const = 0;
48         virtual void job_list_changed () {}
49
50         void setup ();
51         void maybe_pulse ();
52         void insert (int pos);
53         void detach ();
54
55         std::shared_ptr<Job> job () const {
56                 return _job;
57         }
58
59 protected:
60         virtual void finished ();
61
62         std::shared_ptr<Job> _job;
63         wxFlexGridSizer* _table;
64         /** sizer for buttons (cancel, details, pause etc.) */
65         wxBoxSizer* _buttons;
66         /** sizer for the guage and the message underneath it */
67         wxBoxSizer* _gauge_message;
68
69 private:
70
71         virtual void finish_setup (wxWindow *, wxSizer *) {}
72
73         void progress ();
74         void details_clicked (wxCommandEvent &);
75         void cancel_clicked (wxCommandEvent &);
76         void notify_clicked ();
77
78         wxWindow* _parent;
79         wxWindow* _container;
80         wxGauge* _gauge;
81         wxStaticText* _message;
82         wxButton* _cancel;
83         wxButton* _details;
84         wxCheckBox* _notify;
85         /** sizer for all right-hand-size controls */
86         wxBoxSizer* _controls;
87         std::string _last_message;
88
89         boost::signals2::scoped_connection _progress_connection;
90         boost::signals2::scoped_connection _finished_connection;
91 };
92
93 #endif