Remove somewhat pointless playlist description.
[dcpomatic.git] / src / wx / job_manager_view.h
index 5a3ae61cb8c6fab8c2b84dbcb97ee5a5c3e5b1a3..72ac85c02640423ee4c2f23b1756c8680adf645b 100644 (file)
@@ -39,6 +39,8 @@ public:
 
 private:
        void periodic (wxTimerEvent &);
+       void cancel_clicked (wxCommandEvent &);
+       void details_clicked (wxCommandEvent &);
 
        boost::shared_ptr<wxTimer> _timer;
        wxPanel* _panel;
@@ -46,7 +48,9 @@ private:
        struct JobRecord {
                wxGauge* gauge;
                wxStaticText* message;
-               bool informed_of_finish;
+               wxButton* cancel;
+               wxButton* details;
+               bool finalised;
        };
                
        std::map<boost::shared_ptr<Job>, JobRecord> _job_records;