Fix last-but-one commit.
[dcpomatic.git] / src / wx / job_manager_view.h
index 5c10890ef01391966c9131af3de312e25eb9bceb..fde9199ffb80d5890e0397a08e006d719a07c414 100644 (file)
@@ -26,6 +26,7 @@
 #include <wx/wx.h>
 
 class Job;
+class JobRecord;
 
 /** @class JobManagerView
  *  @brief Class which is a wxPanel for showing the progress of jobs.
@@ -35,19 +36,14 @@ class JobManagerView : public wxScrolledWindow
 public:
        JobManagerView (wxWindow *);
 
-       void update ();
-
 private:
-       void periodic (wxTimerEvent &);
+       void job_added (boost::weak_ptr<Job>);
+       void periodic ();
+       void sized (wxSizeEvent &);
 
-       boost::shared_ptr<wxTimer> _timer;
        wxPanel* _panel;
        wxFlexGridSizer* _table;
-       struct JobRecord {
-               wxGauge* gauge;
-               wxStaticText* message;
-               bool finalised;
-       };
+       boost::shared_ptr<wxTimer> _timer;
                
-       std::map<boost::shared_ptr<Job>, JobRecord> _job_records;
+       std::list<boost::shared_ptr<JobRecord> > _job_records;
 };