
2003-02-27 Michael Natterer <mitch@gimp.org> * app/core/gimpviewable.[ch]: added virtual function get_popup_size() which returns a boolean indicating if a popup is needed and its size. * app/core/gimpbrush.c * app/core/gimpbrushpipe.c * app/core/gimpbuffer.c * app/core/gimpdrawable-preview.[ch] * app/core/gimpdrawable.c * app/core/gimpgradient.c * app/core/gimpimage.c * app/core/gimppalette.c * app/core/gimppattern.c * app/core/gimpundo.c: implement it. * app/widgets/gimppreview.[ch]: removed virtual functions needs_popup() and create_popup(). Removed the code which creates the popup and the popup members of the GimpPreview struct. * app/widgets/gimppreview-popup.[ch]: new files providing the utility function gimp_preview_popup_show() which can show popups from any widget, not just from a GimpPreview. Checks if a popup is needed using gimp_viewable_get_popup_size(). * app/widgets/gimpcellrendererviewable.c: show popups here too. * app/widgets/gimpbrushpreview.c * app/widgets/gimpbufferpreview.c * app/widgets/gimpdrawablepreview.c * app/widgets/gimpimagepreview.c: removed needs_popup() and create_popup() implementations. * app/widgets/gimpnavigationpreview.c: removed empty render() implementation. * app/widgets/gimpundoeditor.c: use a tree instead of a list view. * app/widgets/gimpgradientpreview.[ch] * app/widgets/gimppalettepreview.[ch] * app/widgets/gimppatternpreview.[ch]: removed because they only implemented the removed popup functions. * app/widgets/Makefile.am * app/widgets/widgets-types.h * app/widgets/gimpmenuitem.c * app/widgets/gimppreview-utils.c: changed accordingly
314 lines
8.9 KiB
C
314 lines
8.9 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib-object.h>
|
|
|
|
#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"
|
|
|
|
|
|
static void gimp_buffer_class_init (GimpBufferClass *klass);
|
|
static void gimp_buffer_init (GimpBuffer *buffer);
|
|
|
|
static void gimp_buffer_finalize (GObject *object);
|
|
|
|
static gsize gimp_buffer_get_memsize (GimpObject *object);
|
|
|
|
static void gimp_buffer_get_preview_size (GimpViewable *viewable,
|
|
gint size,
|
|
gboolean is_popup,
|
|
gboolean dot_for_dot,
|
|
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);
|
|
static TempBuf * gimp_buffer_get_new_preview (GimpViewable *viewable,
|
|
gint width,
|
|
gint height);
|
|
|
|
|
|
static GimpViewableClass *parent_class = NULL;
|
|
|
|
|
|
GType
|
|
gimp_buffer_get_type (void)
|
|
{
|
|
static GType buffer_type = 0;
|
|
|
|
if (! buffer_type)
|
|
{
|
|
static const GTypeInfo buffer_info =
|
|
{
|
|
sizeof (GimpBufferClass),
|
|
(GBaseInitFunc) NULL,
|
|
(GBaseFinalizeFunc) NULL,
|
|
(GClassInitFunc) gimp_buffer_class_init,
|
|
NULL, /* class_finalize */
|
|
NULL, /* class_data */
|
|
sizeof (GimpBuffer),
|
|
0, /* n_preallocs */
|
|
(GInstanceInitFunc) gimp_buffer_init,
|
|
};
|
|
|
|
buffer_type = g_type_register_static (GIMP_TYPE_VIEWABLE,
|
|
"GimpBuffer",
|
|
&buffer_info, 0);
|
|
}
|
|
|
|
return buffer_type;
|
|
}
|
|
|
|
static void
|
|
gimp_buffer_class_init (GimpBufferClass *klass)
|
|
{
|
|
GObjectClass *object_class;
|
|
GimpObjectClass *gimp_object_class;
|
|
GimpViewableClass *viewable_class;
|
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
object_class->finalize = gimp_buffer_finalize;
|
|
|
|
gimp_object_class->get_memsize = gimp_buffer_get_memsize;
|
|
|
|
viewable_class->get_preview_size = gimp_buffer_get_preview_size;
|
|
viewable_class->get_popup_size = gimp_buffer_get_popup_size;
|
|
viewable_class->get_new_preview = gimp_buffer_get_new_preview;
|
|
}
|
|
|
|
static void
|
|
gimp_buffer_init (GimpBuffer *buffer)
|
|
{
|
|
buffer->tiles = NULL;
|
|
}
|
|
|
|
static void
|
|
gimp_buffer_finalize (GObject *object)
|
|
{
|
|
GimpBuffer *buffer;
|
|
|
|
buffer = GIMP_BUFFER (object);
|
|
|
|
if (buffer->tiles)
|
|
{
|
|
tile_manager_destroy (buffer->tiles);
|
|
buffer->tiles = NULL;
|
|
}
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
gint subsample;
|
|
|
|
buffer = GIMP_BUFFER (viewable);
|
|
buffer_width = tile_manager_width (buffer->tiles);
|
|
buffer_height = tile_manager_height (buffer->tiles);
|
|
|
|
bytes = tile_manager_bpp (buffer->tiles);
|
|
|
|
/* calculate 'acceptable' subsample */
|
|
subsample = 1;
|
|
|
|
while ((width * (subsample + 1) * 2 < buffer_width) &&
|
|
(height * (subsample + 1) * 2 < buffer_height))
|
|
subsample += 1;
|
|
|
|
pixel_region_init (&srcPR, buffer->tiles,
|
|
0, 0,
|
|
buffer_width,
|
|
buffer_height,
|
|
FALSE);
|
|
|
|
temp_buf = temp_buf_new (width, height, bytes, 0, 0, NULL);
|
|
|
|
destPR.bytes = temp_buf->bytes;
|
|
destPR.x = 0;
|
|
destPR.y = 0;
|
|
destPR.w = width;
|
|
destPR.h = height;
|
|
destPR.rowstride = width * destPR.bytes;
|
|
destPR.data = temp_buf_data (temp_buf);
|
|
|
|
subsample_region (&srcPR, &destPR, subsample);
|
|
|
|
return temp_buf;
|
|
}
|
|
|
|
GimpBuffer *
|
|
gimp_buffer_new (TileManager *tiles,
|
|
const gchar *name,
|
|
gboolean copy_pixels)
|
|
{
|
|
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);
|
|
|
|
buffer = GIMP_BUFFER (g_object_new (GIMP_TYPE_BUFFER, NULL));
|
|
|
|
gimp_object_set_name (GIMP_OBJECT (buffer), name);
|
|
|
|
if (copy_pixels)
|
|
{
|
|
buffer->tiles = tile_manager_new (width, height, tile_manager_bpp (tiles));
|
|
|
|
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;
|
|
}
|
|
|
|
return GIMP_BUFFER (buffer);
|
|
}
|
|
|
|
gint
|
|
gimp_buffer_get_width (const GimpBuffer *buffer)
|
|
{
|
|
g_return_val_if_fail (GIMP_IS_BUFFER (buffer), 0);
|
|
|
|
return tile_manager_width (buffer->tiles);
|
|
}
|
|
|
|
gint
|
|
gimp_buffer_get_height (const GimpBuffer *buffer)
|
|
{
|
|
g_return_val_if_fail (GIMP_IS_BUFFER (buffer), 0);
|
|
|
|
return tile_manager_height (buffer->tiles);
|
|
}
|