Add sending of translations via email. v2.13.82
authorCarl Hetherington <cth@carlh.net>
Sat, 8 Dec 2018 02:12:56 +0000 (02:12 +0000)
committerCarl Hetherington <cth@carlh.net>
Sat, 8 Dec 2018 02:12:56 +0000 (02:12 +0000)
src/tools/dcpomatic.cc
src/wx/i18n_hook.cc
src/wx/i18n_hook.h
src/wx/send_i18n_dialog.cc [new file with mode: 0644]
src/wx/send_i18n_dialog.h [new file with mode: 0644]
src/wx/wscript

index c1edbe481ea878355bbaec02aca6290c5f7343dc..ad1dcde90b647d7336e831421122f7e092f71aa2 100644 (file)
 #include "wx/paste_dialog.h"
 #include "wx/focus_manager.h"
 #include "wx/initial_setup_dialog.h"
+#include "wx/send_i18n_dialog.h"
+#include "wx/i18n_hook.h"
 #include "lib/film.h"
+#include "lib/emailer.h"
 #include "lib/config.h"
 #include "lib/util.h"
 #include "lib/video_content.h"
@@ -226,6 +229,7 @@ enum {
        ID_tools_encoding_servers,
        ID_tools_manage_templates,
        ID_tools_check_for_updates,
+       ID_tools_send_translations,
        ID_tools_restore_default_preferences,
        ID_help_report_a_problem,
        /* IDs for shortcuts (with no associated menu item) */
@@ -312,6 +316,7 @@ public:
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
+               Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_send_translations, this), ID_tools_send_translations);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
                Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
@@ -975,6 +980,26 @@ private:
                _update_news_requested = true;
        }
 
