c4167c7e7472215260de71c773b17390cb21b7d1
[dcpomatic.git] / src / wx / about_dialog.cc
1 /*
2     Copyright (C) 2013-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 /** @file  src/wx/about_dialog.cc
22  *  @brief The "about DCP-o-matic" dialogue box.
23  */
24
25 #include "about_dialog.h"
26 #include "wx_util.h"
27 #include "static_text.h"
28 #include "lib/version.h"
29 #include "lib/compose.hpp"
30 #include "lib/warnings.h"
31 DCPOMATIC_DISABLE_WARNINGS
32 #include <wx/notebook.h>
33 #include <wx/hyperlink.h>
34 DCPOMATIC_ENABLE_WARNINGS
35
36 using std::vector;
37
38 AboutDialog::AboutDialog (wxWindow* parent)
39         : wxDialog (parent, wxID_ANY, _("About DCP-o-matic"))
40 {
41         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
42         auto sizer = new wxBoxSizer (wxVERTICAL);
43
44         wxFont title_font (*wxNORMAL_FONT);
45         title_font.SetPointSize (title_font.GetPointSize() + 12);
46         title_font.SetWeight (wxFONTWEIGHT_BOLD);
47
48         wxFont subtitle_font (*wxNORMAL_FONT);
49         subtitle_font.SetPointSize (subtitle_font.GetPointSize() + 2);
50
51         wxFont version_font (*wxNORMAL_FONT);
52         version_font.SetWeight (wxFONTWEIGHT_BOLD);
53
54         auto t = new StaticText (this, _("DCP-o-matic"));
55         t->SetFont (title_font);
56         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 16));
57
58         wxString s;
59         if (strcmp (dcpomatic_git_commit, "release") == 0) {
60                 t = new StaticText (this, std_to_wx(String::compose("Version %1", dcpomatic_version)));
61         } else {
62                 t = new StaticText (this, std_to_wx(String::compose("Version %1 git %2", dcpomatic_version, dcpomatic_git_commit)));
63         }
64         t->SetFont (version_font);
65         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 2));
66         sizer->AddSpacer (12);
67
68         t = new StaticText (
69                 this,
70                 _("Free, open-source DCP creation from almost anything."),
71                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
72                 );
73         t->SetFont (subtitle_font);
74
75         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
76
77         auto h = new wxHyperlinkCtrl (
78                 this, wxID_ANY,
79                 wxT ("dcpomatic.com"),
80                 wxT ("https://dcpomatic.com")
81                 );
82
83         sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8));
84
85         t = new StaticText (
86                 this,
87                 _("(C) 2012-2021 Carl Hetherington, Terrence Meiczinger\n Ole Laursen"),
88                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
89                 );
90
91         sizer->Add (t, wxSizerFlags().Centre().Border(wxLEFT | wxRIGHT, 16));
92
93         _notebook = new wxNotebook (this, wxID_ANY);
94
95         wxArrayString written_by;
96         written_by.Add (wxT ("Carl Hetherington"));
97         written_by.Add (wxT ("Terrence Meiczinger"));
98         written_by.Add (wxT ("Mart Jansink"));
99         written_by.Add (wxT ("Ole Laursen"));
100         add_section (_("Written by"), written_by);
101
102         wxArrayString with_help_from;
103         with_help_from.Add (wxT ("David Vignoni"));
104         with_help_from.Add (wxT ("Dennis Couzin"));
105         with_help_from.Add (wxT ("Carsten Kurz"));
106         with_help_from.Add (wxT ("Gérald Maruccia"));
107         with_help_from.Add (wxT ("Julian van Mil"));
108         with_help_from.Add (wxT ("Lilian Lefranc"));
109         add_section (_("With help from"), with_help_from);
110
111         wxArrayString translated_by;
112         translated_by.Add (wxT ("Manuel AC"));
113         translated_by.Add (wxT ("Max Aeschlimann"));
114         translated_by.Add (wxT ("Thiago Andre"));
115         translated_by.Add (wxT ("Felice D'Andrea"));
116         translated_by.Add (wxT ("Grégoire Ausina"));
117         translated_by.Add (wxT ("Tomáš Begeni"));
118         translated_by.Add (wxT ("Fabio \"Zak\" Belli"));
119         translated_by.Add (wxT ("Cherif Ben Brahim"));
120         translated_by.Add (wxT ("Massimiliano Broggi"));
121         translated_by.Add (wxT ("Dan Cohen"));
122         translated_by.Add (wxT ("Davide Dall'AraCiao"));
123         translated_by.Add (wxT ("Uwe Dittes"));
124         translated_by.Add (wxT ("William Fanelli"));
125         translated_by.Add (wxT ("Max M. Fuhlendorf"));
126         translated_by.Add (wxT ("Tomáš Hlaváč"));
127         translated_by.Add (wxT ("Thierry Journet"));
128         translated_by.Add (wxT ("Adam Klotblixt"));
129         translated_by.Add (wxT ("Theo Kooijmans"));
130         translated_by.Add (wxT ("Carsten Kurz"));
131         translated_by.Add (wxT ("Lilian Lefranc"));
132         translated_by.Add (wxT ("Gérald Maruccia"));
133         translated_by.Add (wxT ("Mattias Mattsson"));
134         translated_by.Add (wxT ("Mike Mazur"));
135         translated_by.Add (wxT ("Rob van Nieuwkerk"));
136         translated_by.Add (wxT ("Anders Uhl Pedersen"));
137         translated_by.Add (wxT ("Olivier Perriere"));
138         translated_by.Add (wxT ("Markus Raab"));
139         translated_by.Add (wxT ("Tiago Casal Ribeiro"));
140         translated_by.Add (wxT ("Davide Sanvito"));
141         translated_by.Add (wxT ("Marek Skrzelowski"));
142         translated_by.Add (wxT ("Igor Voytovich"));
143         translated_by.Add (wxT ("Rov (若文)"));
144         translated_by.Add (wxT ("刘汉源"));
145         translated_by.Add (wxT ("Gökhan Aksoy"));
146         add_section (_("Translated by"), translated_by);
147
148         wxArrayString patrons;
149         patrons.Add ("Luproduction");
150         patrons.Add ("Lightbender Post");
151         patrons.Add ("Drop-out Cinema");
152         patrons.Add ("Pilotkino LLC");
153         add_section (_("Patrons"), patrons);
154
155         wxArrayString subscribers;
156         #include "subscribers.cc"
157         add_section (_("Subscribers"), subscribers);
158
159         wxArrayString supported_by;
160         #include "supporters.cc"
161         add_section (_("Also supported by"), supported_by);
162
163         wxArrayString tested_by;
164         tested_by.Add (wxT ("Manuel AC"));
165         tested_by.Add (wxT ("Trever Anderson"));
166         tested_by.Add (wxT ("JP Beauviala"));
167         tested_by.Add (wxT ("Mike Blakesley"));
168         tested_by.Add (wxT ("David Booty"));
169         tested_by.Add (wxT ("Antonio Casado"));
170         tested_by.Add (wxT ("Roop Chand"));
171         tested_by.Add (wxT ("Daniel Chauvet"));
172         tested_by.Add (wxT ("Adam Colt"));
173         tested_by.Add (wxT ("John Convertino"));
174         tested_by.Add (wxT ("Andreas Eli"));
175         tested_by.Add (wxT ("Leo Enticknap"));
176         tested_by.Add (wxT ("Jose Angel Velasco Fernandez"));
177         tested_by.Add (wxT ("Maurizio Giampà"));
178         tested_by.Add (wxT ("Luke Granger-Brown"));
179         tested_by.Add (wxT ("Sumit Guha"));
180         tested_by.Add (wxT ("Steve Guttag"));
181         tested_by.Add (wxT ("Patrick Haderer"));
182         tested_by.Add (wxT ("Bill Hamell"));
183         tested_by.Add (wxT ("Groet Han"));
184         tested_by.Add (wxT ("Jonathan Jensen"));
185         tested_by.Add (wxT ("Thierry Journet"));
186         tested_by.Add (wxT ("Markus Kalb"));
187         tested_by.Add (wxT ("Ada de Kamper"));
188         tested_by.Add (wxT ("Stefan Karner"));
189         tested_by.Add (wxT ("Adam Keay"));
190         tested_by.Add (wxT ("Simon Kesselman"));
191         tested_by.Add (wxT ("Pepijn Klijs"));
192         tested_by.Add (wxT ("Denzil Kriekenbeek"));
193         tested_by.Add (wxT ("Carsten Kurz"));
194         tested_by.Add (wxT ("Bill Lam"));
195         tested_by.Add (wxT ("Lilian Lefranc"));
196         tested_by.Add (wxT ("Sebastian Leitner"));
197         tested_by.Add (wxT ("Olivier Lemaire"));
198         tested_by.Add (wxT ("Gavin Lewarne"));
199         tested_by.Add (wxT ("Gérald Maruccia"));
200         tested_by.Add (wxT ("George Mazarakis"));
201         tested_by.Add (wxT ("Mattias Mattsson"));
202         tested_by.Add (wxT ("Will Meadows"));
203         tested_by.Add (wxT ("Brad Miller"));
204         tested_by.Add (wxT ("Ash Mitchell"));
205         tested_by.Add (wxT ("Rob van Nieuwkerk"));
206         tested_by.Add (wxT ("Anders Nordentoft-Madsen"));
207         tested_by.Add (wxT ("Mauro Ottonello"));
208         tested_by.Add (wxT ("Peter Puchner"));
209         tested_by.Add (wxT ("Markus Raab"));
210         tested_by.Add (wxT ("Michael Reckert"));
211         tested_by.Add (wxT ("Greg Rooke"));
212         tested_by.Add (wxT ("Elad Saad"));
213         tested_by.Add (wxT ("Karim Senoucci"));
214         tested_by.Add (wxT ("Hordur Valgardsson"));
215         tested_by.Add (wxT ("Xenophon the Vampire"));
216         tested_by.Add (wxT ("Simon Vannarath"));
217         tested_by.Add (wxT ("Igor Voytovich"));
218         tested_by.Add (wxT ("Andrew Walls"));
219         tested_by.Add (wxT ("Andreas Weiss"));
220         tested_by.Add (wxT ("Paul Willmott"));
221         tested_by.Add (wxT ("Wolfgang Woehl"));
222         add_section (_("Tested by"), tested_by);
223
224         sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16));
225
226         overall_sizer->Add (sizer);
227
228         wxSizer* buttons = CreateButtonSizer (wxOK);
229         if (buttons) {
230                 overall_sizer->Add (buttons, 1, wxEXPAND | wxALL, 4);
231         }
232
233         SetSizerAndFit (overall_sizer);
234 }
235
236 /** Add a section of credits.
237  *  @param name Name of section.
238  *  @param credits List of names.
239  */
240 void
241 AboutDialog::add_section (wxString name, wxArrayString credits)
242 {
243         static auto first = true;
244         int const N = 4;
245
246         auto panel = new wxScrolledWindow (_notebook);
247         panel->SetMaxSize (wxSize (-1, 380));
248         panel->EnableScrolling (false, true);
249         panel->SetScrollRate (0, 32);
250         auto overall_sizer = new wxBoxSizer (wxHORIZONTAL);
251
252         vector<wxSizer*> sizers;
253
254         for (int i = 0; i < N; ++i) {
255                 sizers.push_back (new wxBoxSizer (wxVERTICAL));
256                 overall_sizer->Add (sizers.back (), 1, wxEXPAND | wxALL, 6);
257         }
258
259         int c = 0;
260         for (size_t i = 0; i < credits.Count(); ++i) {
261                 add_label_to_sizer (sizers[c], panel, credits[i], false);
262                 ++c;
263                 if (c == N) {
264                         c = 0;
265                 }
266         }
267
268         panel->SetSizerAndFit (overall_sizer);
269         _notebook->AddPage (panel, name, first);
270         first = false;
271 }