Merge branch 'master' into nikitakit_restructure
[synfig.git] / synfig-studio / src / gui / dialogs / about.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file about.cpp
3 **      \brief About dialog implementation
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2008 Paul Wise
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include <vector>
33
34 #include <gtk/gtk.h>
35
36 #include <gtkmm/aboutdialog.h>
37
38 #include <ETL/stringf>
39
40 #include <synfig/general.h>
41
42 // This is generated at make time from .svn or .git/svn or autorevision.conf
43 #include <autorevision.h>
44
45 #include "about.h"
46 #include "app.h"
47
48 #include "general.h"
49
50 #endif
51
52 /* === U S I N G =========================================================== */
53
54 using namespace std;
55 using namespace etl;
56 using namespace studio;
57
58 /* === M A C R O S ========================================================= */
59
60 #ifndef VERSION
61 #define VERSION "unknown"
62 #define PACKAGE "synfigstudio"
63 #endif
64
65 #ifdef WIN32
66 #       ifdef IMAGE_DIR
67 #               undef IMAGE_DIR
68 #               define IMAGE_DIR "share\\pixmaps"
69 #       endif
70 #endif
71
72 #ifndef IMAGE_DIR
73 #       define IMAGE_DIR "/usr/local/share/pixmaps"
74 #endif
75
76 #ifndef IMAGE_EXT
77 #       define IMAGE_EXT        "png"
78 #endif
79
80 #define stringify_(x) #x
81 #define stringify(x) stringify_(x)
82
83 /* === G L O B A L S ======================================================= */
84
85 extern const guint gtk_major_version;
86 extern const guint gtk_minor_version;
87 extern const guint gtk_micro_version;
88 extern const guint gtk_binary_age;
89 extern const guint gtk_interface_age;
90
91 /* === P R O C E D U R E S ================================================= */
92
93 /* === M E T H O D S ======================================================= */
94
95 About::About()
96 {
97
98 #ifdef HAVE_GTK_ABOUTDIALOG_SET_PROGRAM_NAME
99         set_program_name(PACKAGE_NAME);
100 #else
101         set_name(PACKAGE_NAME);
102 #endif
103         set_version(VERSION);
104         set_comments(_("2D vector animation studio"));
105
106         set_url_hook(sigc::mem_fun(*this, &About::on_link_clicked));
107         set_website("http://synfig.org/");
108         set_website_label(_("Visit the Synfig website"));
109
110         set_copyright(_("Copyright 2001-2008\nRobert B. Quattlebaum Jr.,\nAdrian Bentley and Synfig contributors"));
111         Glib::ustring license =
112                 "This program is free software; you can redistribute it and/or modify "
113                 "it under the terms of the GNU General Public License as published by "
114                 "the Free Software Foundation; either version 2 of the License, or "
115                 "(at your option) any later version.\n\n"
116
117                 "This program is distributed in the hope that it will be useful, "
118                 "but WITHOUT ANY WARRANTY; without even the implied warranty of "
119                 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
120                 "GNU General Public License for more details.\n\n"
121
122                 "You should have received a copy of the GNU General Public License along "
123                 "with this program; if not, write to the Free Software Foundation, Inc., "
124                 "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or visit: http://www.gnu.org/";
125         set_license(license);
126 #ifdef HAVE_GTK_ABOUTDIALOG_SET_WRAP_LICENSE
127         set_wrap_license(true);
128 #endif
129
130         std::vector<Glib::ustring> authors;
131         authors.push_back(_("Original developers:"));
132         authors.push_back("");
133         authors.push_back("Robert B. Quattlebaum Jr (darco)");
134         authors.push_back("Adrian Bentley");
135         authors.push_back("");
136         authors.push_back(_("Contributors:"));
137         authors.push_back("");
138         authors.push_back("Adrian Winchell (SnapSilverlight)");
139         authors.push_back("Andreas Jochens");
140         authors.push_back("Carlos López González (genete)");
141         authors.push_back("Carlos A. Sosa Navarro");
142         authors.push_back("Chris Moore (dooglus)");
143         authors.push_back("Chris Norman (pixelgeek)");
144         authors.push_back("Cyril Brulebois (KiBi)");
145         authors.push_back("Daniel Fort");
146         authors.push_back("Daniel Hornung (rubikcube)");
147         authors.push_back("David Roden (Bombe)");
148         authors.push_back("Dmitriy Pomerantsev (Atrus)");
149         authors.push_back("Douglas Lau");
150         authors.push_back("Gerald Young (Yoyobuae)");
151         authors.push_back("Gerco Ballintijn");
152         authors.push_back("IL'dar AKHmetgaleev (AkhIL)");
153         authors.push_back("Konstantin Dmitriev (zelgadis)");
154         authors.push_back("Luka Pravica");
155         authors.push_back("Martin Michlmayr (tbm)");
156         authors.push_back("Miguel Gea Milvaques (xerakko)");
157         authors.push_back("Paul Wise (pabs)");
158         authors.push_back("Ralf Corsepius");
159         authors.push_back("Ray Frederikson");
160         authors.push_back("Timo Paulssen (timonator)");
161         authors.push_back("Yue Shi Lai");
162         set_authors(authors);
163
164         std::vector<Glib::ustring> artists;
165         artists.push_back("Aurore D (rore)");
166         artists.push_back("Carlos López González (genete)");
167         artists.push_back("Chris Norman (pixelgeek)");
168         artists.push_back("Daniel Hornung (rubikcube)");
169         artists.push_back("David Rylander (rylleman)");
170         artists.push_back("Franco Iacomella (Yaco)");
171         artists.push_back("Gerald Young (Yoyobuae)");
172         artists.push_back("Henrique Lopes Barone");
173         artists.push_back("Robert B. Quattlebaum Jr. (darco)");
174
175         set_artists(artists);
176
177         // TRANSLATORS: change this to your name, separate multiple names with \n
178         set_translator_credits(_("translator-credits"));
179
180         std::string imagepath;
181 #ifdef WIN32
182         imagepath=App::get_base_path()+ETL_DIRECTORY_SEPARATOR+IMAGE_DIR;
183 #else
184         imagepath=IMAGE_DIR;
185 #endif
186         char* synfig_root=getenv("SYNFIG_ROOT");
187         if(synfig_root) {
188                 imagepath=synfig_root;
189                 imagepath+=ETL_DIRECTORY_SEPARATOR;
190                 imagepath+="share";
191                 imagepath+=ETL_DIRECTORY_SEPARATOR;
192                 imagepath+="pixmaps";
193         }
194         imagepath+=ETL_DIRECTORY_SEPARATOR;
195
196         Gtk::Image *Logo = manage(new class Gtk::Image());
197         Logo->set(imagepath+"synfig_icon."IMAGE_EXT);
198         set_logo(Logo->get_pixbuf());
199
200 #ifdef SHOW_EXTRA_INFO
201
202         string extra_info = get_comments() + "\n";
203
204         #ifdef DEVEL_VERSION
205                 extra_info += strprintf(_("\nDevelopment version:\n%s\n"),DEVEL_VERSION);
206         #endif
207
208         extra_info += "\n";
209
210         extra_info += strprintf(_("Built on %s" /* at %s */ "\n"), __DATE__ /* , __TIME__ */ );
211
212         extra_info += "\n";
213
214         extra_info += strprintf(_("Built with:\n"), ETL_VERSION);
215         extra_info += strprintf(_("ETL %s\n"), ETL_VERSION);
216         extra_info += strprintf(_("Synfig API %s\n"), stringify(SYNFIG_VERSION));
217         extra_info += strprintf(_("Synfig library %d\n"), SYNFIG_LIBRARY_VERSION);
218         extra_info += strprintf(_("GTK+ %d.%d.%d\n"), GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
219         #ifdef __GNUC__
220                 extra_info += strprintf(_("GNU G++ %d.%d.%d\n"),__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__);
221         #endif
222
223         extra_info += "\n";
224
225         extra_info += strprintf(_("Using:\n"), synfig::get_version());
226         extra_info += strprintf(_("Synfig %s\n"), synfig::get_version());
227         extra_info += strprintf(_("GTK+ %d.%d.%d"),gtk_major_version,gtk_minor_version,gtk_micro_version);
228
229         #ifdef _DEBUG
230                 extra_info += "\n\nDEBUG BUILD";
231         #endif
232
233         set_comments(extra_info);
234
235 #endif
236
237         // Hide the dialog when you click close
238         signal_response().connect(sigc::mem_fun(*this, &About::close));
239 }
240
241 void About::close(int){
242         hide();
243 }
244
245 void About::on_link_clicked(Gtk::AboutDialog&, const Glib::ustring &url)
246 {
247         App::open_url(url);
248 }