Support shadow in subtitles (#911).
[dcpomatic.git] / src / wx / content_properties_dialog.h
index dc4c522939f27821a795aab0ce50b5f5db1bbb8d..92aa5c6d739b51e9619273cb0cdd6c5106b7d0e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 */
 
 #include "table_dialog.h"
+#include "lib/user_property.h"
 #include <boost/shared_ptr.hpp>
+#include <list>
+#include <map>
 
 class Content;
+class UserProperty;
 
 class ContentPropertiesDialog : public TableDialog
 {
 public:
        ContentPropertiesDialog (wxWindow* parent, boost::shared_ptr<Content> content);
+
+private:
+       void maybe_add_group (std::map<UserProperty::Category, std::list<UserProperty> > const & groups, UserProperty::Category category);
 };