827e81bc94612b0d547fa6e874f60878ce77a47d
[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/bind.hpp>
27
28 using std::map;
29 using std::string;
30 #if BOOST_VERSION >= 106100
31 using namespace boost::placeholders;
32 #endif
33
34
35 map<string, string> I18NHook::_translations;
36
37 I18NHook::I18NHook (wxWindow* window, wxString original)
38         : _window (window)
39         , _original (original)
40 {
41         _window->Bind (wxEVT_MIDDLE_DOWN, bind(&I18NHook::handle, this, _1));
42 }
43
44 void
45 I18NHook::handle (wxMouseEvent& ev)
46 {
47         InstantI18NDialog* d = new InstantI18NDialog (_window, get_text());
48         d->ShowModal();
49         set_text (d->get());
50         d->Destroy ();
51
52         wxWindow* w = _window;
53         while (w) {
54                 if (w->GetContainingSizer()) {
55                         w->GetContainingSizer()->Layout();
56                 }
57                 w = w->GetParent();
58         }
59
60         ev.Skip ();
61
62         _translations[wx_to_std(_original)] = wx_to_std(get_text());
63 }