X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fcontent_properties_dialog.cc;h=bf1f67ace40c5b8fc0649b06a8fe52ea1b74dc3f;hp=04abefc14d07656c94252eccb1c56fc02893ea3d;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hpb=0962f6d176f4de6b9b9c3431fb539c0d9a0c016f diff --git a/src/wx/content_properties_dialog.cc b/src/wx/content_properties_dialog.cc index 04abefc14..bf1f67ace 100644 --- a/src/wx/content_properties_dialog.cc +++ b/src/wx/content_properties_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -20,7 +20,7 @@ #include "content_properties_dialog.h" #include "wx_util.h" -#include "lib/raw_convert.h" +#include "static_text.h" #include "lib/content.h" #include "lib/video_content.h" #include "lib/audio_content.h" @@ -31,14 +31,14 @@ using std::string; using std::list; using std::pair; using std::map; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::dynamic_pointer_cast; -ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr content) +ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr film, shared_ptr content) : TableDialog (parent, _("Content Properties"), 2, 1, false) { map > grouped; - BOOST_FOREACH (UserProperty i, content->user_properties()) { + BOOST_FOREACH (UserProperty i, content->user_properties(film)) { if (grouped.find(i.category) == grouped.end()) { grouped[i.category] = list (); } @@ -81,7 +81,7 @@ ContentPropertiesDialog::maybe_add_group (mapSetFont (font); @@ -93,6 +93,6 @@ ContentPropertiesDialog::maybe_add_group (mapsecond) { add (std_to_wx (j.key), true); - add (new wxStaticText (this, wxID_ANY, std_to_wx (j.value + " " + j.unit))); + add (new StaticText (this, std_to_wx (j.value + " " + j.unit))); } }