2001-01-29 21:51:23 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2001-04-22 08:38:56 +08:00
|
|
|
* gimpdrawablepreview.c
|
2001-02-07 08:06:58 +08:00
|
|
|
* Copyright (C) 2001 Michael Natterer
|
|
|
|
*
|
2001-01-29 21:51:23 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-02-20 06:54:12 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
#include "base/temp-buf.h"
|
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpdrawable.h"
|
|
|
|
#include "core/gimpimage.h"
|
|
|
|
|
2001-01-30 01:54:02 +08:00
|
|
|
#include "gimpdrawablepreview.h"
|
2001-05-08 11:48:54 +08:00
|
|
|
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
static void gimp_drawable_preview_class_init (GimpDrawablePreviewClass *klass);
|
|
|
|
static void gimp_drawable_preview_init (GimpDrawablePreview *preview);
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
static void gimp_drawable_preview_render (GimpPreview *preview);
|
2001-02-20 06:54:12 +08:00
|
|
|
static void gimp_drawable_preview_get_size (GimpPreview *preview,
|
|
|
|
gint size,
|
|
|
|
gint *width,
|
|
|
|
gint *height);
|
2001-02-08 04:35:18 +08:00
|
|
|
static GtkWidget * gimp_drawable_preview_create_popup (GimpPreview *preview);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
static GimpPreviewClass *parent_class = NULL;
|
2001-01-29 21:51:23 +08:00
|
|
|
|
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
GtkType
|
|
|
|
gimp_drawable_preview_get_type (void)
|
2001-01-29 21:51:23 +08:00
|
|
|
{
|
2001-02-07 08:06:58 +08:00
|
|
|
static GtkType preview_type = 0;
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
if (! preview_type)
|
2001-01-29 21:51:23 +08:00
|
|
|
{
|
2001-02-07 08:06:58 +08:00
|
|
|
GtkTypeInfo preview_info =
|
|
|
|
{
|
|
|
|
"GimpDrawablePreview",
|
|
|
|
sizeof (GimpDrawablePreview),
|
|
|
|
sizeof (GimpDrawablePreviewClass),
|
|
|
|
(GtkClassInitFunc) gimp_drawable_preview_class_init,
|
|
|
|
(GtkObjectInitFunc) gimp_drawable_preview_init,
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
(GtkClassInitFunc) NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
preview_type = gtk_type_unique (GIMP_TYPE_PREVIEW, &preview_info);
|
2001-01-29 21:51:23 +08:00
|
|
|
}
|
2001-02-07 08:06:58 +08:00
|
|
|
|
|
|
|
return preview_type;
|
2001-01-29 21:51:23 +08:00
|
|
|
}
|
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_preview_class_init (GimpDrawablePreviewClass *klass)
|
2001-01-29 21:51:23 +08:00
|
|
|
{
|
2001-02-07 08:06:58 +08:00
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GimpPreviewClass *preview_class;
|
2001-01-30 01:54:02 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
object_class = (GtkObjectClass *) klass;
|
|
|
|
preview_class = (GimpPreviewClass *) klass;
|
2001-01-29 21:51:23 +08:00
|
|
|
|
2001-02-07 08:06:58 +08:00
|
|
|
parent_class = gtk_type_class (GIMP_TYPE_PREVIEW);
|
2001-02-20 06:54:12 +08:00
|
|
|
|
|
|
|
preview_class->render = gimp_drawable_preview_render;
|
|
|
|
preview_class->get_size = gimp_drawable_preview_get_size;
|
|
|
|
preview_class->create_popup = gimp_drawable_preview_create_popup;
|
2001-01-29 21:51:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-02-07 08:06:58 +08:00
|
|
|
gimp_drawable_preview_init (GimpDrawablePreview *preview)
|
2001-01-29 21:51:23 +08:00
|
|
|
{
|
|
|
|
}
|
2001-02-07 10:37:49 +08:00
|
|
|
|
2001-02-20 06:54:12 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_preview_get_size (GimpPreview *preview,
|
|
|
|
gint size,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpImage *gimage;
|
|
|
|
gboolean scaling_up;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (preview->viewable);
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage = gimp_drawable_gimage (drawable);
|
2001-02-20 06:54:12 +08:00
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
if (gimage && ! preview->is_popup)
|
2001-02-20 06:54:12 +08:00
|
|
|
{
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_preview_calc_size (preview,
|
|
|
|
gimage->width,
|
2001-05-03 20:26:05 +08:00
|
|
|
gimage->height,
|
|
|
|
size,
|
|
|
|
size,
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage->xresolution,
|
|
|
|
gimage->yresolution,
|
2001-05-03 20:26:05 +08:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
&scaling_up);
|
2001-02-20 06:54:12 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_preview_calc_size (preview,
|
|
|
|
drawable->width,
|
2001-05-03 20:26:05 +08:00
|
|
|
drawable->height,
|
|
|
|
size,
|
|
|
|
size,
|
2001-06-18 21:10:03 +08:00
|
|
|
1.0,
|
|
|
|
1.0,
|
2001-05-03 20:26:05 +08:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
&scaling_up);
|
2001-02-20 06:54:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
static void
|
|
|
|
gimp_drawable_preview_render (GimpPreview *preview)
|
2001-02-07 10:37:49 +08:00
|
|
|
{
|
2001-02-20 06:54:12 +08:00
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpImage *gimage;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gint preview_width;
|
|
|
|
gint preview_height;
|
|
|
|
gboolean scaling_up;
|
|
|
|
TempBuf *render_buf;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (preview->viewable);
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage = gimp_drawable_gimage (drawable);
|
2001-02-20 06:54:12 +08:00
|
|
|
|
|
|
|
width = preview->width;
|
|
|
|
height = preview->height;
|
|
|
|
|
|
|
|
if (gimage && ! preview->is_popup)
|
|
|
|
{
|
|
|
|
width = MAX (1, ROUND ((((gdouble) width / (gdouble) gimage->width) *
|
|
|
|
(gdouble) drawable->width)));
|
|
|
|
height = MAX (1, ROUND ((((gdouble) height / (gdouble) gimage->height) *
|
|
|
|
(gdouble) drawable->height)));
|
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_preview_calc_size (preview,
|
|
|
|
drawable->width,
|
2001-05-03 20:26:05 +08:00
|
|
|
drawable->height,
|
|
|
|
width,
|
|
|
|
height,
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage->xresolution,
|
|
|
|
gimage->yresolution,
|
2001-05-03 20:26:05 +08:00
|
|
|
&preview_width,
|
|
|
|
&preview_height,
|
|
|
|
&scaling_up);
|
2001-02-20 06:54:12 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_preview_calc_size (preview,
|
|
|
|
drawable->width,
|
2001-05-03 20:26:05 +08:00
|
|
|
drawable->height,
|
|
|
|
width,
|
|
|
|
height,
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage ? gimage->xresolution : 1.0,
|
|
|
|
gimage ? gimage->yresolution : 1.0,
|
2001-05-03 20:26:05 +08:00
|
|
|
&preview_width,
|
|
|
|
&preview_height,
|
|
|
|
&scaling_up);
|
2001-02-20 06:54:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (scaling_up)
|
|
|
|
{
|
|
|
|
TempBuf *temp_buf;
|
|
|
|
|
|
|
|
temp_buf = gimp_viewable_get_new_preview (preview->viewable,
|
|
|
|
drawable->width,
|
|
|
|
drawable->height);
|
|
|
|
render_buf = temp_buf_scale (temp_buf, preview_width, preview_height);
|
|
|
|
|
|
|
|
temp_buf_free (temp_buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
render_buf = gimp_viewable_get_new_preview (preview->viewable,
|
|
|
|
preview_width,
|
|
|
|
preview_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gimage && ! preview->is_popup)
|
|
|
|
{
|
|
|
|
if (preview_width < preview->width)
|
|
|
|
render_buf->x =
|
|
|
|
ROUND ((((gdouble) preview->width / (gdouble) gimage->width) *
|
|
|
|
(gdouble) drawable->offset_x));
|
|
|
|
|
|
|
|
if (preview_height < preview->height)
|
|
|
|
render_buf->y =
|
|
|
|
ROUND ((((gdouble) preview->height / (gdouble) gimage->height) *
|
|
|
|
(gdouble) drawable->offset_y));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (preview_width < width)
|
|
|
|
render_buf->x = (width - preview_width) / 2;
|
|
|
|
|
|
|
|
if (preview_height < height)
|
|
|
|
render_buf->y = (height - preview_height) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! gimage && (render_buf->x || render_buf->y))
|
|
|
|
{
|
|
|
|
TempBuf *temp_buf;
|
|
|
|
guchar white[4] = { 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
temp_buf = temp_buf_new (width, height,
|
|
|
|
render_buf->bytes,
|
|
|
|
0, 0,
|
|
|
|
white);
|
|
|
|
|
|
|
|
temp_buf_copy_area (render_buf, temp_buf,
|
|
|
|
0, 0,
|
|
|
|
render_buf->width,
|
|
|
|
render_buf->height,
|
|
|
|
render_buf->x,
|
|
|
|
render_buf->y);
|
|
|
|
|
|
|
|
temp_buf_free (render_buf);
|
|
|
|
|
|
|
|
gimp_preview_render_and_flush (preview,
|
|
|
|
temp_buf,
|
|
|
|
-1);
|
|
|
|
|
|
|
|
temp_buf_free (temp_buf);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_preview_render_and_flush (preview,
|
|
|
|
render_buf,
|
|
|
|
-1);
|
|
|
|
|
|
|
|
temp_buf_free (render_buf);
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
gimp_drawable_preview_create_popup (GimpPreview *preview)
|
|
|
|
{
|
2001-02-20 06:54:12 +08:00
|
|
|
GimpDrawable *drawable;
|
2001-06-18 21:10:03 +08:00
|
|
|
GimpImage *gimage;
|
2001-02-20 06:54:12 +08:00
|
|
|
gint popup_width;
|
|
|
|
gint popup_height;
|
|
|
|
gboolean scaling_up;
|
|
|
|
|
|
|
|
drawable = GIMP_DRAWABLE (preview->viewable);
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage = gimp_drawable_gimage (drawable);
|
2001-02-20 06:54:12 +08:00
|
|
|
|
2001-06-18 21:10:03 +08:00
|
|
|
gimp_preview_calc_size (preview,
|
|
|
|
drawable->width,
|
2001-05-03 20:26:05 +08:00
|
|
|
drawable->height,
|
|
|
|
MIN (preview->width * 2, 256),
|
|
|
|
MIN (preview->height * 2, 256),
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage ? gimage->xresolution : 1.0,
|
|
|
|
gimage ? gimage->yresolution : 1.0,
|
2001-05-03 20:26:05 +08:00
|
|
|
&popup_width,
|
|
|
|
&popup_height,
|
|
|
|
&scaling_up);
|
2001-02-20 06:54:12 +08:00
|
|
|
|
|
|
|
if (scaling_up)
|
|
|
|
{
|
|
|
|
return gimp_preview_new_full (preview->viewable,
|
|
|
|
drawable->width,
|
|
|
|
drawable->height,
|
|
|
|
0,
|
|
|
|
TRUE, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return gimp_preview_new_full (preview->viewable,
|
|
|
|
popup_width,
|
|
|
|
popup_height,
|
|
|
|
0,
|
|
|
|
TRUE, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
}
|