Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / i18n_hook.cc
1 /*
2     Copyright (C) 2018-2019 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 "i18n_hook.h"
22 #include "instant_i18n_dialog.h"
23 #include "wx_util.h"
24 #include "lib/cross.h"
25 #include <wx/wx.h>
26 #include <boost/bind.hpp>
27
28 using std::map;
29 using std::string;
30
31 map<string, string> I18NHook::_translations;
32
33 I18NHook::I18NHook (wxWindow* window, wxString original)
34         : _window (window)
35         , _original (original)
36 {
37         _window->Bind (wxEVT_MIDDLE_DOWN, bind(&I18NHook::handle, this, _1));
38 }
39
40 void
41 I18NHook::handle (wxMouseEvent& ev)
42 {
43         InstantI18NDialog* d = new InstantI18NDialog (_window, get_text());
44         d->ShowModal();
45         set_text (d->get());
46         d->Destroy ();
47
48         wxWindow* w = _window;
49         while (w) {
50                 if (w->GetContainingSizer()) {
51                         w->GetContainingSizer()->Layout();
52                 }
53                 w = w->GetParent();
54         }
55
56         ev.Skip ();
57
58         _translations[wx_to_std(_original)] = wx_to_std(get_text());
59 }