Hide warnings triggered by Ubuntu 20.04's gcc.
[dcpomatic.git] / src / wx / update_dialog.cc
1 /*
2     Copyright (C) 2012-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 "update_dialog.h"
22 #include "static_text.h"
23 #include "wx_util.h"
24 #include "lib/warnings.h"
25 DCPOMATIC_DISABLE_WARNINGS
26 #include <wx/hyperlink.h>
27 DCPOMATIC_ENABLE_WARNINGS
28
29 using std::string;
30 using boost::optional;
31
32 UpdateDialog::UpdateDialog (wxWindow* parent, optional<string> stable, optional<string> test)
33         : wxDialog (parent, wxID_ANY, _("Update"))
34 {
35         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
36
37         wxStaticText* message;
38
39         if ((stable || test) && !(stable && test)) {
40                 message = new StaticText (this, _("A new version of DCP-o-matic is available."));
41         } else {
42                 message = new StaticText (this, _("New versions of DCP-o-matic are available."));
43         }
44
45         overall_sizer->Add (message, 1, wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
46
47         wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
48
49         if (stable) {
50                 add_label_to_sizer (table, this, _("Stable version ") + std_to_wx (stable.get ()), true);
51                 wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/download", "https://dcpomatic.com/download");
52                 table->Add (h);
53         }
54
55         if (test) {
56                 add_label_to_sizer (table, this, _("Test version ") + std_to_wx (test.get ()), true);
57                 wxHyperlinkCtrl* h = new wxHyperlinkCtrl (this, wxID_ANY, "dcpomatic.com/test-download", "https://dcpomatic.com/test-download");
58                 table->Add (h);
59         }
60
61         overall_sizer->Add (table, 1, wxEXPAND | wxLEFT | wxRIGHT | wxTOP, DCPOMATIC_DIALOG_BORDER);
62
63         wxSizer* buttons = CreateButtonSizer (wxOK);
64         if (buttons) {
65                 overall_sizer->Add (buttons, 1, wxEXPAND | wxALL);
66         }
67
68         SetSizerAndFit (overall_sizer);
69 }