Build fixes for Boost >= 1.73
[dcpomatic.git] / src / wx / text_view.cc
1 /*
2     Copyright (C) 2014-2018 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 "text_view.h"
22 #include "film_viewer.h"
23 #include "wx_util.h"
24 #include "lib/string_text_file_decoder.h"
25 #include "lib/content_text.h"
26 #include "lib/video_decoder.h"
27 #include "lib/audio_decoder.h"
28 #include "lib/film.h"
29 #include "lib/config.h"
30 #include "lib/string_text_file_content.h"
31 #include "lib/text_decoder.h"
32
33 using std::list;
34 using boost::shared_ptr;
35 using boost::weak_ptr;
36 using boost::bind;
37 using boost::dynamic_pointer_cast;
38 #if BOOST_VERSION >= 106100
39 using namespace boost::placeholders;
40 #endif
41
42 TextView::TextView (
43         wxWindow* parent, shared_ptr<Film> film, shared_ptr<Content> content, shared_ptr<TextContent> text, shared_ptr<Decoder> decoder, weak_ptr<FilmViewer> viewer
44         )
45         : wxDialog (parent, wxID_ANY, _("Captions"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
46         , _content (content)
47         , _film_viewer (viewer)
48 {
49         _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);
50
51         {
52                 wxListItem ip;
53                 ip.SetId (0);
54                 ip.SetText (_("Start"));
55                 ip.SetWidth (100);
56                 _list->InsertColumn (0, ip);
57         }
58
59         {
60                 wxListItem ip;
61                 ip.SetId (1);
62                 ip.SetText (_("End"));
63                 ip.SetWidth (100);
64                 _list->InsertColumn (1, ip);
65         }
66
67         {
68                 wxListItem ip;
69                 ip.SetId (2);
70                 ip.SetText (_("Caption"));
71                 ip.SetWidth (640);
72                 _list->InsertColumn (2, ip);
73         }
74
75         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
76         sizer->Add (_list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
77
78         _list->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&TextView::subtitle_selected, this, _1));
79
80         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
81         if (buttons) {
82                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
83         }
84
85         if (decoder->video) {
86                 decoder->video->set_ignore (true);
87         }
88         if (decoder->audio) {
89                 decoder->audio->set_ignore (true);
90         }
91
92         _subs = 0;
93         _frc = film->active_frame_rate_change (content->position());
94
95         /* Find the decoder that is being used for our TextContent and attach to it */
96         BOOST_FOREACH (shared_ptr<TextDecoder> i, decoder->text) {
97                 if (i->content() == text) {
98                         i->PlainStart.connect (bind (&TextView::data_start, this, _1));
99                         i->Stop.connect (bind (&TextView::data_stop, this, _1));
100                 }
101         }
102         while (!decoder->pass ()) {}
103         SetSizerAndFit (sizer);
104 }
105
106 void
107 TextView::data_start (ContentStringText cts)
108 {
109         BOOST_FOREACH (dcp::SubtitleString const & i, cts.subs) {
110                 wxListItem list_item;
111                 list_item.SetId (_subs);
112                 _list->InsertItem (list_item);
113                 _list->SetItem (_subs, 0, std_to_wx (cts.from().timecode (_frc->source)));
114                 _list->SetItem (_subs, 2, std_to_wx (i.text ()));
115                 _start_times.push_back (cts.from ());
116                 ++_subs;
117         }
118
119         _last_count = cts.subs.size ();
120 }
121
122 void
123 TextView::data_stop (ContentTime time)
124 {
125         if (!_last_count) {
126                 return;
127         }
128
129         for (int i = _subs - *_last_count; i < _subs; ++i) {
130                 _list->SetItem (i, 1, std_to_wx (time.timecode (_frc->source)));
131         }
132 }
133
134 void
135 TextView::subtitle_selected (wxListEvent& ev)
136 {
137         if (!Config::instance()->jump_to_selected ()) {
138                 return;
139         }
140
141         DCPOMATIC_ASSERT (ev.GetIndex() < int(_start_times.size()));
142         shared_ptr<Content> lc = _content.lock ();
143         DCPOMATIC_ASSERT (lc);
144         shared_ptr<FilmViewer> fv = _film_viewer.lock ();
145         DCPOMATIC_ASSERT (fv);
146         fv->seek (lc, _start_times[ev.GetIndex()], true);
147 }