2001-06-26 20:09:43 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
#include <glib-object.h>
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
|
|
|
|
#include "core-types.h"
|
|
|
|
|
|
|
|
#include "base/pixel-region.h"
|
|
|
|
#include "base/tile-manager.h"
|
|
|
|
#include "base/temp-buf.h"
|
|
|
|
|
|
|
|
#include "paint-funcs/paint-funcs.h"
|
|
|
|
|
|
|
|
#include "gimpbuffer.h"
|
|
|
|
|
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static void gimp_buffer_class_init (GimpBufferClass *klass);
|
|
|
|
static void gimp_buffer_init (GimpBuffer *buffer);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static void gimp_buffer_finalize (GObject *object);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static gsize gimp_buffer_get_memsize (GimpObject *object);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static void gimp_buffer_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean dot_for_dot,
|
2003-02-27 21:59:41 +08:00
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height);
|
|
|
|
static gboolean gimp_buffer_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height);
|
2003-02-22 03:03:19 +08:00
|
|
|
static TempBuf * gimp_buffer_get_new_preview (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
2003-04-09 00:01:01 +08:00
|
|
|
static gchar * gimp_buffer_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
static GimpViewableClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
GType
|
2001-06-26 20:09:43 +08:00
|
|
|
gimp_buffer_get_type (void)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static GType buffer_type = 0;
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
if (! buffer_type)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static const GTypeInfo buffer_info =
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
|
|
|
sizeof (GimpBufferClass),
|
2001-08-11 22:39:19 +08:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_buffer_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpBuffer),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_buffer_init,
|
2001-06-26 20:09:43 +08:00
|
|
|
};
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
buffer_type = g_type_register_static (GIMP_TYPE_VIEWABLE,
|
|
|
|
"GimpBuffer",
|
|
|
|
&buffer_info, 0);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return buffer_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_buffer_class_init (GimpBufferClass *klass)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
GObjectClass *object_class;
|
2002-01-31 00:14:26 +08:00
|
|
|
GimpObjectClass *gimp_object_class;
|
2001-06-26 20:09:43 +08:00
|
|
|
GimpViewableClass *viewable_class;
|
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
2001-06-26 20:09:43 +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-06-26 20:09:43 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
object_class->finalize = gimp_buffer_finalize;
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
gimp_object_class->get_memsize = gimp_buffer_get_memsize;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
viewable_class->get_preview_size = gimp_buffer_get_preview_size;
|
2003-02-27 21:59:41 +08:00
|
|
|
viewable_class->get_popup_size = gimp_buffer_get_popup_size;
|
2003-02-22 03:03:19 +08:00
|
|
|
viewable_class->get_new_preview = gimp_buffer_get_new_preview;
|
2003-04-09 00:01:01 +08:00
|
|
|
viewable_class->get_description = gimp_buffer_get_description;
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_buffer_init (GimpBuffer *buffer)
|
|
|
|
{
|
|
|
|
buffer->tiles = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_buffer_finalize (GObject *object)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (object);
|
|
|
|
|
|
|
|
if (buffer->tiles)
|
|
|
|
{
|
|
|
|
tile_manager_destroy (buffer->tiles);
|
|
|
|
buffer->tiles = NULL;
|
|
|
|
}
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
static gsize
|
|
|
|
gimp_buffer_get_memsize (GimpObject *object)
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
gsize memsize = 0;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (object);
|
|
|
|
|
|
|
|
if (buffer->tiles)
|
|
|
|
memsize += tile_manager_get_memsize (buffer->tiles);
|
|
|
|
|
|
|
|
return memsize + GIMP_OBJECT_CLASS (parent_class)->get_memsize (object);
|
|
|
|
}
|
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static void
|
|
|
|
gimp_buffer_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (viewable);
|
|
|
|
|
|
|
|
gimp_viewable_calc_preview_size (viewable,
|
|
|
|
gimp_buffer_get_width (buffer),
|
|
|
|
gimp_buffer_get_height (buffer),
|
|
|
|
size,
|
|
|
|
size,
|
|
|
|
dot_for_dot, 1.0, 1.0,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_buffer_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height)
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
gint buffer_width;
|
|
|
|
gint buffer_height;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (viewable);
|
|
|
|
buffer_width = gimp_buffer_get_width (buffer);
|
|
|
|
buffer_height = gimp_buffer_get_height (buffer);
|
|
|
|
|
|
|
|
if (buffer_width > width || buffer_height > height)
|
|
|
|
{
|
|
|
|
gboolean scaling_up;
|
|
|
|
|
|
|
|
gimp_viewable_calc_preview_size (viewable,
|
|
|
|
buffer_width,
|
|
|
|
buffer_height,
|
|
|
|
MIN (width * 2,
|
|
|
|
GIMP_VIEWABLE_MAX_POPUP_SIZE),
|
|
|
|
MIN (height * 2,
|
|
|
|
GIMP_VIEWABLE_MAX_POPUP_SIZE),
|
|
|
|
dot_for_dot, 1.0, 1.0,
|
|
|
|
popup_width,
|
|
|
|
popup_height,
|
|
|
|
&scaling_up);
|
|
|
|
|
|
|
|
if (scaling_up)
|
|
|
|
{
|
|
|
|
*popup_width = buffer_width;
|
|
|
|
*popup_height = buffer_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
static TempBuf *
|
|
|
|
gimp_buffer_get_new_preview (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
TempBuf *temp_buf;
|
|
|
|
gint buffer_width;
|
|
|
|
gint buffer_height;
|
|
|
|
PixelRegion srcPR;
|
|
|
|
PixelRegion destPR;
|
|
|
|
gint bytes;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (viewable);
|
|
|
|
buffer_width = tile_manager_width (buffer->tiles);
|
|
|
|
buffer_height = tile_manager_height (buffer->tiles);
|
|
|
|
|
|
|
|
bytes = tile_manager_bpp (buffer->tiles);
|
|
|
|
|
|
|
|
pixel_region_init (&srcPR, buffer->tiles,
|
|
|
|
0, 0,
|
|
|
|
buffer_width,
|
|
|
|
buffer_height,
|
|
|
|
FALSE);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
if (buffer_height > height || buffer_width > width)
|
|
|
|
temp_buf = temp_buf_new (width, height, bytes, 0, 0, NULL);
|
|
|
|
else
|
|
|
|
temp_buf = temp_buf_new (buffer_width, buffer_height, bytes, 0, 0, NULL);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
destPR.bytes = temp_buf->bytes;
|
|
|
|
destPR.x = 0;
|
|
|
|
destPR.y = 0;
|
2003-03-01 11:53:41 +08:00
|
|
|
destPR.w = temp_buf->width;
|
|
|
|
destPR.h = temp_buf->height;
|
|
|
|
destPR.rowstride = temp_buf->width * destPR.bytes;
|
2001-06-26 20:09:43 +08:00
|
|
|
destPR.data = temp_buf_data (temp_buf);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
if (buffer_height > height || buffer_width > width)
|
|
|
|
{
|
|
|
|
gint subsample;
|
|
|
|
|
|
|
|
/* calculate 'acceptable' subsample */
|
|
|
|
subsample = 1;
|
|
|
|
|
|
|
|
while ((width * (subsample + 1) * 2 < buffer_width) &&
|
|
|
|
(height * (subsample + 1) * 2 < buffer_height))
|
|
|
|
subsample += 1;
|
|
|
|
|
|
|
|
subsample_region (&srcPR, &destPR, subsample);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
return temp_buf;
|
|
|
|
}
|
|
|
|
|
2003-04-09 00:01:01 +08:00
|
|
|
static gchar *
|
|
|
|
gimp_buffer_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip)
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
|
|
|
|
buffer = GIMP_BUFFER (viewable);
|
|
|
|
|
|
|
|
if (tooltip)
|
|
|
|
*tooltip = NULL;
|
|
|
|
|
|
|
|
return g_strdup_printf ("%s (%d x %d)",
|
|
|
|
GIMP_OBJECT (buffer)->name,
|
|
|
|
gimp_buffer_get_width (buffer),
|
|
|
|
gimp_buffer_get_height (buffer));
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
GimpBuffer *
|
|
|
|
gimp_buffer_new (TileManager *tiles,
|
2001-12-13 07:48:18 +08:00
|
|
|
const gchar *name,
|
|
|
|
gboolean copy_pixels)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
PixelRegion srcPR, destPR;
|
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
g_return_val_if_fail (tiles != NULL, NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
|
|
|
width = tile_manager_width (tiles);
|
|
|
|
height = tile_manager_height (tiles);
|
|
|
|
|
2001-08-10 22:41:39 +08:00
|
|
|
buffer = GIMP_BUFFER (g_object_new (GIMP_TYPE_BUFFER, NULL));
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
gimp_object_set_name (GIMP_OBJECT (buffer), name);
|
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
if (copy_pixels)
|
|
|
|
{
|
|
|
|
buffer->tiles = tile_manager_new (width, height, tile_manager_bpp (tiles));
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-12-13 07:48:18 +08:00
|
|
|
pixel_region_init (&srcPR, tiles, 0, 0, width, height, FALSE);
|
|
|
|
pixel_region_init (&destPR, buffer->tiles, 0, 0, width, height, TRUE);
|
|
|
|
copy_region (&srcPR, &destPR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buffer->tiles = tiles;
|
|
|
|
}
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
return GIMP_BUFFER (buffer);
|
|
|
|
}
|
2001-12-13 07:48:18 +08:00
|
|
|
|
|
|
|
gint
|
2001-12-18 07:41:01 +08:00
|
|
|
gimp_buffer_get_width (const GimpBuffer *buffer)
|
2001-12-13 07:48:18 +08:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_BUFFER (buffer), 0);
|
|
|
|
|
|
|
|
return tile_manager_width (buffer->tiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2001-12-18 07:41:01 +08:00
|
|
|
gimp_buffer_get_height (const GimpBuffer *buffer)
|
2001-12-13 07:48:18 +08:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_BUFFER (buffer), 0);
|
|
|
|
|
|
|
|
return tile_manager_height (buffer->tiles);
|
|
|
|
}
|