X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_manager_view.h;h=a83b481dc874027f54aeeecee18afe0c168e1df8;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=d43e795ea59797da395a6486060f8b9b9dd3706a;hpb=9b78074e1487ac263f84fd1132735fba83045719;p=dcpomatic.git diff --git a/src/wx/job_manager_view.h b/src/wx/job_manager_view.h index d43e795ea..a83b481dc 100644 --- a/src/wx/job_manager_view.h +++ b/src/wx/job_manager_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington 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 @@ -26,6 +26,7 @@ #include class Job; +class JobRecord; /** @class JobManagerView * @brief Class which is a wxPanel for showing the progress of jobs. @@ -35,21 +36,13 @@ class JobManagerView : public wxScrolledWindow public: JobManagerView (wxWindow *); - void update (); - private: - void periodic (wxTimerEvent &); - void details_clicked (wxCommandEvent &); + void job_added (boost::weak_ptr); + void periodic (); - boost::shared_ptr _timer; wxPanel* _panel; wxFlexGridSizer* _table; - struct JobRecord { - wxGauge* gauge; - wxStaticText* message; - wxButton* details; - bool finalised; - }; - - std::map, JobRecord> _job_records; + boost::shared_ptr _timer; + + std::list > _job_records; };