04abefc14d07656c94252eccb1c56fc02893ea3d
[dcpomatic.git] / src / wx / content_properties_dialog.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "content_properties_dialog.h"
22 #include "wx_util.h"
23 #include "lib/raw_convert.h"
24 #include "lib/content.h"
25 #include "lib/video_content.h"
26 #include "lib/audio_content.h"
27 #include <boost/algorithm/string.hpp>
28 #include <boost/foreach.hpp>
29
30 using std::string;
31 using std::list;
32 using std::pair;
33 using std::map;
34 using boost::shared_ptr;
35 using boost::dynamic_pointer_cast;
36
37 ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<Content> content)
38         : TableDialog (parent, _("Content Properties"), 2, 1, false)
39 {
40         map<UserProperty::Category, list<UserProperty> > grouped;
41         BOOST_FOREACH (UserProperty i, content->user_properties()) {
42                 if (grouped.find(i.category) == grouped.end()) {
43                         grouped[i.category] = list<UserProperty> ();
44                 }
45                 grouped[i.category].push_back (i);
46         }
47
48         maybe_add_group (grouped, UserProperty::GENERAL);
49         maybe_add_group (grouped, UserProperty::VIDEO);
50         maybe_add_group (grouped, UserProperty::AUDIO);
51         maybe_add_group (grouped, UserProperty::LENGTH);
52
53         /* Nasty hack to stop the bottom property being cut off on Windows / OS X */
54         add (wxString (), false);
55         add (wxString (), false);
56
57         layout ();
58 }
59
60 void
61 ContentPropertiesDialog::maybe_add_group (map<UserProperty::Category, list<UserProperty> > const & groups, UserProperty::Category category)
62 {
63         map<UserProperty::Category, list<UserProperty> >::const_iterator i = groups.find (category);
64         if (i == groups.end()) {
65                 return;
66         }
67
68         wxString category_name;
69         switch (i->first) {
70         case UserProperty::GENERAL:
71                 category_name = _("General");
72                 break;
73         case UserProperty::VIDEO:
74                 category_name = _("Video");
75                 break;
76         case UserProperty::AUDIO:
77                 category_name = _("Audio");
78                 break;
79         case UserProperty::LENGTH:
80                 category_name = _("Length");
81                 break;
82         }
83
84         wxStaticText* m = new wxStaticText (this, wxID_ANY, category_name);
85         wxFont font (*wxNORMAL_FONT);
86         font.SetWeight (wxFONTWEIGHT_BOLD);
87         m->SetFont (font);
88
89         add_spacer ();
90         add_spacer ();
91         add (m, false);
92         add_spacer ();
93
94         BOOST_FOREACH (UserProperty j, i->second) {
95                 add (std_to_wx (j.key), true);
96                 add (new wxStaticText (this, wxID_ANY, std_to_wx (j.value + " " + j.unit)));
97         }
98 }