2001-02-05 23:22:20 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2001-04-22 08:38:56 +08:00
|
|
|
* gimppreview.c
|
2001-10-18 00:11:28 +08:00
|
|
|
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
|
2001-02-05 23:22:20 +08:00
|
|
|
*
|
|
|
|
* 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 <string.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2001-05-03 20:26:05 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2001-05-22 04:30:16 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2001-02-05 23:22:20 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpmarshal.h"
|
2002-03-22 23:47:59 +08:00
|
|
|
#include "core/gimpviewable.h"
|
2001-02-23 11:29:53 +08:00
|
|
|
|
2001-03-05 06:07:19 +08:00
|
|
|
#include "gimpdnd.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "gimppreview.h"
|
2003-02-27 21:59:41 +08:00
|
|
|
#include "gimppreview-popup.h"
|
2003-03-01 11:53:41 +08:00
|
|
|
#include "gimppreviewrenderer.h"
|
|
|
|
#include "gimppreviewrenderer-utils.h"
|
2001-05-08 11:48:54 +08:00
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
#define PREVIEW_EVENT_MASK (GDK_BUTTON_PRESS_MASK | \
|
|
|
|
GDK_BUTTON_RELEASE_MASK | \
|
|
|
|
GDK_ENTER_NOTIFY_MASK | \
|
|
|
|
GDK_LEAVE_NOTIFY_MASK)
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-04-04 00:13:12 +08:00
|
|
|
|
2001-02-07 05:43:59 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
CLICKED,
|
2001-02-13 08:12:15 +08:00
|
|
|
DOUBLE_CLICKED,
|
2001-07-09 05:44:52 +08:00
|
|
|
CONTEXT,
|
2001-02-07 05:43:59 +08:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
static void gimp_preview_class_init (GimpPreviewClass *klass);
|
|
|
|
static void gimp_preview_init (GimpPreview *preview);
|
2002-01-31 01:39:56 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
static void gimp_preview_destroy (GtkObject *object);
|
2003-04-04 00:13:12 +08:00
|
|
|
static void gimp_preview_realize (GtkWidget *widget);
|
2003-03-03 20:59:03 +08:00
|
|
|
static void gimp_preview_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
2001-02-07 08:06:58 +08:00
|
|
|
static void gimp_preview_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
2002-02-01 00:47:20 +08:00
|
|
|
static gboolean gimp_preview_expose_event (GtkWidget *widget,
|
2002-01-31 01:39:56 +08:00
|
|
|
GdkEventExpose *event);
|
|
|
|
static gboolean gimp_preview_button_press_event (GtkWidget *widget,
|
2001-02-07 08:06:58 +08:00
|
|
|
GdkEventButton *bevent);
|
2002-01-31 01:39:56 +08:00
|
|
|
static gboolean gimp_preview_button_release_event (GtkWidget *widget,
|
2001-02-07 08:06:58 +08:00
|
|
|
GdkEventButton *bevent);
|
2002-01-31 01:39:56 +08:00
|
|
|
static gboolean gimp_preview_enter_notify_event (GtkWidget *widget,
|
2001-02-07 08:06:58 +08:00
|
|
|
GdkEventCrossing *event);
|
2002-01-31 01:39:56 +08:00
|
|
|
static gboolean gimp_preview_leave_notify_event (GtkWidget *widget,
|
2001-02-07 08:06:58 +08:00
|
|
|
GdkEventCrossing *event);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
static void gimp_preview_update_callback (GimpPreviewRenderer *renderer,
|
|
|
|
GimpPreview *preview);
|
2002-02-01 00:47:20 +08:00
|
|
|
|
2001-03-05 06:07:19 +08:00
|
|
|
static GimpViewable * gimp_preview_drag_viewable (GtkWidget *widget,
|
|
|
|
gpointer data);
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-04-04 00:13:12 +08:00
|
|
|
static void gimp_preview_set_back_pixmap (GimpPreview *preview);
|
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-02-07 05:43:59 +08:00
|
|
|
static guint preview_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2002-01-31 01:39:56 +08:00
|
|
|
static GtkDrawingAreaClass *parent_class = NULL;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
|
|
|
|
2001-08-07 08:06:06 +08:00
|
|
|
GType
|
2001-02-05 23:22:20 +08:00
|
|
|
gimp_preview_get_type (void)
|
|
|
|
{
|
2001-08-07 08:06:06 +08:00
|
|
|
static GType preview_type = 0;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
|
|
|
if (! preview_type)
|
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
static const GTypeInfo preview_info =
|
2001-02-05 23:22:20 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
sizeof (GimpPreviewClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gimp_preview_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpPreview),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_preview_init,
|
2001-02-05 23:22:20 +08:00
|
|
|
};
|
|
|
|
|
2002-01-31 01:39:56 +08:00
|
|
|
preview_type = g_type_register_static (GTK_TYPE_DRAWING_AREA,
|
2001-10-17 19:33:43 +08:00
|
|
|
"GimpPreview",
|
|
|
|
&preview_info, 0);
|
2001-02-05 23:22:20 +08:00
|
|
|
}
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
return preview_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_preview_class_init (GimpPreviewClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
object_class = GTK_OBJECT_CLASS (klass);
|
|
|
|
widget_class = GTK_WIDGET_CLASS (klass);
|
2001-02-05 23:22:20 +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
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-02-07 05:43:59 +08:00
|
|
|
preview_signals[CLICKED] =
|
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
|
|
|
g_signal_new ("clicked",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpPreviewClass, clicked),
|
|
|
|
NULL, NULL,
|
2003-03-20 23:49:48 +08:00
|
|
|
gimp_marshal_VOID__FLAGS,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
GDK_TYPE_MODIFIER_TYPE);
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2001-02-13 08:12:15 +08:00
|
|
|
preview_signals[DOUBLE_CLICKED] =
|
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
|
|
|
g_signal_new ("double_clicked",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpPreviewClass, double_clicked),
|
|
|
|
NULL, NULL,
|
2001-11-23 07:46:13 +08:00
|
|
|
gimp_marshal_VOID__VOID,
|
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
|
|
|
G_TYPE_NONE, 0);
|
2001-02-13 08:12:15 +08:00
|
|
|
|
2001-07-09 05:44:52 +08:00
|
|
|
preview_signals[CONTEXT] =
|
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
|
|
|
g_signal_new ("context",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpPreviewClass, context),
|
|
|
|
NULL, NULL,
|
2001-11-23 07:46:13 +08:00
|
|
|
gimp_marshal_VOID__VOID,
|
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
|
|
|
G_TYPE_NONE, 0);
|
2001-07-09 05:44:52 +08:00
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
object_class->destroy = gimp_preview_destroy;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2002-04-18 22:14:50 +08:00
|
|
|
widget_class->activate_signal = preview_signals[CLICKED];
|
2003-04-04 00:13:12 +08:00
|
|
|
widget_class->realize = gimp_preview_realize;
|
2003-03-03 20:59:03 +08:00
|
|
|
widget_class->size_request = gimp_preview_size_request;
|
2001-02-05 23:22:20 +08:00
|
|
|
widget_class->size_allocate = gimp_preview_size_allocate;
|
2002-02-01 00:47:20 +08:00
|
|
|
widget_class->expose_event = gimp_preview_expose_event;
|
2001-02-05 23:22:20 +08:00
|
|
|
widget_class->button_press_event = gimp_preview_button_press_event;
|
|
|
|
widget_class->button_release_event = gimp_preview_button_release_event;
|
2001-02-07 05:43:59 +08:00
|
|
|
widget_class->enter_notify_event = gimp_preview_enter_notify_event;
|
|
|
|
widget_class->leave_notify_event = gimp_preview_leave_notify_event;
|
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
klass->clicked = NULL;
|
|
|
|
klass->double_clicked = NULL;
|
2001-07-09 05:44:52 +08:00
|
|
|
klass->context = NULL;
|
2001-02-05 23:22:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_preview_init (GimpPreview *preview)
|
|
|
|
{
|
2002-05-29 04:04:28 +08:00
|
|
|
preview->viewable = NULL;
|
2003-03-01 11:53:41 +08:00
|
|
|
preview->renderer = NULL;
|
2001-02-08 02:01:54 +08:00
|
|
|
|
2002-05-29 04:04:28 +08:00
|
|
|
preview->clickable = FALSE;
|
|
|
|
preview->eat_button_events = TRUE;
|
|
|
|
preview->show_popup = FALSE;
|
2003-03-10 22:07:22 +08:00
|
|
|
preview->expand = FALSE;
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2002-05-29 04:04:28 +08:00
|
|
|
preview->in_button = FALSE;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-04-04 00:13:12 +08:00
|
|
|
preview->bg_stock_id = NULL;
|
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
gtk_widget_set_events (GTK_WIDGET (preview), PREVIEW_EVENT_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_preview_destroy (GtkObject *object)
|
|
|
|
{
|
2001-02-07 10:37:49 +08:00
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (object);
|
|
|
|
|
2001-08-01 00:55:59 +08:00
|
|
|
if (preview->viewable)
|
|
|
|
gimp_preview_set_viewable (preview, NULL);
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
if (preview->renderer)
|
2003-02-27 00:17:10 +08:00
|
|
|
{
|
2003-03-01 11:53:41 +08:00
|
|
|
g_object_unref (preview->renderer);
|
|
|
|
preview->renderer = NULL;
|
2003-02-27 00:17:10 +08:00
|
|
|
}
|
2003-04-04 00:13:12 +08:00
|
|
|
if (preview->bg_stock_id)
|
|
|
|
{
|
|
|
|
g_free (preview->bg_stock_id);
|
|
|
|
preview->bg_stock_id = NULL;
|
|
|
|
}
|
2003-02-27 00:17:10 +08:00
|
|
|
|
2002-03-22 23:21:18 +08:00
|
|
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
2001-02-05 23:22:20 +08:00
|
|
|
}
|
|
|
|
|
2003-04-04 00:13:12 +08:00
|
|
|
static void
|
|
|
|
gimp_preview_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->realize (widget);
|
|
|
|
|
|
|
|
gimp_preview_set_back_pixmap (GIMP_PREVIEW (widget));
|
|
|
|
}
|
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
static void
|
|
|
|
gimp_preview_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
|
2003-03-10 22:07:22 +08:00
|
|
|
if (preview->expand)
|
|
|
|
{
|
|
|
|
requisition->width = 2 * preview->renderer->border_width + 1;
|
|
|
|
requisition->height = 2 * preview->renderer->border_width + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
requisition->width = (preview->renderer->width +
|
|
|
|
2 * preview->renderer->border_width);
|
|
|
|
requisition->height = (preview->renderer->height +
|
|
|
|
2 * preview->renderer->border_width);
|
|
|
|
}
|
2003-03-03 20:59:03 +08:00
|
|
|
|
|
|
|
if (GTK_WIDGET_CLASS (parent_class)->size_request)
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->size_request (widget, requisition);
|
|
|
|
}
|
|
|
|
|
2002-02-01 00:47:20 +08:00
|
|
|
static void
|
|
|
|
gimp_preview_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
2002-06-12 23:39:03 +08:00
|
|
|
gint width;
|
|
|
|
gint height;
|
2002-02-01 00:47:20 +08:00
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
|
2003-03-10 22:07:22 +08:00
|
|
|
if (preview->expand)
|
|
|
|
{
|
2003-04-01 21:53:47 +08:00
|
|
|
width = MIN (GIMP_VIEWABLE_MAX_PREVIEW_SIZE,
|
2003-03-10 22:07:22 +08:00
|
|
|
allocation->width - 2 * preview->renderer->border_width);
|
2003-04-01 21:53:47 +08:00
|
|
|
height = MIN (GIMP_VIEWABLE_MAX_PREVIEW_SIZE,
|
2003-03-10 22:07:22 +08:00
|
|
|
allocation->height - 2 * preview->renderer->border_width);
|
|
|
|
|
|
|
|
if (preview->renderer->width != width ||
|
|
|
|
preview->renderer->height != height)
|
|
|
|
{
|
|
|
|
gint border_width = preview->renderer->border_width;
|
|
|
|
|
|
|
|
if (preview->renderer->size != -1 && preview->renderer->viewable)
|
|
|
|
{
|
|
|
|
gint preview_width;
|
|
|
|
gint preview_height;
|
|
|
|
gint scaled_width;
|
|
|
|
gint scaled_height;
|
|
|
|
|
|
|
|
gimp_viewable_get_preview_size (preview->renderer->viewable,
|
2003-04-01 21:53:47 +08:00
|
|
|
GIMP_VIEWABLE_MAX_PREVIEW_SIZE,
|
2003-03-10 22:07:22 +08:00
|
|
|
preview->renderer->is_popup,
|
|
|
|
preview->renderer->dot_for_dot,
|
|
|
|
&preview_width,
|
|
|
|
&preview_height);
|
|
|
|
|
|
|
|
gimp_viewable_calc_preview_size (preview->renderer->viewable,
|
|
|
|
preview_width,
|
|
|
|
preview_height,
|
|
|
|
width, height,
|
|
|
|
TRUE, 1.0, 1.0,
|
|
|
|
&scaled_width, &scaled_height,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (scaled_width > width)
|
|
|
|
{
|
|
|
|
scaled_height = scaled_height * width / scaled_width;
|
|
|
|
scaled_width = scaled_width * width / scaled_width;
|
|
|
|
}
|
|
|
|
else if (scaled_height > height)
|
|
|
|
{
|
|
|
|
scaled_width = scaled_width * height / scaled_height;
|
|
|
|
scaled_height = scaled_height * height / scaled_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_preview_renderer_set_size (preview->renderer,
|
|
|
|
MAX (scaled_width, scaled_height),
|
|
|
|
border_width);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_preview_renderer_set_size_full (preview->renderer,
|
|
|
|
width, height,
|
|
|
|
border_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_preview_renderer_remove_idle (preview->renderer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
width = (preview->renderer->width +
|
|
|
|
2 * preview->renderer->border_width);
|
|
|
|
height = (preview->renderer->height +
|
|
|
|
2 * preview->renderer->border_width);
|
2002-06-12 23:39:03 +08:00
|
|
|
|
|
|
|
if (allocation->width > width)
|
|
|
|
allocation->x += (allocation->width - width) / 2;
|
|
|
|
|
|
|
|
if (allocation->height > height)
|
|
|
|
allocation->y += (allocation->height - height) / 2;
|
|
|
|
|
|
|
|
allocation->width = width;
|
|
|
|
allocation->height = height;
|
2002-02-01 00:47:20 +08:00
|
|
|
|
|
|
|
if (GTK_WIDGET_CLASS (parent_class)->size_allocate)
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_preview_expose_event (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
2003-03-01 11:53:41 +08:00
|
|
|
GdkRectangle rect;
|
2002-02-01 00:47:20 +08:00
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
|
2003-02-27 00:17:10 +08:00
|
|
|
if (! GTK_WIDGET_DRAWABLE (widget))
|
2002-02-01 00:47:20 +08:00
|
|
|
return FALSE;
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
rect = widget->allocation;
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
rect.x = rect.y = 0;
|
2003-02-27 21:59:41 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_draw (preview->renderer,
|
|
|
|
widget->window, widget,
|
|
|
|
&rect,
|
|
|
|
&event->area);
|
2003-02-27 00:17:10 +08:00
|
|
|
|
2002-02-01 00:47:20 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-02-07 19:33:01 +08:00
|
|
|
|
|
|
|
#define DEBUG_MEMSIZE 1
|
|
|
|
|
|
|
|
#ifdef DEBUG_MEMSIZE
|
|
|
|
extern gboolean gimp_debug_memsize;
|
|
|
|
#endif
|
|
|
|
|
2002-03-22 23:47:59 +08:00
|
|
|
static gboolean
|
2002-02-01 00:47:20 +08:00
|
|
|
gimp_preview_button_press_event (GtkWidget *widget,
|
|
|
|
GdkEventButton *bevent)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
|
|
|
|
#ifdef DEBUG_MEMSIZE
|
|
|
|
if (bevent->type == GDK_BUTTON_PRESS && bevent->button == 2)
|
|
|
|
{
|
2002-02-07 19:33:01 +08:00
|
|
|
gimp_debug_memsize = TRUE;
|
|
|
|
|
2002-02-01 00:47:20 +08:00
|
|
|
gimp_object_get_memsize (GIMP_OBJECT (preview->viewable));
|
2002-02-07 19:33:01 +08:00
|
|
|
|
|
|
|
gimp_debug_memsize = FALSE;
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
#endif /* DEBUG_MEMSIZE */
|
|
|
|
|
|
|
|
if (! preview->clickable &&
|
|
|
|
! preview->show_popup)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (bevent->type == GDK_BUTTON_PRESS)
|
|
|
|
{
|
|
|
|
if (bevent->button == 1)
|
|
|
|
{
|
|
|
|
gtk_grab_add (widget);
|
|
|
|
|
|
|
|
preview->press_state = bevent->state;
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
if (preview->show_popup)
|
|
|
|
{
|
|
|
|
gimp_preview_popup_show (widget, bevent,
|
|
|
|
preview->viewable,
|
2003-03-01 11:53:41 +08:00
|
|
|
preview->renderer->width,
|
|
|
|
preview->renderer->height,
|
|
|
|
preview->renderer->dot_for_dot);
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
preview->press_state = 0;
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
if (bevent->button == 3)
|
2002-02-01 00:47:20 +08:00
|
|
|
{
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_emit (widget, preview_signals[CONTEXT], 0);
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (bevent->type == GDK_2BUTTON_PRESS)
|
|
|
|
{
|
|
|
|
if (bevent->button == 1)
|
|
|
|
{
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_emit (widget, preview_signals[DOUBLE_CLICKED], 0);
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-29 04:04:28 +08:00
|
|
|
return preview->eat_button_events ? TRUE : FALSE;
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
|
2002-03-22 23:47:59 +08:00
|
|
|
static gboolean
|
2002-02-01 00:47:20 +08:00
|
|
|
gimp_preview_button_release_event (GtkWidget *widget,
|
|
|
|
GdkEventButton *bevent)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
|
|
|
|
if (! preview->clickable &&
|
|
|
|
! preview->show_popup)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (bevent->button == 1)
|
|
|
|
{
|
|
|
|
gtk_grab_remove (widget);
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
if (preview->clickable && preview->in_button)
|
2002-02-01 00:47:20 +08:00
|
|
|
{
|
2003-03-20 23:49:48 +08:00
|
|
|
g_signal_emit (widget, preview_signals[CLICKED], 0,
|
|
|
|
preview->press_state);
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-05-29 04:04:28 +08:00
|
|
|
return preview->eat_button_events ? TRUE : FALSE;
|
2002-02-01 00:47:20 +08:00
|
|
|
}
|
|
|
|
|
2002-03-22 23:47:59 +08:00
|
|
|
static gboolean
|
2002-02-01 00:47:20 +08:00
|
|
|
gimp_preview_enter_notify_event (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
event_widget = gtk_get_event_widget ((GdkEvent *) event);
|
|
|
|
|
|
|
|
if ((event_widget == widget) &&
|
|
|
|
(event->detail != GDK_NOTIFY_INFERIOR))
|
|
|
|
{
|
|
|
|
preview->in_button = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-03-22 23:47:59 +08:00
|
|
|
static gboolean
|
2002-02-01 00:47:20 +08:00
|
|
|
gimp_preview_leave_notify_event (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GimpPreview *preview;
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (widget);
|
|
|
|
event_widget = gtk_get_event_widget ((GdkEvent *) event);
|
|
|
|
|
|
|
|
if ((event_widget == widget) &&
|
|
|
|
(event->detail != GDK_NOTIFY_INFERIOR))
|
|
|
|
{
|
|
|
|
preview->in_button = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
GtkWidget *
|
|
|
|
gimp_preview_new (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup)
|
|
|
|
{
|
2003-03-03 20:59:03 +08:00
|
|
|
GtkWidget *preview;
|
2001-02-20 06:54:12 +08:00
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_VIEWABLE (viewable), NULL);
|
2002-08-22 20:49:01 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
preview = gimp_preview_new_by_types (GIMP_TYPE_PREVIEW,
|
|
|
|
G_TYPE_FROM_INSTANCE (viewable),
|
|
|
|
size, border_width, is_popup);
|
2001-02-13 08:12:15 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
if (preview)
|
|
|
|
gimp_preview_set_viewable (GIMP_PREVIEW (preview), viewable);
|
2001-06-18 21:10:03 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
gimp_preview_renderer_remove_idle (GIMP_PREVIEW (preview)->renderer);
|
2003-03-01 11:53:41 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
return preview;
|
2001-02-09 23:12:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gimp_preview_new_full (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean clickable,
|
|
|
|
gboolean show_popup)
|
2003-03-03 20:59:03 +08:00
|
|
|
{
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_VIEWABLE (viewable), NULL);
|
|
|
|
|
|
|
|
preview = gimp_preview_new_full_by_types (GIMP_TYPE_PREVIEW,
|
|
|
|
G_TYPE_FROM_INSTANCE (viewable),
|
|
|
|
width, height, border_width,
|
|
|
|
is_popup, clickable, show_popup);
|
|
|
|
|
|
|
|
if (preview)
|
|
|
|
gimp_preview_set_viewable (GIMP_PREVIEW (preview), viewable);
|
|
|
|
|
|
|
|
gimp_preview_renderer_remove_idle (GIMP_PREVIEW (preview)->renderer);
|
|
|
|
|
|
|
|
return preview;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gimp_preview_new_by_types (GType preview_type,
|
|
|
|
GType viewable_type,
|
|
|
|
gint size,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup)
|
2001-02-05 23:22:20 +08:00
|
|
|
{
|
2003-03-01 11:53:41 +08:00
|
|
|
GimpPreviewRenderer *renderer;
|
|
|
|
GimpPreview *preview;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
g_return_val_if_fail (g_type_is_a (preview_type, GIMP_TYPE_PREVIEW), NULL);
|
|
|
|
g_return_val_if_fail (g_type_is_a (viewable_type, GIMP_TYPE_VIEWABLE), NULL);
|
2003-04-01 21:53:47 +08:00
|
|
|
g_return_val_if_fail (size > 0 &&
|
|
|
|
size <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE, NULL);
|
2002-08-27 23:31:24 +08:00
|
|
|
g_return_val_if_fail (border_width >= 0 &&
|
|
|
|
border_width <= GIMP_PREVIEW_MAX_BORDER_WIDTH, NULL);
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
renderer = gimp_preview_renderer_new (viewable_type, size,
|
|
|
|
border_width, is_popup);
|
2003-03-01 11:53:41 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (renderer != NULL, NULL);
|
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
preview = g_object_new (preview_type, NULL);
|
2002-08-22 20:49:01 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
g_signal_connect (renderer, "update",
|
|
|
|
G_CALLBACK (gimp_preview_update_callback),
|
|
|
|
preview);
|
2001-02-08 07:14:14 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
preview->renderer = renderer;
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
return GTK_WIDGET (preview);
|
|
|
|
}
|
|
|
|
|
2002-08-22 20:49:01 +08:00
|
|
|
GtkWidget *
|
2003-03-03 20:59:03 +08:00
|
|
|
gimp_preview_new_full_by_types (GType preview_type,
|
|
|
|
GType viewable_type,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean clickable,
|
|
|
|
gboolean show_popup)
|
2003-03-01 11:53:41 +08:00
|
|
|
{
|
|
|
|
GimpPreviewRenderer *renderer;
|
|
|
|
GimpPreview *preview;
|
2002-08-22 20:49:01 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
g_return_val_if_fail (g_type_is_a (preview_type, GIMP_TYPE_PREVIEW), NULL);
|
2002-08-22 20:49:01 +08:00
|
|
|
g_return_val_if_fail (g_type_is_a (viewable_type, GIMP_TYPE_VIEWABLE), NULL);
|
2003-04-01 21:53:47 +08:00
|
|
|
g_return_val_if_fail (width > 0 &&
|
|
|
|
width <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE, NULL);
|
|
|
|
g_return_val_if_fail (height > 0 &&
|
|
|
|
height <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE, NULL);
|
2002-08-27 23:31:24 +08:00
|
|
|
g_return_val_if_fail (border_width >= 0 &&
|
|
|
|
border_width <= GIMP_PREVIEW_MAX_BORDER_WIDTH, NULL);
|
2002-08-22 20:49:01 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
renderer = gimp_preview_renderer_new_full (viewable_type, width, height,
|
|
|
|
border_width, is_popup);
|
2003-03-01 11:53:41 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (renderer != NULL, NULL);
|
|
|
|
|
|
|
|
preview = g_object_new (preview_type, NULL);
|
2002-08-22 20:49:01 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
g_signal_connect (renderer, "update",
|
|
|
|
G_CALLBACK (gimp_preview_update_callback),
|
|
|
|
preview);
|
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
preview->renderer = renderer;
|
|
|
|
preview->clickable = clickable ? TRUE : FALSE;
|
|
|
|
preview->show_popup = show_popup ? TRUE : FALSE;
|
2002-08-22 20:49:01 +08:00
|
|
|
|
|
|
|
return GTK_WIDGET (preview);
|
|
|
|
}
|
|
|
|
|
2001-02-08 12:16:41 +08:00
|
|
|
void
|
|
|
|
gimp_preview_set_viewable (GimpPreview *preview,
|
|
|
|
GimpViewable *viewable)
|
|
|
|
{
|
2002-08-27 23:31:24 +08:00
|
|
|
GType viewable_type = G_TYPE_NONE;
|
|
|
|
|
2001-02-08 12:16:41 +08:00
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
2003-04-01 21:53:47 +08:00
|
|
|
g_return_if_fail (viewable == NULL || GIMP_IS_VIEWABLE (viewable));
|
2002-08-22 20:49:01 +08:00
|
|
|
|
|
|
|
if (viewable)
|
|
|
|
{
|
|
|
|
viewable_type = G_TYPE_FROM_INSTANCE (viewable);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
g_return_if_fail (g_type_is_a (G_TYPE_FROM_INSTANCE (preview->renderer),
|
|
|
|
gimp_preview_renderer_type_from_viewable_type (viewable_type)));
|
2002-08-22 20:49:01 +08:00
|
|
|
}
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2002-05-10 20:47:42 +08:00
|
|
|
if (viewable == preview->viewable)
|
|
|
|
return;
|
|
|
|
|
2001-02-08 12:16:41 +08:00
|
|
|
if (preview->viewable)
|
|
|
|
{
|
2001-08-12 23:39:23 +08:00
|
|
|
g_object_remove_weak_pointer (G_OBJECT (preview->viewable),
|
|
|
|
(gpointer *) &preview->viewable);
|
2001-06-18 21:10:03 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
if (! viewable && ! preview->renderer->is_popup)
|
2003-02-20 20:47:42 +08:00
|
|
|
{
|
|
|
|
if (gimp_dnd_viewable_source_unset (GTK_WIDGET (preview),
|
|
|
|
G_TYPE_FROM_INSTANCE (preview->viewable)))
|
|
|
|
{
|
|
|
|
gtk_drag_source_unset (GTK_WIDGET (preview));
|
|
|
|
}
|
|
|
|
}
|
2001-02-08 12:16:41 +08:00
|
|
|
}
|
2003-03-01 11:53:41 +08:00
|
|
|
else if (viewable && ! preview->renderer->is_popup)
|
2002-03-22 23:47:59 +08:00
|
|
|
{
|
2003-02-20 20:47:42 +08:00
|
|
|
if (gimp_dnd_drag_source_set_by_type (GTK_WIDGET (preview),
|
|
|
|
GDK_BUTTON1_MASK | GDK_BUTTON2_MASK,
|
|
|
|
viewable_type,
|
|
|
|
GDK_ACTION_COPY))
|
|
|
|
{
|
|
|
|
gimp_dnd_viewable_source_set (GTK_WIDGET (preview),
|
2002-08-27 23:31:24 +08:00
|
|
|
viewable_type,
|
2003-02-20 20:47:42 +08:00
|
|
|
gimp_preview_drag_viewable,
|
|
|
|
NULL);
|
|
|
|
}
|
2002-03-22 23:47:59 +08:00
|
|
|
}
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_set_viewable (preview->renderer, viewable);
|
2001-02-08 12:16:41 +08:00
|
|
|
preview->viewable = viewable;
|
|
|
|
|
|
|
|
if (preview->viewable)
|
|
|
|
{
|
2001-08-12 23:39:23 +08:00
|
|
|
g_object_add_weak_pointer (G_OBJECT (preview->viewable),
|
|
|
|
(gpointer *) &preview->viewable);
|
2001-02-08 12:16:41 +08:00
|
|
|
}
|
2003-04-04 00:13:12 +08:00
|
|
|
|
|
|
|
gimp_preview_set_back_pixmap (preview);
|
2001-02-08 12:16:41 +08:00
|
|
|
}
|
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
void
|
|
|
|
gimp_preview_set_size (GimpPreview *preview,
|
|
|
|
gint preview_size,
|
|
|
|
gint border_width)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
2003-04-01 21:53:47 +08:00
|
|
|
g_return_if_fail (preview_size > 0 &&
|
|
|
|
preview_size <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE);
|
2002-08-27 23:31:24 +08:00
|
|
|
g_return_if_fail (border_width >= 0 &&
|
|
|
|
border_width <= GIMP_PREVIEW_MAX_BORDER_WIDTH);
|
2001-03-12 01:24:47 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_set_size (preview->renderer, preview_size,
|
|
|
|
border_width);
|
2001-03-12 01:24:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_preview_set_size_full (GimpPreview *preview,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint border_width)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
2003-04-01 21:53:47 +08:00
|
|
|
g_return_if_fail (width > 0 &&
|
|
|
|
width <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE);
|
|
|
|
g_return_if_fail (height > 0 &&
|
|
|
|
height <= GIMP_VIEWABLE_MAX_PREVIEW_SIZE);
|
2002-08-27 23:31:24 +08:00
|
|
|
g_return_if_fail (border_width >= 0 &&
|
|
|
|
border_width <= GIMP_PREVIEW_MAX_BORDER_WIDTH);
|
2001-03-12 01:24:47 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_set_size_full (preview->renderer, width, height,
|
|
|
|
border_width);
|
2001-06-18 21:10:03 +08:00
|
|
|
}
|
|
|
|
|
2003-03-10 22:07:22 +08:00
|
|
|
void
|
|
|
|
gimp_preview_set_expand (GimpPreview *preview,
|
|
|
|
gboolean expand)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
|
|
|
|
|
|
|
if (preview->expand != expand)
|
|
|
|
{
|
|
|
|
preview->expand = expand ? TRUE : FALSE;
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (preview));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
void
|
|
|
|
gimp_preview_set_dot_for_dot (GimpPreview *preview,
|
|
|
|
gboolean dot_for_dot)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_set_dot_for_dot (preview->renderer, dot_for_dot);
|
2001-03-12 01:24:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_preview_set_border_color (GimpPreview *preview,
|
|
|
|
const GimpRGB *color)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
|
|
|
g_return_if_fail (color != NULL);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_renderer_set_border_color (preview->renderer, color);
|
2001-03-12 01:24:47 +08:00
|
|
|
}
|
|
|
|
|
2003-04-04 00:13:12 +08:00
|
|
|
void
|
|
|
|
gimp_preview_set_background (GimpPreview *preview,
|
|
|
|
const gchar *stock_id)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PREVIEW (preview));
|
|
|
|
|
|
|
|
if (preview->bg_stock_id)
|
|
|
|
g_free (preview->bg_stock_id);
|
|
|
|
|
|
|
|
preview->bg_stock_id = g_strdup (stock_id);
|
|
|
|
|
|
|
|
gimp_preview_set_back_pixmap (preview);
|
|
|
|
}
|
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2002-02-01 00:47:20 +08:00
|
|
|
/* private functions */
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2002-11-04 20:15:29 +08:00
|
|
|
static void
|
2003-03-01 11:53:41 +08:00
|
|
|
gimp_preview_update_callback (GimpPreviewRenderer *renderer,
|
|
|
|
GimpPreview *preview)
|
2002-11-04 20:15:29 +08:00
|
|
|
{
|
2003-03-01 11:53:41 +08:00
|
|
|
GtkWidget *widget;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
2002-11-04 20:15:29 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
widget = GTK_WIDGET (preview);
|
2003-02-27 00:17:10 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
width = renderer->width + 2 * renderer->border_width;
|
|
|
|
height = renderer->height + 2 * renderer->border_width;
|
2001-02-07 08:06:58 +08:00
|
|
|
|
2003-03-03 20:59:03 +08:00
|
|
|
if (width != widget->requisition.width ||
|
|
|
|
height != widget->requisition.height)
|
2001-06-18 21:10:03 +08:00
|
|
|
{
|
2003-03-03 20:59:03 +08:00
|
|
|
widget->requisition.width = width;
|
|
|
|
widget->requisition.height = height;
|
2001-06-18 21:10:03 +08:00
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
gtk_widget_queue_resize (widget);
|
2001-06-18 21:10:03 +08:00
|
|
|
}
|
2002-11-04 20:15:29 +08:00
|
|
|
else
|
2001-02-07 10:37:49 +08:00
|
|
|
{
|
2003-03-01 11:53:41 +08:00
|
|
|
gtk_widget_queue_draw (widget);
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
2001-02-08 04:35:18 +08:00
|
|
|
}
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2002-02-01 00:47:20 +08:00
|
|
|
static GimpViewable *
|
|
|
|
gimp_preview_drag_viewable (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
return GIMP_PREVIEW (widget)->viewable;
|
|
|
|
}
|
2003-04-04 00:13:12 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_preview_set_back_pixmap (GimpPreview *preview)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GdkPixmap *pixmap = NULL;
|
|
|
|
|
|
|
|
if (! GTK_WIDGET_REALIZED (preview))
|
|
|
|
return;
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (preview);
|
|
|
|
|
|
|
|
if (preview->bg_stock_id && preview->viewable)
|
|
|
|
{
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
|
|
|
|
pixbuf = gtk_widget_render_icon (widget,
|
|
|
|
preview->bg_stock_id,
|
|
|
|
GTK_ICON_SIZE_DIALOG, NULL);
|
|
|
|
|
|
|
|
if (pixbuf)
|
|
|
|
{
|
|
|
|
GdkColormap *colormap;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
|
|
|
|
colormap = gdk_drawable_get_colormap (widget->window);
|
|
|
|
|
|
|
|
width = gdk_pixbuf_get_width (pixbuf);
|
|
|
|
height = gdk_pixbuf_get_height (pixbuf);
|
|
|
|
|
|
|
|
pixmap = gdk_pixmap_new (widget->window, width, height,
|
|
|
|
gdk_colormap_get_visual (colormap)->depth);
|
|
|
|
gdk_drawable_set_colormap (pixmap, colormap);
|
|
|
|
|
|
|
|
gdk_draw_rectangle (pixmap, widget->style->white_gc,
|
|
|
|
TRUE,
|
|
|
|
0, 0, width, height);
|
|
|
|
|
|
|
|
gdk_draw_pixbuf (pixmap, widget->style->white_gc,
|
|
|
|
pixbuf, 0, 0,
|
|
|
|
0, 0, width, height,
|
|
|
|
GDK_RGB_DITHER_NORMAL, 0, 0);
|
|
|
|
|
|
|
|
g_object_unref (pixbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_window_set_back_pixmap (widget->window, pixmap, FALSE);
|
|
|
|
|
|
|
|
if (pixmap)
|
|
|
|
g_object_unref (pixmap);
|
|
|
|
}
|