Fix GL information fetching.
[dcpomatic.git] / src / wx / job_view.h
index 8cd34fdabec809c75d9226fbc9b670e551ae7167..4a602fc6229b0b82542e065c8a584ed0816c10dd 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -21,8 +21,6 @@
 #ifndef DCPOMATIC_JOB_VIEW_H
 #define DCPOMATIC_JOB_VIEW_H
 
-#include <boost/noncopyable.hpp>
-#include <boost/shared_ptr.hpp>
 #include <boost/signals2.hpp>
 
 class Job;
@@ -35,39 +33,57 @@ class wxGauge;
 class wxStaticText;
 class wxButton;
 class wxSizer;
+class wxCheckBox;
 
-class JobView : public boost::noncopyable
+class JobView
 {
 public:
-       JobView (boost::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
+       JobView (std::shared_ptr<Job> job, wxWindow* parent, wxWindow* container, wxFlexGridSizer* table);
        virtual ~JobView () {}
 
-       void setup ();
+       JobView (JobView const&) = delete;
+       JobView& operator= (JobView const&) = delete;
+
+       virtual int insert_position () const = 0;
+       virtual void job_list_changed () {}
 
+       void setup ();
        void maybe_pulse ();
+       void insert (int pos);
+       void detach ();
+
+       std::shared_ptr<Job> job () const {
+               return _job;
+       }
 
 protected:
        virtual void finished ();
 
-       boost::shared_ptr<Job> _job;
+       std::shared_ptr<Job> _job;
        wxFlexGridSizer* _table;
+       /** sizer for buttons (cancel, details, pause etc.) */
+       wxBoxSizer* _buttons;
+       /** sizer for the guage and the message underneath it */
+       wxBoxSizer* _gauge_message;
 
 private:
 
-       virtual int insert_position () const = 0;
        virtual void finish_setup (wxWindow *, wxSizer *) {}
 
        void progress ();
        void details_clicked (wxCommandEvent &);
        void cancel_clicked (wxCommandEvent &);
+       void notify_clicked ();
 
        wxWindow* _parent;
        wxWindow* _container;
-       wxBoxSizer* _gauge_message;
        wxGauge* _gauge;
        wxStaticText* _message;
        wxButton* _cancel;
        wxButton* _details;
+       wxCheckBox* _notify;
+       /** sizer for all right-hand-size controls */
+       wxBoxSizer* _controls;
        std::string _last_message;
 
        boost::signals2::scoped_connection _progress_connection;