diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-07 17:11:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-09 13:44:58 +0100 |
| commit | f29f405000752ad568de1e304640a4edac8214bc (patch) | |
| tree | cb4990c7e7d90ddc6d5fddb9a69f3379a693c3fa /src/wx/job_view.h | |
| parent | bf0b74f67b87b2361529cefaae45533e5935a9c4 (diff) | |
Basics of job view when sending KDM emails from dcpomatic_kdm.
Diffstat (limited to 'src/wx/job_view.h')
| -rw-r--r-- | src/wx/job_view.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wx/job_view.h b/src/wx/job_view.h index 0ca0d4cff..97c09dfbd 100644 --- a/src/wx/job_view.h +++ b/src/wx/job_view.h @@ -23,7 +23,7 @@ class Job; class wxScrolledWindow; -class wxPanel; +class wxWindow; class wxFlexGridSizer; class wxCommandEvent; class wxBoxSizer; @@ -34,7 +34,7 @@ class wxButton; class JobView : public boost::noncopyable { public: - JobView (boost::shared_ptr<Job> job, wxScrolledWindow* window, wxPanel* panel, wxFlexGridSizer* table); + JobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table); void maybe_pulse (); @@ -47,8 +47,7 @@ private: void pause_clicked (wxCommandEvent &); boost::shared_ptr<Job> _job; - wxScrolledWindow* _window; - wxPanel* _panel; + wxWindow* _parent; wxBoxSizer* _gauge_message; wxGauge* _gauge; wxStaticText* _message; |
