summaryrefslogtreecommitdiff
path: root/src/wx/i18n_hook.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-07-12 00:11:02 +0200
committerCarl Hetherington <cth@carlh.net>2024-07-12 00:11:02 +0200
commitc2b7422b8f0ad9fdf1e6e174a90486fb9e6346f4 (patch)
tree346e776fd0ba9dfb869fe1b5e3023126a4ff024e /src/wx/i18n_hook.h
parenta88895ae714712eb2d52e6fb2c7576a7e2335754 (diff)
Remove some more stuff related to the old "instant i18n" feature.
Diffstat (limited to 'src/wx/i18n_hook.h')
-rw-r--r--src/wx/i18n_hook.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/wx/i18n_hook.h b/src/wx/i18n_hook.h
deleted file mode 100644
index 50c020b2a..000000000
--- a/src/wx/i18n_hook.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
-
- This file is part of DCP-o-matic.
-
- DCP-o-matic is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- DCP-o-matic is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-
-#ifndef DCPOMATIC_I18N_HOOK_H
-#define DCPOMATIC_I18N_HOOK_H
-
-
-#include <dcp/warnings.h>
-LIBDCP_DISABLE_WARNINGS
-#include <wx/wx.h>
-LIBDCP_ENABLE_WARNINGS
-#include <map>
-
-
-class I18NHook
-{
-public:
- I18NHook (wxWindow* window, wxString original);
-
- virtual void set_text (wxString text) = 0;
- virtual wxString get_text () const = 0;
-
- static std::map<std::string, std::string> translations () {
- return _translations;
- }
-
-private:
- void handle (wxMouseEvent &);
-
- wxWindow* _window;
- wxString _original;
-
- static std::map<std::string, std::string> _translations;
-};
-
-
-#endif