Basics of in-place i18n with support for wxStaticText and wxCheckBox.
[dcpomatic.git] / src / wx / i18n_hook.cc
1 /*
2     Copyright (C) 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 "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 #include <boost/filesystem.hpp>
28
29 I18NHook::I18NHook (wxWindow* window)
30         : _window (window)
31 {
32         _window->Bind (wxEVT_MIDDLE_DOWN, bind(&I18NHook::handle, this, _1));
33 }
34
35 void
36 I18NHook::handle (wxMouseEvent& ev)
37 {
38         wxString const original = get_text ();
39
40         InstantI18NDialog* d = new InstantI18NDialog (_window, get_text());
41         d->ShowModal();
42         set_text (d->get());
43         _window->GetContainingSizer()->Layout();
44         ev.Skip ();
45
46         boost::filesystem::path file = "instant_i18n";
47
48         FILE* f = fopen_boost (file, "a");
49         if (!f) {
50                 error_dialog (_window, wxString::Format(_("Could not open translation file %s"), std_to_wx(file.string()).data()));
51                 return;
52         }
53         fprintf (f, "%s\n", wx_to_std(original).c_str());
54         fprintf (f, "%s\n", wx_to_std(get_text()).c_str());
55         fclose (f);
56 }