d4a06a2c5697c176602079fbe468dd39bcdd6197
[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 ("Olivier Perriere"));
95         translated_by.Add (wxT ("Lilian Lefranc"));
96         translated_by.Add (wxT ("Thierry Journet"));
97         translated_by.Add (wxT ("Massimiliano Broggi"));
98         translated_by.Add (wxT ("Manuel AC"));
99         translated_by.Add (wxT ("Adam Klotblixt"));
100         add_section (_("Translated by"), translated_by);
101
102         wxArrayString supported_by;
103         supported_by.Add (wxT ("Carsten Kurz"));
104         supported_by.Add (wxT ("Wolfgang Woehl"));
105         supported_by.Add (wxT ("Manual AC"));
106         supported_by.Add (wxT ("Theo Lipfert"));
107         supported_by.Add (wxT ("Olivier Lemaire"));
108         supported_by.Add (wxT ("Mattias Mattsson"));
109         supported_by.Add (wxT ("Andrä Steiner"));
110         supported_by.Add (wxT ("Jonathan Jensen"));
111         supported_by.Add (wxT ("Kjarten Michaelsen"));
112         supported_by.Add (wxT ("Jussi Siponen"));
113         supported_by.Add (wxT ("Cinema Clarici"));
114         supported_by.Add (wxT ("Evan Freeze"));
115         supported_by.Add (wxT ("Flor Guillaume"));
116         supported_by.Add (wxT ("Adam Klotblixt "));
117         supported_by.Add (wxT ("Lilian Lefranc"));
118         supported_by.Add (wxT ("Gavin Lewarne"));
119         supported_by.Add (wxT ("Lasse Salling"));
120         supported_by.Add (wxT ("Andres Fink"));
121         supported_by.Add (wxT ("Kieran Carroll"));
122         supported_by.Add (wxT ("Kambiz Afshar"));
123         supported_by.Add (wxT ("Sean Leigh"));
124         supported_by.Add (wxT ("Wolfram Weber"));
125         supported_by.Add (wxT ("Randy Stankey"));
126         supported_by.Add (wxT ("Frank Cianciolo"));
127         supported_by.Add (wxT ("Rodolfo Giuliano"));
128         supported_by.Add (wxT ("Sylvain Mielle"));
129         supported_by.Add (wxT ("Ivan Pullman"));
130         add_section (_("Supported by"), supported_by);
131
132         sizer->Add (_notebook, wxSizerFlags().Centre().Border(wxALL, 16).Expand());
133
134         overall_sizer->Add (sizer);
135
136         wxSizer* buttons = CreateButtonSizer (wxOK);
137         if (buttons) {
138                 overall_sizer->Add (buttons, 1, wxEXPAND | wxALL, 4);
139         }
140         
141         SetSizerAndFit (overall_sizer);
142 }
143
144 void
145 AboutDialog::add_section (wxString name, wxArrayString credits)
146 {
147         static bool first = true;
148         int const N = 3;
149
150         wxPanel* panel = new wxPanel (_notebook, wxID_ANY);
151         wxSizer* overall_sizer = new wxBoxSizer (wxHORIZONTAL);
152
153         vector<wxSizer*> sizers;
154         
155         for (int i = 0; i < N; ++i) {
156                 sizers.push_back (new wxBoxSizer (wxVERTICAL));
157                 overall_sizer->Add (sizers.back (), 1, wxEXPAND | wxALL, 6);
158         }
159
160         int c = 0;
161         for (size_t i = 0; i < credits.Count(); ++i) {
162                 add_label_to_sizer (sizers[c], panel, credits[i], false);
163                 ++c;
164                 if (c == N) {
165                         c = 0;
166                 }
167         }
168
169         panel->SetSizerAndFit (overall_sizer);
170         _notebook->AddPage (panel, name, first);
171         first = false;
172 }