X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_properties_dialog.h;h=c7efa4497c91cbdfd0f5af133a56f9fb224be355;hb=d0188ed3e1ea5536e729e93b87d54114368120ac;hp=eb6f11ddb8a0cf1496eaa7c0c54e9b61d7bb779f;hpb=291e2fe2e7df95019feba8097b68b31ec64be794;p=dcpomatic.git diff --git a/src/wx/content_properties_dialog.h b/src/wx/content_properties_dialog.h index eb6f11ddb..c7efa4497 100644 --- a/src/wx/content_properties_dialog.h +++ b/src/wx/content_properties_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2016 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,19 +18,23 @@ */ + #include "table_dialog.h" -#include +#include "lib/user_property.h" #include #include + class Content; +class Film; class UserProperty; + class ContentPropertiesDialog : public TableDialog { public: - ContentPropertiesDialog (wxWindow* parent, boost::shared_ptr content); + ContentPropertiesDialog (wxWindow* parent, std::shared_ptr film, std::shared_ptr content); private: - void maybe_add_group (std::map > const & groups, std::string name); + void maybe_add_group (std::map > const & groups, UserProperty::Category category); };