C++11 tidying.
[dcpomatic.git] / src / wx / nag_dialog.cc
1 /*
2     Copyright (C) 2017-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 "nag_dialog.h"
23 #include "wx_util.h"
24 #include "static_text.h"
25 #include "check_box.h"
26
27
28 using std::shared_ptr;
29 #if BOOST_VERSION >= 106100
30 using namespace boost::placeholders;
31 #endif
32
33
34 static constexpr int width = 400;
35
36
37 NagDialog::NagDialog (wxWindow* parent, Config::Nag nag, wxString message, bool can_cancel)
38         : wxDialog (parent, wxID_ANY, _("Important notice"))
39         , _nag (nag)
40 {
41         auto sizer = new wxBoxSizer (wxVERTICAL);
42         _text = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(width, 300));
43         sizer->Add (_text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
44
45         auto b = new CheckBox (this, _("Don't show this message again"));
46         sizer->Add (b, 0, wxALL, 6);
47         b->Bind (wxEVT_CHECKBOX, bind (&NagDialog::shut_up, this, _1));
48
49         int flags = wxOK;
50         if (can_cancel) {
51                 flags |= wxCANCEL;
52         }
53         auto buttons = CreateSeparatedButtonSizer (flags);
54         if (buttons) {
55                 sizer->Add(buttons, wxSizerFlags().Expand().DoubleBorder());
56         }
57
58         _text->SetLabelMarkup (message);
59         _text->Wrap (width);
60
61         SetSizer (sizer);
62         sizer->Layout ();
63         sizer->SetSizeHints (this);
64 }
65
66
67 void
68 NagDialog::shut_up (wxCommandEvent& ev)
69 {
70         Config::instance()->set_nagged (_nag, ev.IsChecked());
71 }
72
73
74 /** @return true if the user clicked Cancel */
75 bool
76 NagDialog::maybe_nag (wxWindow* parent, Config::Nag nag, wxString message, bool can_cancel)
77 {
78         if (Config::instance()->nagged(nag)) {
79                 return false;
80         }
81
82         auto d = new NagDialog (parent, nag, message, can_cancel);
83         int const r = d->ShowModal();
84         d->Destroy ();
85
86         return r == wxID_CANCEL;
87 }