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