Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_04 / synfig-studio / src / gtkmm / about.cpp
1 /*! ========================================================================
2 ** Synfig
3 ** Template File
4 ** $Id: about.cpp,v 1.2 2005/01/13 21:11:16 darco Exp $
5 **
6 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
7 **
8 **      This package is free software; you can redistribute it and/or
9 **      modify it under the terms of the GNU General Public License as
10 **      published by the Free Software Foundation; either version 2 of
11 **      the License, or (at your option) any later version.
12 **
13 **      This package is distributed in the hope that it will be useful,
14 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
15 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 **      General Public License for more details.
17 **
18 ** === N O T E S ===========================================================
19 **
20 ** ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #ifdef USING_PCH
25 #       include "pch.h"
26 #else
27 #ifdef HAVE_CONFIG_H
28 #       include <config.h>
29 #endif
30
31 #include <iostream>
32 #include <string>
33
34 #include <ETL/stringf>
35
36 #include <gtkmm/image.h>
37 #include <gdkmm/pixbufloader.h>
38 #include <gtkmm/button.h>
39 #include <gtkmm/label.h>
40 #include <gtkmm/fixed.h>
41
42 #include <synfig/general.h>
43
44 #include "about.h"
45 #include "app.h"
46
47 #endif
48
49 using namespace std;
50 using namespace etl;
51 using namespace studio;
52
53 /* === M A C R O S ========================================================= */
54
55 #ifndef VERSION
56 #define VERSION "unknown"
57 #define PACKAGE "synfigstudio"
58 #endif
59
60 #ifdef WIN32
61 #       ifdef IMAGE_DIR
62 #               undef IMAGE_DIR
63 #               define IMAGE_DIR "share\\pixmaps"
64 #       endif
65 #endif
66
67 #ifndef IMAGE_DIR
68 #       define IMAGE_DIR "/usr/local/share/pixmaps"
69 #endif
70
71 #ifndef IMAGE_EXT
72 #       define IMAGE_EXT        "png"
73 #endif
74
75 /* === G L O B A L S ======================================================= */
76 extern      const guint gtk_major_version;
77 extern      const guint gtk_minor_version;
78 extern      const guint gtk_micro_version;
79 extern      const guint gtk_binary_age;
80 extern      const guint gtk_interface_age;
81
82 /* === P R O C E D U R E S ================================================= */
83
84 class studio::AboutProgress : public synfig::ProgressCallback
85 {
86         About &about;
87         
88 public:
89
90         AboutProgress(About &about):about(about) { }
91         
92         virtual bool task(const std::string &task)
93         {
94                 if(about.tasklabel)
95                 {
96                         about.tasklabel->set_label(task);
97                         about.tasklabel->show();
98                 }
99                 else
100                 {
101                         cerr<<task<<endl;
102                 }
103
104                 while(studio::App::events_pending())studio::App::iteration(false);
105                 return true;
106         }
107
108         virtual bool error(const std::string &task)
109         {
110                 if(about.tasklabel)
111                 {
112                         about.tasklabel->set_label(_("ERROR:")+task);
113                         about.tasklabel->show();
114                 }
115                 else
116                 {
117                         cerr<<task<<endl;
118                 }
119
120                 while(studio::App::events_pending())studio::App::iteration(false);
121                 return true;
122         }
123
124         virtual bool warning(const std::string &task)
125         {
126                 if(about.tasklabel)
127                 {
128                         about.tasklabel->set_label(_("WARNING:")+task);
129                         about.tasklabel->show();
130                 }
131                 else
132                 {
133                         cerr<<task<<endl;
134                 }
135
136                 while(studio::App::events_pending())studio::App::iteration(false);
137                 return true;
138         }
139
140         virtual bool amount_complete(int current, int total)
141         {
142                 if(about.progressbar)
143                 {
144                         about.progressbar->set_fraction((float)current/(float)total);
145                         about.progressbar->show();
146                 }
147                 else
148                         cerr<<current<<'/'<<total<<endl;
149
150                 while(studio::App::events_pending())studio::App::iteration(false);
151                 return true;
152         }
153 }; // END of class AboutProgress
154
155 /* === M E T H O D S ======================================================= */
156
157 About::About():
158         Gtk::Window(Gtk::WINDOW_POPUP),
159         can_self_destruct(true)
160 {
161         int image_w=300,image_h=350;
162
163         std::string imagepath;
164 #ifdef WIN32
165         imagepath=App::get_base_path()+ETL_DIRECTORY_SEPERATOR+IMAGE_DIR;
166 #else
167         imagepath=IMAGE_DIR;
168 #endif
169         imagepath+=ETL_DIRECTORY_SEPERATOR;
170         
171         
172         // Create the Logo
173         Gtk::Image *Logo = manage(new class Gtk::Image());
174         Logo->set(imagepath+"about_dialog."IMAGE_EXT);
175         Logo->set_size_request(image_w,image_h);
176         Logo->set_alignment(0.5,0.5);
177         Logo->set_padding(0,0);
178         
179         // Create the Copyright Label
180         Gtk::Label *CopyrightLabel = manage(new class Gtk::Label(SYNFIG_COPYRIGHT));
181         CopyrightLabel->set_size_request(image_w,24);
182         CopyrightLabel->set_alignment(0.5,0.5);
183         CopyrightLabel->set_padding(0,0);
184         CopyrightLabel->set_justify(Gtk::JUSTIFY_CENTER);
185         CopyrightLabel->set_line_wrap(false);
186
187         // Create the Version information label
188         Gtk::Label *VersionLabel = manage(new class Gtk::Label("Version"));
189         VersionLabel->set_size_request(image_w,80);
190         VersionLabel->set_flags(Gtk::CAN_FOCUS);
191         VersionLabel->set_alignment(0.5,0.5);
192         VersionLabel->set_padding(0,0);
193         VersionLabel->set_justify(Gtk::JUSTIFY_CENTER);
194         VersionLabel->set_line_wrap(false);
195         
196         // Set the version label to contain the correct information
197         string ver;
198         ver+="Version "VERSION" ("__DATE__" "__TIME__")\n";
199         ver+="Using SYNFIG ";
200         ver+=synfig::get_version();
201         #ifdef __GNUC__
202                 ver+=strprintf(" and GNU G++ %d.%d.%d",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__);
203         #endif
204
205         ver+=strprintf("\nGtk+ %d.%d.%d",gtk_major_version,gtk_minor_version,gtk_micro_version);
206
207         #ifdef _DEBUG
208                 ver+="\nDEBUG BUILD";
209         #endif
210         VersionLabel->set_text(ver);
211
212         // Create the image that will be used on the close button
213         Gtk::Image *image2 = manage(new class Gtk::Image(Gtk::StockID("gtk-close"), Gtk::IconSize(4)));
214         image2->set_alignment(0.5,0.5);
215         image2->set_padding(0,0);
216         
217         // Create the close button, and attach the image to it
218         CloseButton = manage(new class Gtk::Button());
219         CloseButton->set_size_request(24,24);
220         CloseButton->set_flags(Gtk::CAN_FOCUS);
221         _tooltips.set_tip(*CloseButton, "Close", "");
222         CloseButton->set_relief(Gtk::RELIEF_NONE);
223         CloseButton->add(*image2);
224
225         // Create the progress bar
226         progressbar = manage(new class Gtk::ProgressBar());
227         progressbar->set_size_request(image_w,24);
228
229         // Create the current task label
230         tasklabel = manage(new class Gtk::Label());
231         tasklabel->set_size_request(image_w,24);
232         tasklabel->set_use_underline(false);
233         
234         // Create the Gtk::Fixed container and put all of the widgets into it
235         Gtk::Fixed *fixed1 = manage(new class Gtk::Fixed());
236         fixed1->put(*Logo, 0, 0);
237         fixed1->put(*CopyrightLabel, 0, image_h-25);
238         fixed1->put(*CloseButton, image_w-24, 0);
239         fixed1->put(*VersionLabel, 0, image_h-90);
240         fixed1->put(*progressbar, 0, image_h+24);
241         fixed1->put(*tasklabel, 0, image_h);
242
243         // Set up the parameters for this pop-up window
244         set_title("Synfig Studio "VERSION);
245         set_modal(false);
246         property_window_position().set_value(Gtk::WIN_POS_CENTER);
247         set_resizable(false);
248         add(*fixed1);
249
250         // show everything off
251         Logo->show();
252         CopyrightLabel->show();
253         image2->show();
254         CloseButton->show();
255         VersionLabel->show();
256         fixed1->show();
257
258         // Connect relevant signals
259         CloseButton->signal_clicked().connect(sigc::mem_fun(*this, &About::close));
260
261         cb=new AboutProgress(*this);
262 }
263
264 About::~About()
265 {
266         delete cb;
267 }
268
269 void About::close()
270 {
271         hide();
272         if(can_self_destruct)
273                 delete this;
274 }
275
276 void
277 About::set_can_self_destruct(bool x)
278 {
279         can_self_destruct=x;
280         if(x==true)
281                 CloseButton->show();
282         else
283                 CloseButton->hide();            
284 }
285
286 synfig::ProgressCallback *
287 About::get_callback()
288 {
289         return cb;
290 }