X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fi18n_hook.h;h=40fd89a2c66cce72ecaed2701c7a47afbbad450d;hb=08f96200aacf9f91ef3e3f5b80224a5b2437f279;hp=9462e3f7f40fe0a4b2338e3a1f36089073c6c5e2;hpb=9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94;p=dcpomatic.git diff --git a/src/wx/i18n_hook.h b/src/wx/i18n_hook.h index 9462e3f7f..40fd89a2c 100644 --- a/src/wx/i18n_hook.h +++ b/src/wx/i18n_hook.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2018 Carl Hetherington + Copyright (C) 2018-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -22,19 +22,27 @@ #define DCPOMATIC_I18N_HOOK_H #include +#include class I18NHook { public: - I18NHook (wxWindow* window); + I18NHook (wxWindow* window, wxString original); virtual void set_text (wxString text) = 0; virtual wxString get_text () const = 0; + static std::map translations () { + return _translations; + } + private: void handle (wxMouseEvent &); wxWindow* _window; + wxString _original; + + static std::map _translations; }; #endif