1998-06-30 23:31:32 +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.
|
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2000-05-27 06:28:40 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1998-09-24 09:19:57 +08:00
|
|
|
#include <stdlib.h>
|
2000-12-17 05:37:03 +08:00
|
|
|
#include <stdio.h>
|
1999-02-21 07:20:54 +08:00
|
|
|
#include <string.h>
|
2000-05-27 06:28:40 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
#include <glib-object.h>
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
2001-05-21 21:58:46 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2001-01-24 07:56:18 +08:00
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
#include "base/pixel-region.h"
|
|
|
|
#include "base/tile.h"
|
|
|
|
#include "base/tile-manager.h"
|
|
|
|
|
2001-04-07 23:58:26 +08:00
|
|
|
#include "paint-funcs/paint-funcs.h"
|
|
|
|
|
2001-07-11 20:39:49 +08:00
|
|
|
#include "gimp.h"
|
2003-05-14 23:32:07 +08:00
|
|
|
#include "gimp-utils.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimpchannel.h"
|
2001-07-08 06:49:01 +08:00
|
|
|
#include "gimpcontext.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimpdrawable.h"
|
2001-02-07 08:06:58 +08:00
|
|
|
#include "gimpdrawable-preview.h"
|
2003-05-13 21:57:11 +08:00
|
|
|
#include "gimpdrawable-transform.h"
|
2000-12-30 08:16:50 +08:00
|
|
|
#include "gimpimage.h"
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "gimpimage-mask.h"
|
2003-02-14 22:14:29 +08:00
|
|
|
#include "gimpimage-undo-push.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimplayer.h"
|
2001-02-19 21:06:09 +08:00
|
|
|
#include "gimplist.h"
|
2001-11-23 07:46:13 +08:00
|
|
|
#include "gimpmarshal.h"
|
2001-07-10 03:48:30 +08:00
|
|
|
#include "gimpparasitelist.h"
|
2001-02-02 02:44:22 +08:00
|
|
|
#include "gimppreviewcache.h"
|
2001-05-25 01:09:57 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2000-05-27 06:28:40 +08:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2001-03-05 00:52:37 +08:00
|
|
|
VISIBILITY_CHANGED,
|
2003-05-21 19:34:00 +08:00
|
|
|
ALPHA_CHANGED,
|
1998-06-30 23:31:32 +08:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2001-01-20 21:21:49 +08:00
|
|
|
|
2001-07-11 20:39:49 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
static void gimp_drawable_class_init (GimpDrawableClass *klass);
|
|
|
|
static void gimp_drawable_init (GimpDrawable *drawable);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
static void gimp_drawable_finalize (GObject *object);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
static gsize gimp_drawable_get_memsize (GimpObject *object);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
static void gimp_drawable_invalidate_preview (GimpViewable *viewable);
|
|
|
|
|
|
|
|
static GimpItem * gimp_drawable_duplicate (GimpItem *item,
|
|
|
|
GType new_type,
|
|
|
|
gboolean add_alpha);
|
2003-05-07 19:09:00 +08:00
|
|
|
static void gimp_drawable_scale (GimpItem *item,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gint new_offset_x,
|
|
|
|
gint new_offset_y,
|
|
|
|
GimpInterpolationType interp_type);
|
2003-05-07 21:01:17 +08:00
|
|
|
static void gimp_drawable_resize (GimpItem *item,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y);
|
2003-05-13 21:57:11 +08:00
|
|
|
static void gimp_drawable_flip (GimpItem *item,
|
|
|
|
GimpOrientationType flip_type,
|
|
|
|
gdouble axis,
|
|
|
|
gboolean clip_result);
|
2003-05-20 18:36:29 +08:00
|
|
|
static void gimp_drawable_rotate (GimpItem *item,
|
|
|
|
GimpRotationType rotate_type,
|
|
|
|
gdouble center_x,
|
|
|
|
gdouble center_y,
|
|
|
|
gboolean clip_result);
|
2003-05-13 21:57:11 +08:00
|
|
|
static void gimp_drawable_transform (GimpItem *item,
|
|
|
|
GimpMatrix3 matrix,
|
|
|
|
GimpTransformDirection direction,
|
|
|
|
GimpInterpolationType interpolation_type,
|
|
|
|
gboolean clip_result,
|
|
|
|
GimpProgressFunc progress_callback,
|
|
|
|
gpointer progress_data);
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2001-01-10 08:36:54 +08:00
|
|
|
|
2001-01-20 21:21:49 +08:00
|
|
|
/* private variables */
|
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
static guint gimp_drawable_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
static GimpItemClass *parent_class = NULL;
|
1998-06-30 23:31:32 +08:00
|
|
|
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
GType
|
1999-09-02 09:41:18 +08:00
|
|
|
gimp_drawable_get_type (void)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static GType drawable_type = 0;
|
2000-12-29 00:19:55 +08:00
|
|
|
|
|
|
|
if (! drawable_type)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static const GTypeInfo drawable_info =
|
2000-12-29 00:19:55 +08:00
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
sizeof (GimpDrawableClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_drawable_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
2000-12-29 00:19:55 +08:00
|
|
|
sizeof (GimpDrawable),
|
2001-08-11 22:39:19 +08:00
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_drawable_init,
|
2000-12-29 00:19:55 +08:00
|
|
|
};
|
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
drawable_type = g_type_register_static (GIMP_TYPE_ITEM,
|
2001-08-11 22:39:19 +08:00
|
|
|
"GimpDrawable",
|
|
|
|
&drawable_info, 0);
|
2000-12-29 00:19:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return drawable_type;
|
1998-06-30 23:31:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-12-29 00:19:55 +08:00
|
|
|
gimp_drawable_class_init (GimpDrawableClass *klass)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
GObjectClass *object_class;
|
2001-02-05 06:10:54 +08:00
|
|
|
GimpObjectClass *gimp_object_class;
|
|
|
|
GimpViewableClass *viewable_class;
|
2003-02-11 21:52:47 +08:00
|
|
|
GimpItemClass *item_class;
|
1999-08-22 19:45:31 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
2003-02-11 21:52:47 +08:00
|
|
|
item_class = GIMP_ITEM_CLASS (klass);
|
2001-01-10 08:36:54 +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);
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2001-03-05 00:52:37 +08:00
|
|
|
gimp_drawable_signals[VISIBILITY_CHANGED] =
|
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 ("visibility_changed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpDrawableClass, visibility_changed),
|
|
|
|
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-03-05 00:52:37 +08:00
|
|
|
|
2003-05-21 19:34:00 +08:00
|
|
|
gimp_drawable_signals[ALPHA_CHANGED] =
|
|
|
|
g_signal_new ("alpha_changed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpDrawableClass, alpha_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
gimp_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
object_class->finalize = gimp_drawable_finalize;
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
gimp_object_class->get_memsize = gimp_drawable_get_memsize;
|
2001-01-10 11:13:03 +08:00
|
|
|
|
2001-02-05 06:10:54 +08:00
|
|
|
viewable_class->invalidate_preview = gimp_drawable_invalidate_preview;
|
2003-02-22 03:03:19 +08:00
|
|
|
viewable_class->get_preview_size = gimp_drawable_get_preview_size;
|
2003-02-27 21:59:41 +08:00
|
|
|
viewable_class->get_popup_size = gimp_drawable_get_popup_size;
|
2001-02-07 08:06:58 +08:00
|
|
|
viewable_class->get_preview = gimp_drawable_get_preview;
|
2001-02-05 06:10:54 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
item_class->duplicate = gimp_drawable_duplicate;
|
2003-05-07 19:09:00 +08:00
|
|
|
item_class->scale = gimp_drawable_scale;
|
2003-05-07 21:01:17 +08:00
|
|
|
item_class->resize = gimp_drawable_resize;
|
2003-05-13 21:57:11 +08:00
|
|
|
item_class->flip = gimp_drawable_flip;
|
2003-05-20 18:36:29 +08:00
|
|
|
item_class->rotate = gimp_drawable_rotate;
|
2003-05-13 21:57:11 +08:00
|
|
|
item_class->transform = gimp_drawable_transform;
|
2003-02-11 21:52:47 +08:00
|
|
|
|
2001-07-08 06:49:01 +08:00
|
|
|
klass->visibility_changed = NULL;
|
2003-05-21 19:34:00 +08:00
|
|
|
klass->alpha_changed = NULL;
|
1998-06-30 23:31:32 +08:00
|
|
|
}
|
|
|
|
|
2001-01-20 21:21:49 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_init (GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
drawable->tiles = NULL;
|
|
|
|
drawable->visible = FALSE;
|
|
|
|
drawable->bytes = 0;
|
|
|
|
drawable->type = -1;
|
|
|
|
drawable->has_alpha = FALSE;
|
|
|
|
drawable->preview_cache = NULL;
|
|
|
|
drawable->preview_valid = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_drawable_finalize (GObject *object)
|
2001-01-20 21:21:49 +08:00
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (object));
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (object);
|
|
|
|
|
|
|
|
if (drawable->tiles)
|
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
|
|
|
{
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (drawable->tiles);
|
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
|
|
|
drawable->tiles = NULL;
|
|
|
|
}
|
2001-01-20 21:21:49 +08:00
|
|
|
|
|
|
|
if (drawable->preview_cache)
|
|
|
|
gimp_preview_cache_invalidate (&drawable->preview_cache);
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-01-20 21:21:49 +08:00
|
|
|
}
|
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
static gsize
|
|
|
|
gimp_drawable_get_memsize (GimpObject *object)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
gsize memsize = 0;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (object);
|
|
|
|
|
|
|
|
if (drawable->tiles)
|
|
|
|
memsize += tile_manager_get_memsize (drawable->tiles);
|
|
|
|
|
|
|
|
if (drawable->preview_cache)
|
|
|
|
memsize += gimp_preview_cache_get_memsize (drawable->preview_cache);
|
|
|
|
|
|
|
|
return memsize + GIMP_OBJECT_CLASS (parent_class)->get_memsize (object);
|
|
|
|
}
|
|
|
|
|
2001-02-05 06:10:54 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_invalidate_preview (GimpViewable *viewable)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpImage *gimage;
|
|
|
|
|
2001-05-07 00:14:34 +08:00
|
|
|
if (GIMP_VIEWABLE_CLASS (parent_class)->invalidate_preview)
|
|
|
|
GIMP_VIEWABLE_CLASS (parent_class)->invalidate_preview (viewable);
|
|
|
|
|
2001-02-05 06:10:54 +08:00
|
|
|
drawable = GIMP_DRAWABLE (viewable);
|
|
|
|
|
|
|
|
drawable->preview_valid = FALSE;
|
|
|
|
|
2003-03-07 00:47:34 +08:00
|
|
|
if (drawable->preview_cache)
|
|
|
|
gimp_preview_cache_invalidate (&drawable->preview_cache);
|
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
gimage = gimp_item_get_image (GIMP_ITEM (drawable));
|
2001-02-05 06:10:54 +08:00
|
|
|
|
|
|
|
if (gimage)
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_viewable_invalidate_preview (GIMP_VIEWABLE (gimage));
|
2001-02-05 06:10:54 +08:00
|
|
|
}
|
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
static GimpItem *
|
|
|
|
gimp_drawable_duplicate (GimpItem *item,
|
|
|
|
GType new_type,
|
|
|
|
gboolean add_alpha)
|
2001-12-13 07:48:18 +08:00
|
|
|
{
|
2003-02-11 21:52:47 +08:00
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpItem *new_item;
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpDrawable *new_drawable;
|
|
|
|
GimpImageType new_image_type;
|
|
|
|
PixelRegion srcPR;
|
|
|
|
PixelRegion destPR;
|
|
|
|
|
|
|
|
g_return_val_if_fail (g_type_is_a (new_type, GIMP_TYPE_DRAWABLE), NULL);
|
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
new_item = GIMP_ITEM_CLASS (parent_class)->duplicate (item, new_type,
|
|
|
|
add_alpha);
|
|
|
|
|
|
|
|
if (! GIMP_IS_DRAWABLE (new_item))
|
|
|
|
return new_item;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
new_drawable = GIMP_DRAWABLE (new_item);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
|
|
|
if (add_alpha)
|
2003-02-01 02:08:32 +08:00
|
|
|
new_image_type = gimp_drawable_type_with_alpha (drawable);
|
2001-12-13 07:48:18 +08:00
|
|
|
else
|
2003-02-01 02:08:32 +08:00
|
|
|
new_image_type = gimp_drawable_type (drawable);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
|
|
|
gimp_drawable_configure (new_drawable,
|
2002-02-26 01:58:50 +08:00
|
|
|
gimp_item_get_image (GIMP_ITEM (drawable)),
|
2003-05-08 19:52:31 +08:00
|
|
|
item->offset_x,
|
|
|
|
item->offset_y,
|
|
|
|
item->width,
|
|
|
|
item->height,
|
2001-12-13 07:48:18 +08:00
|
|
|
new_image_type,
|
2003-02-01 02:08:32 +08:00
|
|
|
GIMP_OBJECT (new_drawable)->name);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2003-02-01 02:08:32 +08:00
|
|
|
new_drawable->visible = drawable->visible;
|
2001-12-13 07:48:18 +08:00
|
|
|
|
|
|
|
pixel_region_init (&srcPR, drawable->tiles,
|
|
|
|
0, 0,
|
2003-05-08 19:52:31 +08:00
|
|
|
item->width,
|
|
|
|
item->height,
|
2001-12-13 07:48:18 +08:00
|
|
|
FALSE);
|
|
|
|
pixel_region_init (&destPR, new_drawable->tiles,
|
|
|
|
0, 0,
|
2003-05-08 19:52:31 +08:00
|
|
|
new_item->width,
|
|
|
|
new_item->height,
|
2001-12-13 07:48:18 +08:00
|
|
|
TRUE);
|
|
|
|
|
|
|
|
if (new_image_type == drawable->type)
|
2003-02-01 02:08:32 +08:00
|
|
|
copy_region (&srcPR, &destPR);
|
2001-12-13 07:48:18 +08:00
|
|
|
else
|
2003-02-01 02:08:32 +08:00
|
|
|
add_alpha_region (&srcPR, &destPR);
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
return new_item;
|
|
|
|
}
|
|
|
|
|
2003-05-07 19:09:00 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_scale (GimpItem *item,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gint new_offset_x,
|
|
|
|
gint new_offset_y,
|
|
|
|
GimpInterpolationType interpolation_type)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
PixelRegion srcPR, destPR;
|
|
|
|
TileManager *new_tiles;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
|
|
|
|
/* Update the old position */
|
2003-05-08 19:52:31 +08:00
|
|
|
gimp_drawable_update (drawable, 0, 0, item->width, item->height);
|
2003-05-07 19:09:00 +08:00
|
|
|
|
|
|
|
/* Allocate the new channel */
|
|
|
|
new_tiles = tile_manager_new (new_width, new_height, drawable->bytes);
|
|
|
|
|
|
|
|
/* Configure the pixel regions */
|
|
|
|
pixel_region_init (&srcPR, drawable->tiles,
|
|
|
|
0, 0,
|
2003-05-08 19:52:31 +08:00
|
|
|
item->width,
|
|
|
|
item->height,
|
2003-05-07 19:09:00 +08:00
|
|
|
FALSE);
|
|
|
|
|
|
|
|
pixel_region_init (&destPR, new_tiles,
|
|
|
|
0, 0,
|
|
|
|
new_width, new_height,
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
/* Scale the drawable -
|
|
|
|
* If the drawable is indexed, then we don't use pixel-value
|
|
|
|
* resampling because that doesn't necessarily make sense for indexed
|
|
|
|
* images.
|
|
|
|
*/
|
2003-05-09 08:38:51 +08:00
|
|
|
scale_region (&srcPR, &destPR,
|
|
|
|
gimp_drawable_is_indexed (drawable) ?
|
|
|
|
GIMP_INTERPOLATION_NONE : interpolation_type);
|
2003-05-07 19:09:00 +08:00
|
|
|
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (drawable->tiles);
|
2003-05-08 19:52:31 +08:00
|
|
|
drawable->tiles = new_tiles;
|
2003-05-09 08:38:51 +08:00
|
|
|
|
|
|
|
GIMP_ITEM_CLASS (parent_class)->scale (item, new_width, new_height,
|
|
|
|
new_offset_x, new_offset_y,
|
|
|
|
interpolation_type);
|
2003-05-07 19:09:00 +08:00
|
|
|
|
|
|
|
/* Update the new position */
|
2003-05-08 19:52:31 +08:00
|
|
|
gimp_drawable_update (drawable, 0, 0, item->width, item->height);
|
2003-05-07 19:09:00 +08:00
|
|
|
|
|
|
|
gimp_viewable_size_changed (GIMP_VIEWABLE (drawable));
|
|
|
|
}
|
|
|
|
|
2003-05-07 21:01:17 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_resize (GimpItem *item,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
PixelRegion srcPR, destPR;
|
|
|
|
TileManager *new_tiles;
|
2003-05-14 23:32:07 +08:00
|
|
|
gint new_offset_x;
|
|
|
|
gint new_offset_y;
|
|
|
|
gint copy_x, copy_y;
|
|
|
|
gint copy_width, copy_height;
|
2003-05-07 21:01:17 +08:00
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
|
2003-05-14 23:32:07 +08:00
|
|
|
new_offset_x = item->offset_x - offset_x;
|
|
|
|
new_offset_y = item->offset_y - offset_y;
|
2003-05-07 21:01:17 +08:00
|
|
|
|
2003-05-14 23:32:07 +08:00
|
|
|
gimp_rectangle_intersect (item->offset_x, item->offset_y,
|
|
|
|
item->width, item->height,
|
|
|
|
new_offset_x, new_offset_y,
|
|
|
|
new_width, new_height,
|
|
|
|
©_x, ©_y,
|
|
|
|
©_width, ©_height);
|
2003-05-07 21:01:17 +08:00
|
|
|
|
|
|
|
/* Update the old position */
|
2003-05-08 19:52:31 +08:00
|
|
|
gimp_drawable_update (drawable, 0, 0, item->width, item->height);
|
2003-05-07 21:01:17 +08:00
|
|
|
|
|
|
|
/* Allocate the new tile manager, configure dest region */
|
|
|
|
new_tiles = tile_manager_new (new_width, new_height,
|
|
|
|
drawable->bytes);
|
|
|
|
|
|
|
|
/* Determine whether the new tiles need to be initially cleared */
|
2003-05-14 23:32:07 +08:00
|
|
|
if (copy_width != new_width ||
|
|
|
|
copy_height != new_height)
|
2003-05-07 21:01:17 +08:00
|
|
|
{
|
2003-05-14 23:32:07 +08:00
|
|
|
guchar bg[MAX_CHANNELS] = { 0, };
|
|
|
|
|
2003-05-07 21:01:17 +08:00
|
|
|
pixel_region_init (&destPR, new_tiles,
|
|
|
|
0, 0,
|
|
|
|
new_width, new_height,
|
|
|
|
TRUE);
|
|
|
|
|
2003-05-14 23:32:07 +08:00
|
|
|
if (! gimp_drawable_has_alpha (drawable) && ! GIMP_IS_CHANNEL (drawable))
|
|
|
|
gimp_image_get_background (gimp_item_get_image (item), drawable, bg);
|
|
|
|
|
|
|
|
color_region (&destPR, bg);
|
2003-05-07 21:01:17 +08:00
|
|
|
}
|
|
|
|
|
2003-05-14 23:32:07 +08:00
|
|
|
/* Determine whether anything needs to be copied */
|
|
|
|
if (copy_width && copy_height)
|
2003-05-07 21:01:17 +08:00
|
|
|
{
|
2003-05-14 23:32:07 +08:00
|
|
|
pixel_region_init (&srcPR, drawable->tiles,
|
|
|
|
copy_x - item->offset_x, copy_y - item->offset_y,
|
|
|
|
copy_width, copy_height,
|
|
|
|
FALSE);
|
|
|
|
|
2003-05-07 21:01:17 +08:00
|
|
|
pixel_region_init (&destPR, new_tiles,
|
2003-05-14 23:32:07 +08:00
|
|
|
copy_x - new_offset_x, copy_y - new_offset_y,
|
|
|
|
copy_width, copy_height,
|
2003-05-07 21:01:17 +08:00
|
|
|
TRUE);
|
|
|
|
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
}
|
|
|
|
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (drawable->tiles);
|
2003-05-08 19:52:31 +08:00
|
|
|
drawable->tiles = new_tiles;
|
2003-05-09 08:38:51 +08:00
|
|
|
|
|
|
|
GIMP_ITEM_CLASS (parent_class)->resize (item, new_width, new_height,
|
|
|
|
offset_x, offset_y);
|
2003-05-07 21:01:17 +08:00
|
|
|
|
|
|
|
/* update the new area */
|
2003-05-08 19:52:31 +08:00
|
|
|
gimp_drawable_update (drawable, 0, 0, item->width, item->height);
|
2003-05-07 21:01:17 +08:00
|
|
|
|
|
|
|
gimp_viewable_size_changed (GIMP_VIEWABLE (drawable));
|
|
|
|
}
|
|
|
|
|
2003-05-13 21:57:11 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_flip (GimpItem *item,
|
|
|
|
GimpOrientationType flip_type,
|
|
|
|
gdouble axis,
|
|
|
|
gboolean clip_result)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
TileManager *tiles;
|
|
|
|
gint off_x, off_y;
|
|
|
|
gint old_off_x, old_off_y;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
|
|
|
|
gimp_item_offsets (item, &off_x, &off_y);
|
|
|
|
|
|
|
|
tile_manager_get_offsets (drawable->tiles, &old_off_x, &old_off_y);
|
|
|
|
tile_manager_set_offsets (drawable->tiles, off_x, off_y);
|
|
|
|
|
|
|
|
tiles = gimp_drawable_transform_tiles_flip (drawable,
|
|
|
|
drawable->tiles,
|
|
|
|
flip_type, axis,
|
|
|
|
clip_result);
|
|
|
|
|
|
|
|
tile_manager_set_offsets (drawable->tiles, old_off_x, old_off_y);
|
|
|
|
|
|
|
|
if (tiles)
|
2003-05-27 01:02:06 +08:00
|
|
|
{
|
|
|
|
gimp_drawable_transform_paste (drawable, tiles, FALSE);
|
|
|
|
tile_manager_unref (tiles);
|
|
|
|
}
|
2003-05-13 21:57:11 +08:00
|
|
|
}
|
|
|
|
|
2003-05-20 18:36:29 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_rotate (GimpItem *item,
|
|
|
|
GimpRotationType rotate_type,
|
|
|
|
gdouble center_x,
|
|
|
|
gdouble center_y,
|
|
|
|
gboolean clip_result)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
TileManager *tiles;
|
|
|
|
gint off_x, off_y;
|
|
|
|
gint old_off_x, old_off_y;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
|
|
|
|
gimp_item_offsets (item, &off_x, &off_y);
|
|
|
|
|
|
|
|
tile_manager_get_offsets (drawable->tiles, &old_off_x, &old_off_y);
|
|
|
|
tile_manager_set_offsets (drawable->tiles, off_x, off_y);
|
|
|
|
|
|
|
|
tiles = gimp_drawable_transform_tiles_rotate (drawable,
|
|
|
|
drawable->tiles,
|
|
|
|
rotate_type, center_x, center_y,
|
|
|
|
clip_result);
|
|
|
|
|
|
|
|
tile_manager_set_offsets (drawable->tiles, old_off_x, old_off_y);
|
|
|
|
|
|
|
|
if (tiles)
|
2003-05-27 01:02:06 +08:00
|
|
|
{
|
|
|
|
gimp_drawable_transform_paste (drawable, tiles, FALSE);
|
|
|
|
tile_manager_unref (tiles);
|
|
|
|
}
|
2003-05-20 18:36:29 +08:00
|
|
|
}
|
|
|
|
|
2003-05-13 21:57:11 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_transform (GimpItem *item,
|
|
|
|
GimpMatrix3 matrix,
|
|
|
|
GimpTransformDirection direction,
|
|
|
|
GimpInterpolationType interpolation_type,
|
|
|
|
gboolean clip_result,
|
|
|
|
GimpProgressFunc progress_callback,
|
|
|
|
gpointer progress_data)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
TileManager *tiles;
|
|
|
|
gint off_x, off_y;
|
|
|
|
gint old_off_x, old_off_y;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (item);
|
|
|
|
|
|
|
|
gimp_item_offsets (item, &off_x, &off_y);
|
|
|
|
|
|
|
|
tile_manager_get_offsets (drawable->tiles, &old_off_x, &old_off_y);
|
|
|
|
tile_manager_set_offsets (drawable->tiles, off_x, off_y);
|
|
|
|
|
|
|
|
tiles = gimp_drawable_transform_tiles_affine (drawable,
|
|
|
|
drawable->tiles,
|
|
|
|
matrix, direction,
|
|
|
|
interpolation_type,
|
|
|
|
clip_result,
|
|
|
|
progress_callback,
|
|
|
|
progress_data);
|
|
|
|
|
|
|
|
tile_manager_set_offsets (drawable->tiles, old_off_x, old_off_y);
|
|
|
|
|
|
|
|
if (tiles)
|
2003-05-27 01:02:06 +08:00
|
|
|
{
|
|
|
|
gimp_drawable_transform_paste (drawable, tiles, FALSE);
|
|
|
|
tile_manager_unref (tiles);
|
|
|
|
}
|
2003-05-13 21:57:11 +08:00
|
|
|
}
|
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
void
|
|
|
|
gimp_drawable_configure (GimpDrawable *drawable,
|
|
|
|
GimpImage *gimage,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageType type,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
|
|
|
|
2003-05-08 22:21:39 +08:00
|
|
|
gimp_item_configure (GIMP_ITEM (drawable), gimage,
|
|
|
|
offset_x, offset_y, width, height, name);
|
2003-05-08 19:52:31 +08:00
|
|
|
|
2003-02-11 21:52:47 +08:00
|
|
|
drawable->type = type;
|
|
|
|
drawable->bytes = GIMP_IMAGE_TYPE_BYTES (type);
|
|
|
|
drawable->has_alpha = GIMP_IMAGE_TYPE_HAS_ALPHA (type);
|
|
|
|
|
|
|
|
if (drawable->tiles)
|
2003-05-27 01:02:06 +08:00
|
|
|
tile_manager_unref (drawable->tiles);
|
2003-02-11 21:52:47 +08:00
|
|
|
|
|
|
|
drawable->tiles = tile_manager_new (width, height,
|
|
|
|
drawable->bytes);
|
|
|
|
|
|
|
|
drawable->visible = TRUE;
|
|
|
|
|
|
|
|
/* preview variables */
|
|
|
|
drawable->preview_cache = NULL;
|
|
|
|
drawable->preview_valid = FALSE;
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
2001-07-08 06:49:01 +08:00
|
|
|
void
|
|
|
|
gimp_drawable_update (GimpDrawable *drawable,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
2001-12-03 21:44:59 +08:00
|
|
|
gint w,
|
|
|
|
gint h)
|
2001-07-08 06:49:01 +08:00
|
|
|
{
|
2003-05-08 22:06:03 +08:00
|
|
|
GimpItem *item;
|
2001-07-08 06:49:01 +08:00
|
|
|
GimpImage *gimage;
|
|
|
|
gint offset_x;
|
|
|
|
gint offset_y;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
2003-05-08 22:06:03 +08:00
|
|
|
item = GIMP_ITEM (drawable);
|
|
|
|
gimage = gimp_item_get_image (item);
|
2001-07-08 06:49:01 +08:00
|
|
|
|
|
|
|
g_return_if_fail (gimage != NULL);
|
|
|
|
|
2003-05-08 22:06:03 +08:00
|
|
|
gimp_item_offsets (item, &offset_x, &offset_y);
|
2001-07-08 06:49:01 +08:00
|
|
|
x += offset_x;
|
|
|
|
y += offset_y;
|
|
|
|
|
|
|
|
gimp_image_update (gimage, x, y, w, h);
|
|
|
|
|
|
|
|
gimp_viewable_invalidate_preview (GIMP_VIEWABLE (drawable));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-02-14 22:14:29 +08:00
|
|
|
gimp_drawable_push_undo (GimpDrawable *drawable,
|
|
|
|
const gchar *undo_desc,
|
2002-06-07 03:44:05 +08:00
|
|
|
gint x1,
|
|
|
|
gint y1,
|
|
|
|
gint x2,
|
|
|
|
gint y2,
|
|
|
|
TileManager *tiles,
|
|
|
|
gboolean sparse)
|
2001-07-08 06:49:01 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
2001-12-03 21:44:59 +08:00
|
|
|
if (! tiles)
|
2003-02-14 22:14:29 +08:00
|
|
|
gimp_image_undo_push_image (gimp_item_get_image (GIMP_ITEM (drawable)),
|
|
|
|
undo_desc,
|
|
|
|
drawable,
|
|
|
|
x1, y1, x2, y2);
|
2001-07-08 06:49:01 +08:00
|
|
|
else
|
2003-02-14 22:14:29 +08:00
|
|
|
gimp_image_undo_push_image_mod (gimp_item_get_image (GIMP_ITEM (drawable)),
|
|
|
|
undo_desc,
|
|
|
|
drawable,
|
|
|
|
x1, y1, x2, y2,
|
|
|
|
tiles, sparse);
|
2001-07-08 06:49:01 +08:00
|
|
|
}
|
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
void
|
1999-08-22 19:45:31 +08:00
|
|
|
gimp_drawable_merge_shadow (GimpDrawable *drawable,
|
2003-02-14 22:14:29 +08:00
|
|
|
gboolean push_undo,
|
|
|
|
const gchar *undo_desc)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2001-01-20 21:21:49 +08:00
|
|
|
GimpImage *gimage;
|
2000-12-29 00:19:55 +08:00
|
|
|
PixelRegion shadowPR;
|
|
|
|
gint x1, y1, x2, y2;
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
gimage = gimp_item_get_image (GIMP_ITEM (drawable));
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_if_fail (gimage->shadow != NULL);
|
1999-01-28 06:00:44 +08:00
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
/* A useful optimization here is to limit the update to the
|
|
|
|
* extents of the selection mask, as it cannot extend beyond
|
|
|
|
* them.
|
|
|
|
*/
|
|
|
|
gimp_drawable_mask_bounds (drawable, &x1, &y1, &x2, &y2);
|
|
|
|
pixel_region_init (&shadowPR, gimage->shadow, x1, y1,
|
|
|
|
(x2 - x1), (y2 - y1), FALSE);
|
2003-02-14 22:14:29 +08:00
|
|
|
gimp_image_apply_image (gimage, drawable, &shadowPR,
|
|
|
|
push_undo, undo_desc,
|
2002-03-04 01:38:12 +08:00
|
|
|
GIMP_OPACITY_OPAQUE, GIMP_REPLACE_MODE,
|
|
|
|
NULL, x1, y1);
|
1998-06-30 23:31:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-01-20 21:21:49 +08:00
|
|
|
gimp_drawable_fill (GimpDrawable *drawable,
|
|
|
|
const GimpRGB *color)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2003-05-08 21:12:46 +08:00
|
|
|
GimpItem *item;
|
2001-01-20 21:21:49 +08:00
|
|
|
GimpImage *gimage;
|
2000-12-29 00:19:55 +08:00
|
|
|
PixelRegion destPR;
|
|
|
|
guchar c[MAX_CHANNELS];
|
|
|
|
guchar i;
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
2003-05-08 21:12:46 +08:00
|
|
|
item = GIMP_ITEM (drawable);
|
|
|
|
gimage = gimp_item_get_image (item);
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_if_fail (gimage != NULL);
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
switch (GIMP_IMAGE_TYPE_BASE_TYPE (gimp_drawable_type (drawable)))
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2001-12-14 23:30:31 +08:00
|
|
|
case GIMP_RGB:
|
2001-01-20 21:21:49 +08:00
|
|
|
gimp_rgba_get_uchar (color,
|
|
|
|
&c[RED_PIX],
|
|
|
|
&c[GREEN_PIX],
|
|
|
|
&c[BLUE_PIX],
|
|
|
|
&c[ALPHA_PIX]);
|
2001-12-12 02:11:56 +08:00
|
|
|
if (gimp_drawable_type (drawable) != GIMP_RGBA_IMAGE)
|
2001-01-20 21:21:49 +08:00
|
|
|
c[ALPHA_PIX] = 255;
|
1998-06-30 23:31:32 +08:00
|
|
|
break;
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
case GIMP_GRAY:
|
2001-01-20 21:21:49 +08:00
|
|
|
gimp_rgba_get_uchar (color,
|
|
|
|
&c[GRAY_PIX],
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&c[ALPHA_G_PIX]);
|
2001-12-12 02:11:56 +08:00
|
|
|
if (gimp_drawable_type (drawable) != GIMP_GRAYA_IMAGE)
|
2001-01-20 21:21:49 +08:00
|
|
|
c[ALPHA_G_PIX] = 255;
|
1998-06-30 23:31:32 +08:00
|
|
|
break;
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
case GIMP_INDEXED:
|
2001-01-20 21:21:49 +08:00
|
|
|
gimp_rgb_get_uchar (color,
|
|
|
|
&c[RED_PIX],
|
|
|
|
&c[GREEN_PIX],
|
|
|
|
&c[BLUE_PIX]);
|
2001-12-11 23:58:07 +08:00
|
|
|
gimp_image_transform_color (gimage, drawable, c, &i, GIMP_RGB);
|
1998-06-30 23:31:32 +08:00
|
|
|
c[INDEXED_PIX] = i;
|
2001-12-12 02:11:56 +08:00
|
|
|
if (gimp_drawable_type (drawable) == GIMP_INDEXEDA_IMAGE)
|
2001-01-20 21:21:49 +08:00
|
|
|
gimp_rgba_get_uchar (color,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&c[ALPHA_I_PIX]);
|
1998-06-30 23:31:32 +08:00
|
|
|
break;
|
2000-12-29 00:19:55 +08:00
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
default:
|
2001-12-11 23:58:07 +08:00
|
|
|
g_warning ("%s: Cannot fill unknown image type.",
|
|
|
|
G_GNUC_PRETTY_FUNCTION);
|
1998-06-30 23:31:32 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixel_region_init (&destPR,
|
|
|
|
gimp_drawable_data (drawable),
|
|
|
|
0, 0,
|
2003-05-08 21:12:46 +08:00
|
|
|
gimp_item_width (item),
|
|
|
|
gimp_item_height (item),
|
1998-06-30 23:31:32 +08:00
|
|
|
TRUE);
|
|
|
|
color_region (&destPR, c);
|
2001-07-08 06:49:01 +08:00
|
|
|
|
|
|
|
gimp_drawable_update (drawable,
|
|
|
|
0, 0,
|
2003-05-08 21:12:46 +08:00
|
|
|
gimp_item_width (item),
|
|
|
|
gimp_item_height (item));
|
2001-07-08 06:49:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_drawable_fill_by_type (GimpDrawable *drawable,
|
|
|
|
GimpContext *context,
|
|
|
|
GimpFillType fill_type)
|
|
|
|
{
|
|
|
|
GimpRGB color;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
2002-03-04 01:38:12 +08:00
|
|
|
color.a = GIMP_OPACITY_OPAQUE;
|
2001-07-08 06:49:01 +08:00
|
|
|
|
|
|
|
switch (fill_type)
|
|
|
|
{
|
2002-03-18 19:07:34 +08:00
|
|
|
case GIMP_FOREGROUND_FILL:
|
2001-07-08 06:49:01 +08:00
|
|
|
gimp_context_get_foreground (context, &color);
|
|
|
|
break;
|
|
|
|
|
2002-03-18 19:07:34 +08:00
|
|
|
case GIMP_BACKGROUND_FILL:
|
2001-07-08 06:49:01 +08:00
|
|
|
gimp_context_get_background (context, &color);
|
|
|
|
break;
|
|
|
|
|
2002-03-18 19:07:34 +08:00
|
|
|
case GIMP_WHITE_FILL:
|
2001-07-08 06:49:01 +08:00
|
|
|
gimp_rgb_set (&color, 1.0, 1.0, 1.0);
|
|
|
|
break;
|
|
|
|
|
2002-03-18 19:07:34 +08:00
|
|
|
case GIMP_TRANSPARENT_FILL:
|
2002-03-04 01:38:12 +08:00
|
|
|
gimp_rgba_set (&color, 0.0, 0.0, 0.0, GIMP_OPACITY_TRANSPARENT);
|
2001-07-08 06:49:01 +08:00
|
|
|
break;
|
|
|
|
|
2002-03-18 19:07:34 +08:00
|
|
|
case GIMP_NO_FILL:
|
2001-07-08 06:49:01 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
2001-11-16 20:23:01 +08:00
|
|
|
g_warning ("%s: unknown fill type %d", G_GNUC_PRETTY_FUNCTION, fill_type);
|
2001-07-08 06:49:01 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_drawable_fill (drawable, &color);
|
1998-06-30 23:31:32 +08:00
|
|
|
}
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
gboolean
|
1998-06-30 23:31:32 +08:00
|
|
|
gimp_drawable_mask_bounds (GimpDrawable *drawable,
|
1999-08-22 19:45:31 +08:00
|
|
|
gint *x1,
|
|
|
|
gint *y1,
|
|
|
|
gint *x2,
|
|
|
|
gint *y2)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2003-05-08 21:12:46 +08:00
|
|
|
GimpItem *item;
|
2000-02-17 19:44:27 +08:00
|
|
|
GimpImage *gimage;
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2003-05-08 21:12:46 +08:00
|
|
|
item = GIMP_ITEM (drawable);
|
|
|
|
gimage = gimp_item_get_image (item);
|
2000-12-29 00:19:55 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (gimage != NULL, FALSE);
|
1998-06-30 23:31:32 +08:00
|
|
|
|
2001-11-29 06:42:19 +08:00
|
|
|
if (gimp_image_mask_bounds (gimage, x1, y1, x2, y2))
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2003-05-08 21:12:46 +08:00
|
|
|
gint off_x, off_y;
|
|
|
|
|
2003-05-08 22:06:03 +08:00
|
|
|
gimp_item_offsets (item, &off_x, &off_y);
|
2003-05-08 21:12:46 +08:00
|
|
|
|
|
|
|
*x1 = CLAMP (*x1 - off_x, 0, gimp_item_width (item));
|
|
|
|
*y1 = CLAMP (*y1 - off_y, 0, gimp_item_height (item));
|
|
|
|
*x2 = CLAMP (*x2 - off_x, 0, gimp_item_width (item));
|
|
|
|
*y2 = CLAMP (*y2 - off_y, 0, gimp_item_height (item));
|
1998-06-30 23:31:32 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-05-08 21:12:46 +08:00
|
|
|
*x2 = gimp_item_width (item);
|
|
|
|
*y2 = gimp_item_height (item);
|
1998-06-30 23:31:32 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
gboolean
|
2000-12-29 00:19:55 +08:00
|
|
|
gimp_drawable_has_alpha (const GimpDrawable *drawable)
|
1999-08-22 19:45:31 +08:00
|
|
|
{
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
|
|
|
|
|
|
|
return drawable->has_alpha;
|
1999-08-22 19:45:31 +08:00
|
|
|
}
|
1998-10-14 10:54:02 +08:00
|
|
|
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
GimpImageType
|
2000-12-29 00:19:55 +08:00
|
|
|
gimp_drawable_type (const GimpDrawable *drawable)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), -1);
|
|
|
|
|
|
|
|
return drawable->type;
|
1998-06-30 23:31:32 +08:00
|
|
|
}
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
GimpImageType
|
2000-12-29 00:19:55 +08:00
|
|
|
gimp_drawable_type_with_alpha (const GimpDrawable *drawable)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), -1);
|
1999-08-22 19:45:31 +08:00
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
return GIMP_IMAGE_TYPE_WITH_ALPHA (gimp_drawable_type (drawable));
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_drawable_is_rgb (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
return GIMP_IMAGE_TYPE_IS_RGB (gimp_drawable_type (drawable));
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_drawable_is_gray (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
return GIMP_IMAGE_TYPE_IS_GRAY (gimp_drawable_type (drawable));
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_drawable_is_indexed (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
return GIMP_IMAGE_TYPE_IS_INDEXED (gimp_drawable_type (drawable));
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TileManager *
|
|
|
|
gimp_drawable_data (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
|
|
|
|
|
|
|
return drawable->tiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
TileManager *
|
|
|
|
gimp_drawable_shadow (GimpDrawable *drawable)
|
|
|
|
{
|
2003-05-08 19:52:31 +08:00
|
|
|
GimpItem *item;
|
2001-12-13 07:48:18 +08:00
|
|
|
GimpImage *gimage;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
|
|
|
|
2003-05-08 19:52:31 +08:00
|
|
|
item = GIMP_ITEM (drawable);
|
|
|
|
|
|
|
|
if (! (gimage = gimp_item_get_image (item)))
|
2001-12-13 07:48:18 +08:00
|
|
|
return NULL;
|
|
|
|
|
2003-05-08 19:52:31 +08:00
|
|
|
return gimp_image_shadow (gimage, item->width, item->height,
|
2001-12-13 07:48:18 +08:00
|
|
|
drawable->bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
gimp_drawable_bytes (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), -1);
|
|
|
|
|
|
|
|
return drawable->bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
gimp_drawable_bytes_with_alpha (const GimpDrawable *drawable)
|
|
|
|
{
|
2001-12-14 23:30:31 +08:00
|
|
|
GimpImageType type;
|
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), -1);
|
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
type = GIMP_IMAGE_TYPE_WITH_ALPHA (gimp_drawable_type (drawable));
|
2001-12-13 07:48:18 +08:00
|
|
|
|
2001-12-14 23:30:31 +08:00
|
|
|
return GIMP_IMAGE_TYPE_BYTES (type);
|
2001-12-13 07:48:18 +08:00
|
|
|
}
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
gboolean
|
2001-03-05 00:52:37 +08:00
|
|
|
gimp_drawable_get_visible (const GimpDrawable *drawable)
|
1998-06-30 23:31:32 +08:00
|
|
|
{
|
2000-01-31 21:07:39 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE);
|
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
return drawable->visible;
|
|
|
|
}
|
|
|
|
|
2001-03-05 00:52:37 +08:00
|
|
|
void
|
|
|
|
gimp_drawable_set_visible (GimpDrawable *drawable,
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
gboolean visible,
|
|
|
|
gboolean push_undo)
|
2001-03-05 00:52:37 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
|
|
|
if (drawable->visible != visible)
|
|
|
|
{
|
2003-05-08 19:52:31 +08:00
|
|
|
GimpItem *item = GIMP_ITEM (drawable);
|
|
|
|
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
if (push_undo)
|
|
|
|
{
|
2003-05-08 19:52:31 +08:00
|
|
|
GimpImage *gimage = gimp_item_get_image (item);
|
Made drawable/layer properties (visibility, opacity etc.) undoable (fixes
2003-03-17 Michael Natterer <mitch@gimp.org>
Made drawable/layer properties (visibility, opacity etc.)
undoable (fixes bug #73893).
* app/core/core-enums.[ch]: added undo types/groups for
visibility, mode, opacity, linked and preserve_trans.
* app/core/Makefile.am
* app/core/core-types.h
* app/core/gimpitemundo.[ch]: new GimpUndo subclass which holds a
ref'ed GimpItem pointer so (1) this doesn't need to be done by all
undo steps related to an item and (2) the item the undo step is
for can be determined from outside the undo system.
* app/core/gimpimage-undo.[ch]: added gimp_image_undo_push_item()
which returns a new GimpItemUndo.
* app/core/gimpimage-undo-push.[ch]: use it for all item related
undo steps. Removed lots of GimpItem, GimpLayer, GimpDrawable
and GimpVectors pointers from the private undo structs. Added
undo push functions for the new undo types added above.
* app/core/gimpdrawable.[ch] (gimp_drawable_set_visible): added
"gboolean push_undo" parameter.
* app/core/gimplayer.[ch] (gimp_layer_set_opacity, _mode,
_preserve_trans, _linked): added "gboolean push_undo" parameters.
* app/core/gimpimage-mask.c
* app/core/gimpimage-merge.c
* app/core/gimplayer-floating-sel.c
* app/tools/gimpmovetool.c
* app/xcf/xcf-load.c
* app/widgets/gimpdrawablelistitem.c
* app/widgets/gimplayerlistitem.c
* app/widgets/gimplayerlistview.c: changed accordingly.
* tools/pdbgen/pdb/channel.pdb
* tools/pdbgen/pdb/layer.pdb: ditto. Added '$undo' paramaters to
the foo_accessors() functions. Removed $func from foo_accesors()
because we don't manipulate items without using getters/setters
any longer.
* app/pdb/channel_cmds.c
* app/pdb/layer_cmds.c: regenerated.
* app/widgets/gimpcellrenderertoggle.[ch]: added "clicked" signal
which carries an additional "GdkModifierType state" parameter as
in GimpCellRendererViewable .
* app/widgets/gimpcontainertreeview.c: emit "clicked" from
the toggle renderer, not "toggled" so the callbacks get the
modifier state.
* app/widgets/gimpdrawabletreeview.c: resurrected the "exclusive
visible by <shift>+click" feature as in 1.2.
* app/widgets/gimplayertreeview.c: compress layer opacity undos by
looking at the top of the undo stack and not pushing an undo if
there already is a GIMP_UNDO_DRAWABLE_OPACITY for the active
layer.
2003-03-18 02:02:41 +08:00
|
|
|
|
|
|
|
if (gimage)
|
|
|
|
gimp_image_undo_push_drawable_visibility (gimage, NULL, drawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
drawable->visible = visible ? TRUE : FALSE;
|
2001-03-05 00:52:37 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_emit (drawable, gimp_drawable_signals[VISIBILITY_CHANGED], 0);
|
2001-07-08 06:49:01 +08:00
|
|
|
|
2003-05-08 19:52:31 +08:00
|
|
|
gimp_drawable_update (drawable, 0, 0, item->width, item->height);
|
2001-03-05 00:52:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-21 19:34:00 +08:00
|
|
|
void
|
|
|
|
gimp_drawable_alpha_changed (GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
|
|
|
|
|
|
|
g_signal_emit (drawable, gimp_drawable_signals[ALPHA_CHANGED], 0);
|
|
|
|
}
|
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
guchar *
|
|
|
|
gimp_drawable_cmap (const GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
if (! (gimage = gimp_item_get_image (GIMP_ITEM (drawable))))
|
2001-12-13 07:48:18 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return gimage->cmap;
|
|
|
|
}
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
guchar *
|
|
|
|
gimp_drawable_get_color_at (GimpDrawable *drawable,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
1999-02-16 16:53:54 +08:00
|
|
|
{
|
2000-10-28 23:43:56 +08:00
|
|
|
Tile *tile;
|
1999-08-22 19:45:31 +08:00
|
|
|
guchar *src;
|
|
|
|
guchar *dest;
|
1999-02-16 16:53:54 +08:00
|
|
|
|
2000-02-17 19:44:27 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
2002-02-26 01:58:50 +08:00
|
|
|
g_return_val_if_fail (gimp_item_get_image (GIMP_ITEM (drawable)) ||
|
2001-08-11 22:39:19 +08:00
|
|
|
! gimp_drawable_is_indexed (drawable), NULL);
|
2000-03-09 19:58:03 +08:00
|
|
|
|
|
|
|
/* do not make this a g_return_if_fail() */
|
2003-05-08 19:52:31 +08:00
|
|
|
if (! (x >= 0 && x < GIMP_ITEM (drawable)->width &&
|
|
|
|
y >= 0 && y < GIMP_ITEM (drawable)->height))
|
2000-03-09 19:58:03 +08:00
|
|
|
return NULL;
|
2000-02-17 19:44:27 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
dest = g_new (guchar, 5);
|
2000-02-17 19:44:27 +08:00
|
|
|
|
1999-02-16 16:53:54 +08:00
|
|
|
tile = tile_manager_get_tile (gimp_drawable_data (drawable), x, y,
|
|
|
|
TRUE, FALSE);
|
|
|
|
src = tile_data_pointer (tile, x % TILE_WIDTH, y % TILE_HEIGHT);
|
2000-02-17 19:44:27 +08:00
|
|
|
|
2002-02-26 01:58:50 +08:00
|
|
|
gimp_image_get_color (gimp_item_get_image (GIMP_ITEM (drawable)),
|
1999-02-16 16:53:54 +08:00
|
|
|
gimp_drawable_type (drawable), dest, src);
|
2000-02-17 19:44:27 +08:00
|
|
|
|
2000-12-14 02:53:35 +08:00
|
|
|
if (GIMP_IMAGE_TYPE_HAS_ALPHA (gimp_drawable_type (drawable)))
|
1999-02-16 16:53:54 +08:00
|
|
|
dest[3] = src[gimp_drawable_bytes (drawable) - 1];
|
|
|
|
else
|
|
|
|
dest[3] = 255;
|
2000-02-17 19:44:27 +08:00
|
|
|
|
1999-10-17 08:07:55 +08:00
|
|
|
if (gimp_drawable_is_indexed (drawable))
|
1999-02-16 16:53:54 +08:00
|
|
|
dest[4] = src[0];
|
|
|
|
else
|
|
|
|
dest[4] = 0;
|
2000-02-17 19:44:27 +08:00
|
|
|
|
1999-02-16 16:53:54 +08:00
|
|
|
tile_release (tile, FALSE);
|
2000-02-17 19:44:27 +08:00
|
|
|
|
1999-02-16 16:53:54 +08:00
|
|
|
return dest;
|
|
|
|
}
|