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