X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fjob_manager_view.h;h=d43e795ea59797da395a6486060f8b9b9dd3706a;hb=53a3ea31e2ffb413dc926ff44e1a9fc98189834f;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..d43e795ea 100644 --- a/src/wx/job_manager_view.h +++ b/src/wx/job_manager_view.h @@ -30,7 +30,7 @@ class Job; /** @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 *); @@ -39,13 +39,16 @@ public: private: void periodic (wxTimerEvent &); + void details_clicked (wxCommandEvent &); boost::shared_ptr _timer; - wxFlexGridSizer* _sizer; + wxPanel* _panel; + wxFlexGridSizer* _table; struct JobRecord { wxGauge* gauge; wxStaticText* message; - bool informed_of_finish; + wxButton* details; + bool finalised; }; std::map, JobRecord> _job_records;