Fix alignment.
[dcpomatic.git] / src / wx / report_problem_dialog.cc
1 /*
2     Copyright (C) 2014-2021 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
22 #include "check_box.h"
23 #include "report_problem_dialog.h"
24 #include "static_text.h"
25 #include "wx_util.h"
26 #include "lib/config.h"
27 #include "lib/job_manager.h"
28 #include "lib/send_problem_report_job.h"
29 #include <wx/sizer.h>
30
31
32 using std::make_shared;
33 using std::string;
34 using std::shared_ptr;
35
36
37 /** @param parent Parent window.
38  *  @param film Film that we are working on, or 0.
39  */
40 ReportProblemDialog::ReportProblemDialog (wxWindow* parent, shared_ptr<Film> film)
41         : wxDialog (parent, wxID_ANY, _("Report A Problem"))
42         , _film (film)
43 {
44         _overall_sizer = new wxBoxSizer (wxVERTICAL);
45         SetSizer (_overall_sizer);
46
47         _table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
48         _table->AddGrowableCol (1, 1);
49
50         _overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
51
52         auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
53         if (buttons) {
54                 _overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
55         }
56
57         auto t = _("My problem is");
58         int flags = wxALIGN_TOP | wxLEFT | wxRIGHT;
59 #ifdef __WXOSX__
60         flags |= wxALIGN_RIGHT;
61         t += wxT (":");
62 #endif
63         auto m = new StaticText (this, t);
64         _table->Add (m, 1, flags, 6);
65
66         _summary = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(320, 240), wxTE_MULTILINE);
67         _table->Add (_summary, 1, wxEXPAND | wxALIGN_TOP);
68
69         _send_logs = new CheckBox (this, _("Send logs"));
70         _send_logs->SetValue (true);
71         _table->Add (_send_logs, 1, wxEXPAND);
72         _table->AddSpacer (0);
73
74         add_label_to_sizer (_table, this, _("Your email address"), true, 0, wxALIGN_CENTRE_VERTICAL);
75         _email = new wxTextCtrl (this, wxID_ANY, wxT (""));
76         _email->SetValue (std_to_wx (Config::instance()->kdm_from ()));
77         _table->Add (_email, 1, wxEXPAND);
78
79         /* We can't use Wrap() here as it doesn't work with markup:
80          * http://trac.wxwidgets.org/ticket/13389
81          */
82
83         wxString in = _("<i>It is important that you enter a valid email address here, otherwise I can't ask you for more details on your problem.</i>");
84         wxString out;
85         int const width = 45;
86         int current = 0;
87         for (size_t i = 0; i < in.Length(); ++i) {
88                 if (in[i] == ' ' && current >= width) {
89                         out += '\n';
90                         current = 0;
91                 } else {
92                         out += in[i];
93                         ++current;
94                 }
95         }
96
97         auto n = new StaticText (this, wxT(""));
98         n->SetLabelMarkup (out);
99         _table->AddSpacer (0);
100         _table->Add (n, 1, wxEXPAND);
101
102         _overall_sizer->Layout ();
103         _overall_sizer->SetSizeHints (this);
104
105         _summary->SetFocus ();
106 }
107
108
109 void
110 ReportProblemDialog::report ()
111 {
112         if (_email->GetValue().IsEmpty()) {
113                 error_dialog (this, _("Please enter an email address so that we can contact you with any queries about the problem."));
114                 return;
115         }
116
117         if (_email->GetValue() == "carl@dcpomatic.com" || _email->GetValue() == "cth@carlh.net") {
118                 error_dialog (this, wxString::Format(_("Enter your email address for the contact, not %s"), _email->GetValue().data()));
119                 return;
120         }
121
122         JobManager::instance()->add (make_shared<SendProblemReportJob>(_film, wx_to_std(_email->GetValue()), wx_to_std(_summary->GetValue())));
123 }
124