summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_progress_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-09 21:11:32 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-16 00:39:05 +0200
commitb3a03888285d1f97253a6ed7e1438d5a2781fab9 (patch)
tree0b97281087b1bd2f2524892e96ebc1f4e9d798b5 /src/wx/verify_dcp_progress_dialog.h
parente909adf6e23ab09b3e2dd38690dc711f6d2f8d34 (diff)
Split VerifyDCPProgressDialog into a panel and a dialog.
Diffstat (limited to 'src/wx/verify_dcp_progress_dialog.h')
-rw-r--r--src/wx/verify_dcp_progress_dialog.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/wx/verify_dcp_progress_dialog.h b/src/wx/verify_dcp_progress_dialog.h
index 190c302ea..1ae3336e8 100644
--- a/src/wx/verify_dcp_progress_dialog.h
+++ b/src/wx/verify_dcp_progress_dialog.h
@@ -25,10 +25,9 @@ LIBDCP_DISABLE_WARNINGS
LIBDCP_ENABLE_WARNINGS
#include <memory>
-class Job;
-class wxGauge;
-class wxStaticText;
+class Job;
+class VerifyDCPProgressPanel;
class VerifyDCPProgressDialog : public wxDialog
@@ -41,9 +40,7 @@ public:
private:
void cancel ();
- wxStaticText* _job_name;
- wxStaticText* _file_name;
- wxGauge* _progress;
+ VerifyDCPProgressPanel* _panel;
bool _cancel;
};