diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-02-20 23:10:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-02-23 01:47:38 +0100 |
| commit | 81d8c747c7a04be10821223dea69faf058b05b1d (patch) | |
| tree | 98f58e45012c3133e719024fe8c84d7b9c691811 /src/wx/verify_dcp_progress_panel.h | |
| parent | 6628b2573f601b7448da169453d5f113534e525e (diff) | |
Allow verification of multiple DCPs in one go (#2843).
Diffstat (limited to 'src/wx/verify_dcp_progress_panel.h')
| -rw-r--r-- | src/wx/verify_dcp_progress_panel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/verify_dcp_progress_panel.h b/src/wx/verify_dcp_progress_panel.h index 3fde50827..52ef221cb 100644 --- a/src/wx/verify_dcp_progress_panel.h +++ b/src/wx/verify_dcp_progress_panel.h @@ -26,7 +26,7 @@ LIBDCP_ENABLE_WARNINGS #include <memory> -class Job; +class VerifyDCPJob; class VerifyDCPProgressPanel : public wxPanel @@ -34,9 +34,11 @@ class VerifyDCPProgressPanel : public wxPanel public: VerifyDCPProgressPanel(wxWindow* parent); - void update(std::shared_ptr<Job> job); + void update(std::shared_ptr<const VerifyDCPJob> job); + void clear(); private: + wxStaticText* _directory_name; wxStaticText* _job_name; wxStaticText* _file_name; wxGauge* _progress; |
