diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-11-06 21:41:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-11-06 21:41:43 +0000 |
| commit | 90ec60c9e5b45453525368842345ad1a6498fa61 (patch) | |
| tree | 720e97d855e98c4c62ffecfe4e2945a32ab27dc9 /src/wx/report_problem_dialog.cc | |
| parent | b17b68bb8e564601c7ea80ceea853fa564998c39 (diff) | |
Basic support for emailing a report of a problem (#43).
Diffstat (limited to 'src/wx/report_problem_dialog.cc')
| -rw-r--r-- | src/wx/report_problem_dialog.cc | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/wx/report_problem_dialog.cc b/src/wx/report_problem_dialog.cc new file mode 100644 index 000000000..78c092921 --- /dev/null +++ b/src/wx/report_problem_dialog.cc @@ -0,0 +1,84 @@ +/* + Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + + This program 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. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "report_problem_dialog.h" +#include "wx_util.h" +#include "lib/config.h" +#include "lib/job_manager.h" +#include "lib/send_problem_report_job.h" +#include <wx/sizer.h> + +using std::string; +using boost::shared_ptr; + +ReportProblemDialog::ReportProblemDialog (wxWindow* parent, shared_ptr<Film> film) + : wxDialog (parent, wxID_ANY, _("Report A Problem")) + , _film (film) +{ + _overall_sizer = new wxBoxSizer (wxVERTICAL); + SetSizer (_overall_sizer); + + _table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); + _table->AddGrowableCol (1, 1); + + _overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); + + wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL); + if (buttons) { + _overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder()); + } + + wxString t = _("My problem is"); + int flags = wxALIGN_TOP | wxLEFT | wxRIGHT; +#ifdef __WXOSX__ + if (left) { + flags |= wxALIGN_RIGHT; + t += wxT (":"); + } +#endif + wxStaticText* m = new wxStaticText (this, wxID_ANY, t); + _table->Add (m, 1, flags, 6); + + _summary = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (320, 240), wxTE_MULTILINE); + _table->Add (_summary, 1, wxEXPAND | wxALIGN_TOP); + + _send_logs = new wxCheckBox (this, wxID_ANY, _("Send logs")); + _send_logs->SetValue (true); + _table->Add (_send_logs, 1, wxEXPAND); + _table->AddSpacer (0); + + add_label_to_sizer (_table, this, _("Contact email"), true); + _email = new wxTextCtrl (this, wxID_ANY, wxT ("")); + _email->SetValue (std_to_wx (Config::instance()->kdm_from ())); + _table->Add (_email, 1, wxEXPAND); + + _overall_sizer->Layout (); + _overall_sizer->SetSizeHints (this); +} + +void +ReportProblemDialog::report () +{ + if (_email->GetValue().IsEmpty ()) { + error_dialog (this, _("Please enter an email address so that we can contact you with any queries about the problem.")); + return; + } + + JobManager::instance()->add (shared_ptr<Job> (new SendProblemReportJob (_film, wx_to_std (_email->GetValue ()), wx_to_std (_summary->GetValue ())))); +} |