+       void tools_send_translations ()
+       {
+               SendI18NDialog* d = new SendI18NDialog (this);
+               if (d->ShowModal() == wxID_OK) {
+                       string body;
+                       body += d->name() + "\n";
+                       body += d->language() + "\n";
+                       map<string, string> translations = I18NHook::translations ();
+                       for (map<string, string>::const_iterator i = translations.begin(); i != translations.end(); ++i) {
+                               body += i->first + "\n" + i->second + "\n";
+                       }
+                       list<string> to;
+                       to.push_back ("carl@dcpomatic.com");
+                       Emailer emailer (d->email(), to, "DCP-o-matic translations", body);
+                       emailer.send ("main.carlh.net", 2525);
+               }
+
+               d->Destroy ();
+       }
+
        void help_about ()
        {
                AboutDialog* d = new AboutDialog (this);
@@ -1201,6 +1226,7 @@ private:
                add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
                add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
                add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
+               add_item (tools, _("Send translations..."), ID_tools_send_translations, 0);
                tools->AppendSeparator ();
                add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
 
index f7bc4829ddf908555781f478602b949880161ed5..84dcd761fdbfdc914397ef15639ea5fc5bc7b5b2 100644 (file)
 #include "lib/cross.h"
 #include <wx/wx.h>
 #include <boost/bind.hpp>
-#include <boost/filesystem.hpp>
+
+using std::map;
+using std::string;
+
+map<string, string> I18NHook::_translations;
 
 I18NHook::I18NHook (wxWindow* window)
        : _window (window)
@@ -40,6 +44,7 @@ I18NHook::handle (wxMouseEvent& ev)
        InstantI18NDialog* d = new InstantI18NDialog (_window, get_text());
        d->ShowModal();
        set_text (d->get());
+       d->Destroy ();
 
        wxWindow* w = _window;
        while (w) {
@@ -51,14 +56,5 @@ I18NHook::handle (wxMouseEvent& ev)
 
        ev.Skip ();
 
-       boost::filesystem::path file = "instant_i18n";
-
-       FILE* f = fopen_boost (file, "a");
-       if (!f) {
-               error_dialog (_window, wxString::Format(_("Could not open translation file %s"), std_to_wx(file.string()).data()));
-               return;
-       }
-       fprintf (f, "%s\n", wx_to_std(original).c_str());
-       fprintf (f, "%s\n", wx_to_std(get_text()).c_str());
-       fclose (f);
+       _translations[wx_to_std(original)] = wx_to_std(get_text());
 }
index 9462e3f7f40fe0a4b2338e3a1f36089073c6c5e2..106d9d8c4f4edf60657f77b5ad963a467756e8d5 100644 (file)
@@ -22,6 +22,7 @@
 #define DCPOMATIC_I18N_HOOK_H
 
 #include <wx/wx.h>
+#include <map>
 
 class I18NHook
 {
@@ -31,10 +32,16 @@ public:
        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;
+
+       static std::map<std::string, std::string> _translations;
 };
 
 #endif
diff --git a/src/wx/send_i18n_dialog.cc b/src/wx/send_i18n_dialog.cc
new file mode 100644 (file)
index 0000000..a437c92
--- /dev/null
@@ -0,0 +1,76 @@
+/*
+    Copyright (C) 2018 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/>.
+
+*/
+
+#include "send_i18n_dialog.h"
+#include "wx_util.h"
+#include "i18n_hook.h"
+#include <wx/listctrl.h>
+
+using std::string;
+using std::map;
+
+SendI18NDialog::SendI18NDialog (wxWindow* parent)
+       : wxDialog (parent, wxID_ANY, _("Send translations"))
+{
+       wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
+
+       wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+       table->AddGrowableCol (1, 1);
+
+       add_label_to_sizer (table, this, _("Your name"), true);
+       _name = new wxTextCtrl (this, wxID_ANY);
+       table->Add (_name, 0, wxEXPAND);
+
+       add_label_to_sizer (table, this, _("Your email"), true);
+       _email = new wxTextCtrl (this, wxID_ANY);
+       table->Add (_email, 0, wxEXPAND);
+
+       add_label_to_sizer (table, this, _("Language"), true);
+       _language = new wxTextCtrl (this, wxID_ANY);
+       table->Add (_language, 0, wxEXPAND);
+
+       wxListCtrl* list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize(800, -1), wxLC_REPORT | wxLC_NO_HEADER);
+       list->AppendColumn(wxT(""), wxLIST_FORMAT_LEFT, 400);
+       list->AppendColumn(wxT(""), wxLIST_FORMAT_LEFT, 400);
+
+       map<string, string> translations = I18NHook::translations ();
+       int N = 0;
+       for (map<string, string>::const_iterator i = translations.begin(); i != translations.end(); ++i) {
+               wxListItem it;
+               it.SetId(N);
+               it.SetColumn(0);
+               it.SetText(std_to_wx(i->first));
+               list->InsertItem(it);
+               it.SetColumn(1);
+               it.SetText(std_to_wx(i->second));
+               list->SetItem(it);
+               ++N;
+       }
+
+       overall_sizer->Add (table, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
+       overall_sizer->Add (list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
+
+       wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
+       if (buttons) {
+               overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
+       }
+
+       SetSizerAndFit (overall_sizer);
+}
diff --git a/src/wx/send_i18n_dialog.h b/src/wx/send_i18n_dialog.h
new file mode 100644 (file)
index 0000000..f8d2b53
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+    Copyright (C) 2018 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/>.
+
+*/
+
+#include "wx_util.h"
+#include <wx/wx.h>
+
+class SendI18NDialog : public wxDialog
+{
+public:
+       SendI18NDialog (wxWindow* parent);
+
+       std::string name () {
+               return wx_to_std (_name->GetValue());
+       }
+
+       std::string email () {
+               return wx_to_std (_email->GetValue());
+       }
+
+       std::string language () {
+               return wx_to_std (_language->GetValue());
+       }
+
+private:
+       wxTextCtrl* _name;
+       wxTextCtrl* _email;
+       wxTextCtrl* _language;
+};
index 358d98d70301ce40361af620a38921d922bb9766..66d78a2f65743ed934d7b3869da0eb0ba5ee54a1 100644 (file)
@@ -107,6 +107,7 @@ sources = """
           screen_dialog.cc
           screens_panel.cc
           self_dkdm_dialog.cc
+          send_i18n_dialog.cc
           server_dialog.cc
           servers_list_dialog.cc
           standard_controls.cc