summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-14 21:32:39 +0100
committerCarl Hetherington <cth@carlh.net>2025-11-14 21:32:39 +0100
commitbbd4f4637cd037e9372ee20034c32012d1e8568e (patch)
tree1615fd3793d37f229c743018acacbb507a2ff580 /src/wx/verify_dcp_dialog.h
parent1543195d9a73bc315c7a348d6d4a396fc191d85c (diff)
Fix "Verify picture assets details" checkbox in the player (#3118).
Diffstat (limited to 'src/wx/verify_dcp_dialog.h')
-rw-r--r--src/wx/verify_dcp_dialog.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/wx/verify_dcp_dialog.h b/src/wx/verify_dcp_dialog.h
index 436d15332..ffed80b91 100644
--- a/src/wx/verify_dcp_dialog.h
+++ b/src/wx/verify_dcp_dialog.h
@@ -23,6 +23,7 @@
LIBDCP_DISABLE_WARNINGS
#include <wx/wx.h>
LIBDCP_ENABLE_WARNINGS
+#include <boost/filesystem.hpp>
#include <memory>
@@ -36,7 +37,12 @@ class VerifyDCPResultPanel;
class VerifyDCPDialog : public wxDialog
{
public:
- VerifyDCPDialog(wxWindow* parent, wxString title, std::shared_ptr<VerifyDCPJob> job);
+ VerifyDCPDialog(
+ wxWindow* parent,
+ wxString title,
+ std::vector<boost::filesystem::path> dcp_directories,
+ std::vector<boost::filesystem::path> kdms
+ );
private:
void verify_clicked();
@@ -48,7 +54,8 @@ private:
Button* _cancel;
Button* _verify;
bool _cancel_pending;
- std::shared_ptr<VerifyDCPJob> _job;
+ std::vector<boost::filesystem::path> _dcp_directories;
+ std::vector<boost::filesystem::path> _kdms;
};