/* Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ #include "content_properties_dialog.h" #include "wx_util.h" #include "static_text.h" #include "lib/content.h" #include "lib/video_content.h" #include "lib/audio_content.h" #include using std::string; using std::list; using std::pair; using std::map; using std::shared_ptr; using std::dynamic_pointer_cast; ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr film, shared_ptr content) : TableDialog (parent, _("Content Properties"), 2, 1, false) { map> grouped; for (auto i: content->user_properties(film)) { if (grouped.find(i.category) == grouped.end()) { grouped[i.category] = list (); } grouped[i.category].push_back (i); } maybe_add_group (grouped, UserProperty::GENERAL); maybe_add_group (grouped, UserProperty::VIDEO); maybe_add_group (grouped, UserProperty::AUDIO); maybe_add_group (grouped, UserProperty::LENGTH); /* Nasty hack to stop the bottom property being cut off on Windows / OS X */ add (wxString(), false); add (wxString(), false); layout (); } void ContentPropertiesDialog::maybe_add_group (map> const & groups, UserProperty::Category category) { auto i = groups.find (category); if (i == groups.end()) { return; } wxString category_name; switch (i->first) { case UserProperty::GENERAL: category_name = _("General"); break; case UserProperty::VIDEO: category_name = _("Video"); break; case UserProperty::AUDIO: category_name = _("Audio"); break; case UserProperty::LENGTH: category_name = _("Length"); break; } auto m = new StaticText (this, category_name); wxFont font (*wxNORMAL_FONT); font.SetWeight (wxFONTWEIGHT_BOLD); m->SetFont (font); add_spacer (); add_spacer (); add (m, false); add_spacer (); for (auto j: i->second) { add_label_to_sizer (_table, this, std_to_wx(j.key), true, 0, wxALIGN_TOP); add (new StaticText (this, std_to_wx (j.value + " " + j.unit))); } }