Give markers dialog a close button (#2070).
[dcpomatic.git] / src / wx / job_manager_view.h
index 7784c71eed3cc639a1393dc9001055c1fd5f7167..e960bc2f667a33e2c291fd79dffb3fbe9ac0ce18 100644 (file)
 
 */
 
+
 /** @file src/job_manager_view.h
  *  @brief Class which is a wxPanel for showing the progress of jobs.
  */
 
+
+#include "lib/warnings.h"
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
-#include <boost/shared_ptr.hpp>
+DCPOMATIC_ENABLE_WARNINGS
 #include <list>
+#include <memory>
+
 
 class Job;
 class JobView;
 
+
 /** @class JobManagerView
  *  @brief Class which is a wxPanel for showing the progress of jobs.
  */
@@ -38,13 +45,15 @@ public:
        JobManagerView (wxWindow *, bool batch);
 
 private:
-       void job_added (boost::weak_ptr<Job>);
+       void job_added (std::weak_ptr<Job>);
        void periodic ();
+       void replace ();
+       void job_list_changed ();
 
        wxPanel* _panel;
        wxFlexGridSizer* _table;
-       boost::shared_ptr<wxTimer> _timer;
+       std::shared_ptr<wxTimer> _timer;
        bool _batch;
 
-       std::list<boost::shared_ptr<JobView> > _job_records;
+       std::list<std::shared_ptr<JobView>> _job_records;
 };