No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / job_manager_view.h
index 96a37693cadb1ae8a3315714dec465e61585237e..a83b481dc874027f54aeeecee18afe0c168e1df8 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #include <wx/wx.h>
 
 class Job;
+class JobRecord;
 
 /** @class JobManagerView
  *  @brief Class which is a wxPanel for showing the progress of jobs.
  */
-class JobManagerView : public wxPanel
+class JobManagerView : public wxScrolledWindow
 {
 public:
        JobManagerView (wxWindow *);
 
-       void update ();
-
 private:
-       void periodic (wxTimerEvent &);
+       void job_added (boost::weak_ptr<Job>);
+       void periodic ();
 
+       wxPanel* _panel;
+       wxFlexGridSizer* _table;
        boost::shared_ptr<wxTimer> _timer;
-       wxFlexGridSizer* _sizer;
-       struct JobRecord {
-               wxGauge* gauge;
-               wxStaticText* message;
-               bool informed_of_finish;
-       };
-               
-       std::map<boost::shared_ptr<Job>, JobRecord> _job_records;
+
+       std::list<boost::shared_ptr<JobRecord> > _job_records;
 };