1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
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 <http://www.gnu.org/licenses/>.
*/
#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 <boost/algorithm/string.hpp>
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<const Film> film, shared_ptr<Content> content)
: TableDialog (parent, _("Content Properties"), 2, 1, false)
{
map<UserProperty::Category, list<UserProperty>> grouped;
for (auto i: content->user_properties(film)) {
if (grouped.find(i.category) == grouped.end()) {
grouped[i.category] = list<UserProperty> ();
}
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<UserProperty::Category, list<UserProperty>> 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)));
}
}
|