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