Post-merge tidy-up.
[dcpomatic.git] / src / wx / subtitle_view.cc
1 /*
2     Copyright (C) 2014 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 "lib/text_subtitle_decoder.h"
22 #include "lib/content_subtitle.h"
23 #include "lib/film.h"
24 #include "lib/text_subtitle_content.h"
25 #include "subtitle_view.h"
26 #include "wx_util.h"
27
28 using std::list;
29 using boost::shared_ptr;
30 using boost::bind;
31 using boost::dynamic_pointer_cast;
32
33 SubtitleView::SubtitleView (wxWindow* parent, shared_ptr<Film> film, shared_ptr<Decoder> decoder, DCPTime position)
34         : wxDialog (parent, wxID_ANY, _("Subtitles"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
35 {
36         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);
37
38         {
39                 wxListItem ip;
40                 ip.SetId (0);
41                 ip.SetText (_("Start"));
42                 ip.SetWidth (100);
43                 _list->InsertColumn (0, ip);
44         }
45
46         {
47                 wxListItem ip;
48                 ip.SetId (1);
49                 ip.SetText (_("End"));
50                 ip.SetWidth (100);
51                 _list->InsertColumn (1, ip);
52         }
53
54         {
55                 wxListItem ip;
56                 ip.SetId (2);
57                 ip.SetText (_("Subtitle"));
58                 ip.SetWidth (640);
59                 _list->InsertColumn (2, ip);
60         }
61
62         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
63         sizer->Add (_list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
64
65         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
66         if (buttons) {
67                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
68         }
69
70 #if 0
71         XXX
72
73         list<ContentTextSubtitle> subs = decoder->subtitle->get_text (ContentTimePeriod (ContentTime(), ContentTime::max ()), true, true);
74         FrameRateChange const frc = film->active_frame_rate_change (position);
75         int n = 0;
76         for (list<ContentTextSubtitle>::const_iterator i = subs.begin(); i != subs.end(); ++i) {
77                 for (list<dcp::SubtitleString>::const_iterator j = i->subs.begin(); j != i->subs.end(); ++j) {
78                         wxListItem list_item;
79                         list_item.SetId (n);
80                         _list->InsertItem (list_item);
81                         ContentTimePeriod const p = i->period ();
82                         _list->SetItem (n, 0, std_to_wx (p.from.timecode (frc.source)));
83                         _list->SetItem (n, 1, std_to_wx (p.to.timecode (frc.source)));
84                         _list->SetItem (n, 2, std_to_wx (j->text ()));
85                         ++n;
86                 }
87         }
88 #endif
89
90         SetSizerAndFit (sizer);
91 }