mirror of https://github.com/GNOME/gimp.git
245 lines
8.1 KiB
C
245 lines
8.1 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpviewrendererdrawable.c
|
|
* Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
|
|
*
|
|
* 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 <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
#include "widgets-types.h"
|
|
|
|
#include "base/temp-buf.h"
|
|
|
|
#include "core/gimpdrawable.h"
|
|
#include "core/gimpdrawable-preview.h"
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "gimpviewrendererdrawable.h"
|
|
|
|
|
|
static void gimp_view_renderer_drawable_render (GimpViewRenderer *renderer,
|
|
GtkWidget *widget);
|
|
|
|
|
|
G_DEFINE_TYPE (GimpViewRendererDrawable, gimp_view_renderer_drawable,
|
|
GIMP_TYPE_VIEW_RENDERER)
|
|
|
|
#define parent_class gimp_view_renderer_drawable_parent_class
|
|
|
|
|
|
static void
|
|
gimp_view_renderer_drawable_class_init (GimpViewRendererDrawableClass *klass)
|
|
{
|
|
GimpViewRendererClass *renderer_class = GIMP_VIEW_RENDERER_CLASS (klass);
|
|
|
|
renderer_class->render = gimp_view_renderer_drawable_render;
|
|
}
|
|
|
|
static void
|
|
gimp_view_renderer_drawable_init (GimpViewRendererDrawable *renderer)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gimp_view_renderer_drawable_render (GimpViewRenderer *renderer,
|
|
GtkWidget *widget)
|
|
{
|
|
GimpDrawable *drawable;
|
|
GimpItem *item;
|
|
GimpImage *image;
|
|
gint offset_x;
|
|
gint offset_y;
|
|
gint width;
|
|
gint height;
|
|
gint view_width;
|
|
gint view_height;
|
|
gdouble xres = 1.0;
|
|
gdouble yres = 1.0;
|
|
gboolean scaling_up;
|
|
TempBuf *render_buf = NULL;
|
|
|
|
drawable = GIMP_DRAWABLE (renderer->viewable);
|
|
item = GIMP_ITEM (drawable);
|
|
image = gimp_item_get_image (item);
|
|
|
|
gimp_item_get_offset (item, &offset_x, &offset_y);
|
|
|
|
width = renderer->width;
|
|
height = renderer->height;
|
|
|
|
if (image)
|
|
gimp_image_get_resolution (image, &xres, &yres);
|
|
|
|
if (image && ! renderer->is_popup)
|
|
{
|
|
width = MAX (1, ROUND ((((gdouble) width /
|
|
(gdouble) gimp_image_get_width (image)) *
|
|
(gdouble) gimp_item_get_width (item))));
|
|
height = MAX (1, ROUND ((((gdouble) height /
|
|
(gdouble) gimp_image_get_height (image)) *
|
|
(gdouble) gimp_item_get_height (item))));
|
|
|
|
gimp_viewable_calc_preview_size (gimp_item_get_width (item),
|
|
gimp_item_get_height (item),
|
|
width,
|
|
height,
|
|
renderer->dot_for_dot,
|
|
xres,
|
|
yres,
|
|
&view_width,
|
|
&view_height,
|
|
&scaling_up);
|
|
}
|
|
else
|
|
{
|
|
gimp_viewable_calc_preview_size (gimp_item_get_width (item),
|
|
gimp_item_get_height (item),
|
|
width,
|
|
height,
|
|
renderer->dot_for_dot,
|
|
xres,
|
|
yres,
|
|
&view_width,
|
|
&view_height,
|
|
&scaling_up);
|
|
}
|
|
|
|
if ((view_width * view_height) <
|
|
(gimp_item_get_width (item) * gimp_item_get_height (item) * 4))
|
|
scaling_up = FALSE;
|
|
|
|
if (scaling_up)
|
|
{
|
|
if (image && ! renderer->is_popup)
|
|
{
|
|
gint src_x, src_y;
|
|
gint src_width, src_height;
|
|
|
|
if (gimp_rectangle_intersect (0, 0,
|
|
gimp_item_get_width (item),
|
|
gimp_item_get_height (item),
|
|
-offset_x, -offset_y,
|
|
gimp_image_get_width (image),
|
|
gimp_image_get_height (image),
|
|
&src_x, &src_y,
|
|
&src_width, &src_height))
|
|
{
|
|
gint dest_width;
|
|
gint dest_height;
|
|
|
|
dest_width = ROUND (((gdouble) renderer->width /
|
|
(gdouble) gimp_image_get_width (image)) *
|
|
(gdouble) src_width);
|
|
dest_height = ROUND (((gdouble) renderer->height /
|
|
(gdouble) gimp_image_get_height (image)) *
|
|
(gdouble) src_height);
|
|
|
|
if (dest_width < 1) dest_width = 1;
|
|
if (dest_height < 1) dest_height = 1;
|
|
|
|
render_buf = gimp_drawable_get_sub_preview (drawable,
|
|
src_x, src_y,
|
|
src_width, src_height,
|
|
dest_width, dest_height);
|
|
}
|
|
else
|
|
{
|
|
gint bytes = gimp_drawable_preview_bytes (drawable);
|
|
guchar empty[4] = { 0, 0, 0, 0 };
|
|
|
|
render_buf = temp_buf_new (1, 1, bytes, 0, 0, empty);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
TempBuf *temp_buf;
|
|
|
|
temp_buf = gimp_viewable_get_new_preview (renderer->viewable,
|
|
renderer->context,
|
|
gimp_item_get_width (item),
|
|
gimp_item_get_height (item));
|
|
|
|
if (temp_buf)
|
|
{
|
|
render_buf = temp_buf_scale (temp_buf, view_width, view_height);
|
|
|
|
temp_buf_free (temp_buf);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
render_buf = gimp_viewable_get_new_preview (renderer->viewable,
|
|
renderer->context,
|
|
view_width,
|
|
view_height);
|
|
}
|
|
|
|
if (render_buf)
|
|
{
|
|
if (image && ! renderer->is_popup)
|
|
{
|
|
if (offset_x != 0)
|
|
render_buf->x =
|
|
ROUND ((((gdouble) renderer->width /
|
|
(gdouble) gimp_image_get_width (image)) *
|
|
(gdouble) offset_x));
|
|
|
|
if (offset_y != 0)
|
|
render_buf->y =
|
|
ROUND ((((gdouble) renderer->height /
|
|
(gdouble) gimp_image_get_height (image)) *
|
|
(gdouble) offset_y));
|
|
|
|
if (scaling_up)
|
|
{
|
|
if (render_buf->x < 0) render_buf->x = 0;
|
|
if (render_buf->y < 0) render_buf->y = 0;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (view_width < width)
|
|
render_buf->x = (width - view_width) / 2;
|
|
|
|
if (view_height < height)
|
|
render_buf->y = (height - view_height) / 2;
|
|
}
|
|
|
|
gimp_view_renderer_render_surface (renderer, render_buf, -1,
|
|
GIMP_VIEW_BG_CHECKS,
|
|
GIMP_VIEW_BG_CHECKS);
|
|
|
|
temp_buf_free (render_buf);
|
|
}
|
|
else
|
|
{
|
|
const gchar *stock_id;
|
|
|
|
stock_id = gimp_viewable_get_stock_id (renderer->viewable);
|
|
|
|
gimp_view_renderer_default_render_stock (renderer, widget, stock_id);
|
|
}
|
|
}
|