Fix build.
[dcpomatic.git] / src / wx / about_dialog.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <wx/notebook.h>
21 #include <wx/hyperlink.h>
22 #include "lib/version.h"
23 #include "lib/compose.hpp"
24 #include "about_dialog.h"
25 #include "wx_util.h"
26
27 using std::vector;
28
29 AboutDialog::AboutDialog (wxWindow* parent)
30         : wxDialog (parent, wxID_ANY, _("About DCP-o-matic"))
31 {
32         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
33         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
34         
35         wxFont title_font (*wxNORMAL_FONT);
36         title_font.SetPointSize (title_font.GetPointSize() + 12);
37         title_font.SetWeight (wxFONTWEIGHT_BOLD);
38
39         wxFont subtitle_font (*wxNORMAL_FONT);
40         subtitle_font.SetPointSize (subtitle_font.GetPointSize() + 2);
41
42         wxFont version_font (*wxNORMAL_FONT);
43         version_font.SetWeight (wxFONTWEIGHT_BOLD);
44         
45         wxStaticText* t = new wxStaticText (this, wxID_ANY, _("DCP-o-matic"));
46         t->SetFont (title_font);
47         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 16));
48
49         wxString s;
50         if (strcmp (dcpomatic_git_commit, "release") == 0) {
51                 t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1", dcpomatic_version)));
52         } else {
53                 t = new wxStaticText (this, wxID_ANY, std_to_wx (String::compose ("Version %1 git %2", dcpomatic_version, dcpomatic_git_commit)));
54         }
55         t->SetFont (version_font);
56         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 2));
57         sizer->AddSpacer (12);
58
59         t = new wxStaticText (
60                 this, wxID_ANY,
61                 _("Free, open-source DCP generation from almost anything."),
62                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
63                 );
64         t->SetFont (subtitle_font);
65         
66         sizer->Add (t, wxSizerFlags().Centre().Border(wxALL, 8));
67
68         wxHyperlinkCtrl* h = new wxHyperlinkCtrl (
69                 this, wxID_ANY,
70                 wxT ("dcpomatic.com"),
71                 wxT ("http://dcpomatic.com")
72                 );
73
74         sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8));
75
76         t = new wxStaticText (
77                 this, wxID_ANY,
78                 _("(C) 2012-2014 Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen"),
79                 wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER
80                 );
81         
82         sizer->Add (t, wxSizerFlags().Centre().Border(wxLEFT | wxRIGHT, 16));
83
84         _notebook = new wxNotebook (this, wxID_ANY);
85
86         wxArrayString written_by;
87         written_by.Add (wxT ("Carl Hetherington"));
88         written_by.Add (wxT ("Terrence Meiczinger"));
89         written_by.Add (wxT ("Paul Davis"));
90         written_by.Add (wxT ("Ole Laursen"));
91         add_section (_("Written by"), written_by);
92
93         wxArrayString translated_by;
94         translated_by.Add (wxT ("Adam Klotblixt"));
95         translated_by.Add (wxT ("Lilian Lefranc"));
96         translated_by.Add (wxT ("Manuel AC"));
97         translated_by.Add (wxT ("Markus Raab"));
98         translated_by.Add (wxT ("Massimiliano Broggi"));
99         translated_by.Add (wxT ("Olivier Perriere"));
100         translated_by.Add (wxT ("Thierry Journet"));
101         translated_by.Add (wxT ("William Fanelli"));
102         add_section (_("Translated by"), translated_by);
103
104         wxArrayString supported_by;
105         supported_by.Add (wxT ("Adam Colt"));
106         supported_by.Add (wxT ("Adam Klotblixt"));
107         supported_by.Add (wxT ("Aldo Midali"));
108         supported_by.Add (wxT ("Andres Fink"));
109         supported_by.Add (wxT ("Andrä Steiner"));
110         supported_by.Add (wxT ("Carsten Kurz"));
111         supported_by.Add (wxT ("Cinema Clarici"));
112         supported_by.Add (wxT ("Evan Freeze"));
113         supported_by.Add (wxT ("Filip Kovcin"));
114         supported_by.Add (wxT ("Flor Guillaume"));
115         supported_by.Add (wxT ("Frank Cianciolo"));
116         supported_by.Add (wxT ("Frank de Wulf"));
117         supported_by.Add (wxT ("Gavin Lewarne"));
118         supported_by.Add (wxT ("Ivan Pullman"));
119         supported_by.Add (wxT ("Jeff Boot"));
120         supported_by.Add (wxT ("Jonathan Jensen"));
121         supported_by.Add (wxT ("Jussi Siponen"));
122         supported_by.Add (wxT ("Kambiz Afshar"));
123         supported_by.Add (wxT ("Kieran Carroll"));
124         supported_by.Add (wxT ("Kjarten Michaelsen"));
125         supported_by.Add (wxT ("Lasse Salling"));
126         supported_by.Add (wxT ("Lilian Lefranc"));
127         supported_by.Add (wxT ("Lindsay Morris"));
128         supported_by.Add (wxT ("Manual AC"));
129         supported_by.Add (wxT ("Mattias Mattsson"));
130         supported_by.Add (wxT ("Mike Stiebing"));
131         supported_by.Add (wxT ("Olivier Lemaire"));
132         supported_by.Add (wxT ("Randy Stankey"));
133         supported_by.Add (wxT ("Rodolfo Giuliano"));
134         supported_by.Add (wxT ("Sean Leigh"));
135         supported_by.Add (wxT ("Sylvain Mielle"));
136         supported_by.Add (wxT ("Theo Lipfert"));
137         supported_by.Add (wxT ("Tim O'Brien"));
138         supported_by.Add (wxT ("Wolfgang Woehl"));
139         supported_by.Add (wxT ("Wolfram Weber"));
140         add_section (_("Supported by"), supported_by);
141
142         wxArrayString tested_by;
143         tested_by.Add (wxT ("Ada de Kamper"));
144         tested_by.Add (wxT ("Adam Colt"));
145         tested_by.Add (wxT ("Adam Keay"));
146         tested_by.Add (wxT ("Anders Nordentoft-Madsen"));
147         tested_by.Add (wxT ("Andreas Eli"));
148         tested_by.Add (wxT ("Andreas Weiss"));
149         tested_by.Add (wxT ("Bill Lam"));
150         tested_by.Add (wxT ("Brad Miller"));
151         tested_by.Add (wxT ("Carsten Kurz"));
152         tested_by.Add (wxT ("David Booty"));
153         tested_by.Add (wxT ("Denzil Kriekenbeek"));
154         tested_by.Add (wxT ("Gavin Lewarne"));
155         tested_by.Add (wxT ("Greg Rooke"));
156         tested_by.Add (wxT ("Gérald Maruccia"));
157         tested_by.Add (wxT ("John Convertino"));
158         tested_by.Add (wxT ("Jonathan Jensen"));
159         tested_by.Add (wxT ("Karim Senoucci"));
160         tested_by.Add (wxT ("Lilian Lefranc"));
161         tested_by.Add (wxT ("Luke Granger-Brown"));
162         tested_by.Add (wxT ("Markus Raab"));
163         tested_by.Add (wxT ("Mattias Mattsson"));
164         tested_by.Add (wxT ("Maurizio Giampà"));
165         tested_by.Add (wxT ("Mauro Ottonello"));
166         tested_by.Add (wxT ("Mike Blakesley"));
167         tested_by.Add (wxT ("Olivier Lemaire"));
168         tested_by.Add (wxT ("Patrick Haderer"));
169         tested_by.Add (wxT ("Paul Willmott"));
170         tested_by.Add (wxT ("Pepijn Klijs"));
171         tested_by.Add (wxT ("Peter Puchner"));
172         tested_by.Add (wxT ("Roop Chand"));
173         tested_by.Add (wxT ("Simon Kesselman"));
174         tested_by.Add (wxT ("Simon Vannarath"));
175         tested_by.Add (wxT ("Stefan Karner"));
176         tested_by.Add (wxT ("Steve Guttag"));
177         tested_by.Add (wxT ("Thierry Journet"));
178         tested_by.Add (wxT ("Trever Anderson"));
179         tested_by.Add (wxT ("Will Meadows"));
180         tested_by.Add (wxT ("Wolfgang Woehl"));
181         add_section (_("Tested by"), tested_by);
182         
183         sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
184
185         overall_sizer->Add (sizer);
186
187         wxSizer* buttons = CreateButtonSizer (wxOK);
188         if (buttons) {
189                 overall_sizer->Add (buttons, 1, wxEXPAND | wxALL, 4);
190         }
191         
192         SetSizerAndFit (overall_sizer);
193 }
194
195 void
196 AboutDialog::add_section (wxString name, wxArrayString credits)
197 {
198         static bool first = true;
199         int const N = 3;
200
201         wxPanel* panel = new wxPanel (_notebook, wxID_ANY);
202         wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
203
204         vector<wxSizer*> sizers;
205         
206         for (int i = 0; i < N; ++i) {
207                 sizers.push_back (new wxBoxSizer (wxVERTICAL));
208                 overall_sizer->Add (sizers.back (), 1, wxEXPAND | wxALL, 6);
209         }
210
211         int c = 0;
212         for (size_t i = 0; i < credits.Count(); ++i) {
213                 add_label_to_sizer (sizers[c], panel, credits[i], false);
214                 ++c;
215                 if (c == N) {
216                         c = 0;
217                 }
218         }
219
220         panel->SetSizerAndFit (overall_sizer);
221         _notebook->AddPage (panel, name, first);
222         first = false;
223 }