X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_manager_view.h;h=a83b481dc874027f54aeeecee18afe0c168e1df8;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=96a37693cadb1ae8a3315714dec465e61585237e;hpb=c1d603f3bc051f3b35546c201a683f2a0e15ab22;p=dcpomatic.git diff --git a/src/wx/job_manager_view.h b/src/wx/job_manager_view.h index 96a37693c..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,27 +26,23 @@ #include 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); + void periodic (); + wxPanel* _panel; + wxFlexGridSizer* _table; boost::shared_ptr _timer; - wxFlexGridSizer* _sizer; - struct JobRecord { - wxGauge* gauge; - wxStaticText* message; - bool informed_of_finish; - }; - - std::map, JobRecord> _job_records; + + std::list > _job_records; };