Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / job_manager_view.h
index 7624678c2be691aadc5871700cad63660d36823c..77114a97c382b170f06758d58d1d8f2d41fb52af 100644 (file)
@@ -35,15 +35,18 @@ class JobView;
 class JobManagerView : public wxScrolledWindow
 {
 public:
-       JobManagerView (wxWindow *);
+       JobManagerView (wxWindow *, bool batch);
 
 private:
        void job_added (boost::weak_ptr<Job>);
        void periodic ();
+       void replace ();
+       void job_list_changed ();
 
        wxPanel* _panel;
        wxFlexGridSizer* _table;
        boost::shared_ptr<wxTimer> _timer;
+       bool _batch;
 
        std::list<boost::shared_ptr<JobView> > _job_records;
 };