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