Nag users to backup config.xml if they make a DKDM.
[dcpomatic.git] / src / wx / nag_dialog.cc
1 /*
2     Copyright (C) 2017 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 "nag_dialog.h"
22 #include "wx_util.h"
23 #include <wx/richtext/richtextctrl.h>
24 #include <boost/foreach.hpp>
25
26 using boost::shared_ptr;
27
28 NagDialog::NagDialog (wxWindow* parent, Config::Nag nag, wxString message)
29         : wxDialog (parent, wxID_ANY, _("Important notice"))
30         , _nag (nag)
31 {
32         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
33         _text = new wxStaticText (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300));
34         sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
35
36         wxCheckBox* b = new wxCheckBox (this, wxID_ANY, _("Don't show this message again"));
37         b->SetValue (true);
38         Config::instance()->set_nagged (_nag, true);
39         sizer->Add (b, 0, wxALL, 6);
40         b->Bind (wxEVT_CHECKBOX, bind (&NagDialog::shut_up, this, _1));
41
42         wxStdDialogButtonSizer* buttons = CreateStdDialogButtonSizer (0);
43         sizer->Add (CreateSeparatedSizer(buttons), wxSizerFlags().Expand().DoubleBorder());
44         buttons->SetAffirmativeButton (new wxButton (this, wxID_OK));
45         buttons->Realize ();
46
47         SetSizer (sizer);
48         sizer->Layout ();
49         sizer->SetSizeHints (this);
50
51         _text->SetLabelMarkup (message);
52 }
53
54 void
55 NagDialog::shut_up (wxCommandEvent& ev)
56 {
57         Config::instance()->set_nagged (_nag, ev.IsChecked());
58 }
59
60 void
61 NagDialog::maybe_nag (wxWindow* parent, Config::Nag nag, wxString message)
62 {
63         if (!Config::instance()->nagged (nag)) {
64                 NagDialog* d = new NagDialog (parent, nag, message);
65                 d->ShowModal ();
66                 d->Destroy ();
67         }
68 }