2001-04-16 04:12:16 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-05-22 04:30:16 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2001-04-16 04:12:16 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-08-17 22:27:31 +08:00
|
|
|
#include "gui-types.h"
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
#include "splash.h"
|
|
|
|
|
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SPLASH_SHOW_LOGO_NEVER,
|
|
|
|
SPLASH_SHOW_LOGO_LATER,
|
|
|
|
SPLASH_SHOW_LOGO_NOW
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define LOGO_WIDTH_MIN 300
|
|
|
|
#define LOGO_HEIGHT_MIN 110
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean splash_logo_load_size (GtkWidget *window);
|
|
|
|
static void splash_logo_draw (GtkWidget *widget);
|
|
|
|
static void splash_text_draw (GtkWidget *widget);
|
|
|
|
static void splash_logo_expose (GtkWidget *widget);
|
|
|
|
|
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
static gint splash_show_logo = SPLASH_SHOW_LOGO_NEVER;
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
static GtkWidget *logo_area = NULL;
|
|
|
|
static GdkPixmap *logo_pixmap = NULL;
|
|
|
|
static gint logo_width = 0;
|
|
|
|
static gint logo_height = 0;
|
|
|
|
static gint logo_area_width = 0;
|
|
|
|
static gint logo_area_height = 0;
|
|
|
|
static PangoLayout *logo_layout = NULL;
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
static gint max_label_length = 1024;
|
|
|
|
|
|
|
|
static GtkWidget *win_initstatus = NULL;
|
|
|
|
static GtkWidget *label1 = NULL;
|
|
|
|
static GtkWidget *label2 = NULL;
|
|
|
|
static GtkWidget *progress = NULL;
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
void
|
2001-10-22 20:13:44 +08:00
|
|
|
splash_create (gboolean show_image)
|
2001-04-16 04:12:16 +08:00
|
|
|
{
|
2001-09-03 21:13:48 +08:00
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *logo_hbox;
|
2001-09-19 22:42:35 +08:00
|
|
|
PangoFontMetrics *metrics;
|
2001-09-03 21:13:48 +08:00
|
|
|
PangoContext *context;
|
2001-09-19 22:42:35 +08:00
|
|
|
gint char_width;
|
2001-04-16 04:12:16 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
win_initstatus = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
|
|
gtk_window_set_type_hint (GTK_WINDOW (win_initstatus),
|
|
|
|
GDK_WINDOW_TYPE_HINT_DIALOG);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
gtk_window_set_title (GTK_WINDOW (win_initstatus), _("GIMP Startup"));
|
|
|
|
gtk_window_set_wmclass (GTK_WINDOW (win_initstatus), "gimp_startup", "Gimp");
|
|
|
|
gtk_window_set_position (GTK_WINDOW (win_initstatus), GTK_WIN_POS_CENTER);
|
|
|
|
gtk_window_set_policy (GTK_WINDOW (win_initstatus), FALSE, FALSE, FALSE);
|
|
|
|
|
|
|
|
gimp_dialog_set_icon (GTK_WINDOW (win_initstatus));
|
|
|
|
|
2001-10-22 20:13:44 +08:00
|
|
|
if (show_image && splash_logo_load_size (win_initstatus))
|
2001-04-16 04:12:16 +08:00
|
|
|
{
|
|
|
|
splash_show_logo = SPLASH_SHOW_LOGO_LATER;
|
|
|
|
}
|
|
|
|
|
|
|
|
vbox = gtk_vbox_new (FALSE, 4);
|
|
|
|
gtk_container_add (GTK_CONTAINER (win_initstatus), vbox);
|
|
|
|
|
|
|
|
logo_hbox = gtk_hbox_new (FALSE, 0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), logo_hbox, FALSE, TRUE, 0);
|
|
|
|
|
|
|
|
logo_area = gtk_drawing_area_new ();
|
|
|
|
|
2001-08-15 00:33:28 +08:00
|
|
|
g_signal_connect (G_OBJECT (logo_area), "expose_event",
|
|
|
|
G_CALLBACK (splash_logo_expose),
|
|
|
|
NULL);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
logo_area_width = MAX (logo_width, LOGO_WIDTH_MIN);
|
|
|
|
logo_area_height = MAX (logo_height, LOGO_HEIGHT_MIN);
|
|
|
|
|
|
|
|
gtk_drawing_area_size (GTK_DRAWING_AREA (logo_area),
|
|
|
|
logo_area_width, logo_area_height);
|
|
|
|
gtk_box_pack_start (GTK_BOX(logo_hbox), logo_area, TRUE, FALSE, 0);
|
|
|
|
|
|
|
|
label1 = gtk_label_new ("");
|
|
|
|
gtk_box_pack_start_defaults (GTK_BOX (vbox), label1);
|
|
|
|
label2 = gtk_label_new ("");
|
|
|
|
gtk_box_pack_start_defaults (GTK_BOX (vbox), label2);
|
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
progress = gtk_progress_bar_new ();
|
|
|
|
gtk_box_pack_start_defaults (GTK_BOX (vbox), progress);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
gtk_widget_show (logo_hbox);
|
|
|
|
gtk_widget_show (logo_area);
|
|
|
|
gtk_widget_show (label1);
|
|
|
|
gtk_widget_show (label2);
|
2001-09-03 21:13:48 +08:00
|
|
|
gtk_widget_show (progress);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
/* This is a hack: we try to compute a good guess for the maximum
|
|
|
|
* number of charcters that will fit into the splash-screen using
|
|
|
|
* the default_font
|
|
|
|
*/
|
2001-09-03 21:13:48 +08:00
|
|
|
context = gtk_widget_get_pango_context (label2);
|
2001-09-19 22:42:35 +08:00
|
|
|
metrics = pango_context_get_metrics (context,
|
|
|
|
label2->style->font_desc,
|
|
|
|
pango_context_get_language (context));
|
|
|
|
char_width = pango_font_metrics_get_approximate_char_width (metrics);
|
|
|
|
pango_font_metrics_unref (metrics);
|
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
max_label_length = (0.9 * (gdouble) logo_area_width /
|
2001-09-19 22:42:35 +08:00
|
|
|
(gdouble) PANGO_PIXELS (char_width));
|
2001-09-03 21:13:48 +08:00
|
|
|
|
|
|
|
logo_layout = gtk_widget_create_pango_layout (logo_area, NULL);
|
|
|
|
g_object_weak_ref (G_OBJECT (win_initstatus),
|
|
|
|
(GWeakNotify) g_object_unref, logo_layout);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
gtk_widget_show (win_initstatus);
|
2001-04-16 04:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
splash_destroy (void)
|
|
|
|
{
|
|
|
|
if (win_initstatus)
|
|
|
|
{
|
|
|
|
gtk_widget_destroy (win_initstatus);
|
|
|
|
if (logo_pixmap != NULL)
|
2001-07-25 21:21:57 +08:00
|
|
|
gdk_drawable_unref (logo_pixmap);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
win_initstatus = label1 = label2 = progress = logo_area = NULL;
|
2001-04-16 04:12:16 +08:00
|
|
|
logo_pixmap = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
splash_update (const gchar *text1,
|
|
|
|
const gchar *text2,
|
|
|
|
gdouble percentage)
|
|
|
|
{
|
|
|
|
gchar *temp;
|
|
|
|
|
|
|
|
if (win_initstatus)
|
|
|
|
{
|
|
|
|
if (text1)
|
|
|
|
gtk_label_set_text (GTK_LABEL (label1), text1);
|
|
|
|
|
|
|
|
if (text2)
|
|
|
|
{
|
|
|
|
while (strlen (text2) > max_label_length)
|
|
|
|
{
|
|
|
|
temp = strchr (text2, G_DIR_SEPARATOR);
|
|
|
|
if (temp == NULL) /* for sanity */
|
|
|
|
break;
|
|
|
|
temp++;
|
|
|
|
text2 = temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_label_set_text (GTK_LABEL (label2), text2);
|
|
|
|
}
|
|
|
|
|
|
|
|
percentage = CLAMP (percentage, 0.0, 1.0);
|
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
gtk_progress_bar_update (GTK_PROGRESS_BAR (progress), percentage);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
while (gtk_events_pending ())
|
|
|
|
gtk_main_iteration ();
|
|
|
|
|
|
|
|
/* We sync here to make sure things get drawn before continuing,
|
|
|
|
* is the improved look worth the time? I'm not sure...
|
|
|
|
*/
|
|
|
|
gdk_flush ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
splash_logo_load_size (GtkWidget *window)
|
|
|
|
{
|
|
|
|
gchar buf[1024];
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if (logo_pixmap)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
g_snprintf (buf, sizeof(buf), "%s" G_DIR_SEPARATOR_S "gimp_splash.ppm",
|
|
|
|
gimp_data_directory ());
|
|
|
|
|
|
|
|
fp = fopen (buf, "rb");
|
|
|
|
if (!fp)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
if (strcmp (buf, "P6\n") != 0)
|
|
|
|
{
|
|
|
|
fclose (fp);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
sscanf (buf, "%d %d", &logo_width, &logo_height);
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
splash_logo_load (void)
|
|
|
|
{
|
|
|
|
GtkWidget *preview;
|
|
|
|
GdkGC *gc;
|
|
|
|
gchar buf[1024];
|
|
|
|
guchar *pixelrow;
|
|
|
|
FILE *fp;
|
|
|
|
gint count;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (! win_initstatus || logo_pixmap || ! splash_show_logo)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_snprintf (buf, sizeof (buf), "%s" G_DIR_SEPARATOR_S "gimp_splash.ppm",
|
|
|
|
gimp_data_directory ());
|
|
|
|
|
|
|
|
fp = fopen (buf, "rb");
|
|
|
|
if (!fp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
if (strcmp (buf, "P6\n") != 0)
|
|
|
|
{
|
|
|
|
fclose (fp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
sscanf (buf, "%d %d", &logo_width, &logo_height);
|
|
|
|
|
|
|
|
fgets (buf, sizeof (buf), fp);
|
|
|
|
if (strcmp (buf, "255\n") != 0)
|
|
|
|
{
|
|
|
|
fclose (fp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
preview = gtk_preview_new (GTK_PREVIEW_COLOR);
|
|
|
|
gtk_preview_size (GTK_PREVIEW (preview), logo_width, logo_height);
|
|
|
|
pixelrow = g_new (guchar, logo_width * 3);
|
|
|
|
|
|
|
|
for (i = 0; i < logo_height; i++)
|
|
|
|
{
|
|
|
|
count = fread (pixelrow, sizeof (unsigned char), logo_width * 3, fp);
|
|
|
|
if (count != (logo_width * 3))
|
|
|
|
{
|
|
|
|
gtk_widget_destroy (preview);
|
|
|
|
g_free (pixelrow);
|
|
|
|
fclose (fp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gtk_preview_draw_row (GTK_PREVIEW (preview), pixelrow, 0, i, logo_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_realize (win_initstatus);
|
2001-09-03 21:13:48 +08:00
|
|
|
logo_pixmap = gdk_pixmap_new (win_initstatus->window,
|
|
|
|
logo_width, logo_height,
|
2001-04-16 04:12:16 +08:00
|
|
|
gtk_preview_get_visual ()->depth);
|
|
|
|
gc = gdk_gc_new (logo_pixmap);
|
|
|
|
gtk_preview_put (GTK_PREVIEW (preview),
|
|
|
|
logo_pixmap, gc,
|
|
|
|
0, 0, 0, 0, logo_width, logo_height);
|
2001-08-31 22:01:47 +08:00
|
|
|
gdk_gc_unref (gc);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
|
|
|
gtk_widget_unref (preview);
|
|
|
|
g_free (pixelrow);
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
splash_show_logo = SPLASH_SHOW_LOGO_NOW;
|
|
|
|
|
|
|
|
splash_logo_draw (logo_area);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
splash_text_draw (GtkWidget *widget)
|
|
|
|
{
|
2001-09-03 21:13:48 +08:00
|
|
|
gint width;
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
pango_layout_set_text (logo_layout, _("The GIMP"), -1);
|
|
|
|
pango_layout_get_pixel_size (logo_layout, &width, NULL);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
gdk_draw_layout (widget->window,
|
2001-04-16 04:12:16 +08:00
|
|
|
widget->style->fg_gc[GTK_STATE_NORMAL],
|
2001-09-03 21:13:48 +08:00
|
|
|
(logo_area_width - width) / 2,
|
|
|
|
0.25 * logo_area_height,
|
|
|
|
logo_layout);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
pango_layout_set_text (logo_layout, GIMP_VERSION, -1);
|
|
|
|
pango_layout_get_pixel_size (logo_layout, &width, NULL);
|
2001-04-16 04:12:16 +08:00
|
|
|
|
2001-09-03 21:13:48 +08:00
|
|
|
gdk_draw_layout (widget->window,
|
2001-04-16 04:12:16 +08:00
|
|
|
widget->style->fg_gc[GTK_STATE_NORMAL],
|
2001-09-03 21:13:48 +08:00
|
|
|
(logo_area_width - width) / 2,
|
|
|
|
0.45 * logo_area_height,
|
|
|
|
logo_layout);
|
2001-04-16 04:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
splash_logo_draw (GtkWidget *widget)
|
|
|
|
{
|
2001-08-31 22:01:47 +08:00
|
|
|
gdk_draw_drawable (widget->window,
|
|
|
|
widget->style->black_gc,
|
|
|
|
logo_pixmap,
|
|
|
|
0, 0,
|
|
|
|
((logo_area_width - logo_width) / 2),
|
|
|
|
((logo_area_height - logo_height) / 2),
|
|
|
|
logo_width, logo_height);
|
2001-04-16 04:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
splash_logo_expose (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
switch (splash_show_logo)
|
|
|
|
{
|
|
|
|
case SPLASH_SHOW_LOGO_NEVER:
|
|
|
|
case SPLASH_SHOW_LOGO_LATER:
|
|
|
|
splash_text_draw (widget);
|
|
|
|
break;
|
|
|
|
case SPLASH_SHOW_LOGO_NOW:
|
|
|
|
splash_logo_draw (widget);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|