2001-02-07 10:37:49 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* GimpImagePreview Widget
|
|
|
|
* Copyright (C) 2001 Michael Natterer
|
|
|
|
*
|
|
|
|
* 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-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
2001-02-07 10:37:49 +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/gimpimage.h"
|
|
|
|
|
2001-02-07 10:37:49 +08:00
|
|
|
#include "gimpimagepreview.h"
|
2001-05-08 11:48:54 +08:00
|
|
|
|
2001-02-07 10:37:49 +08:00
|
|
|
|
|
|
|
static void gimp_image_preview_class_init (GimpImagePreviewClass *klass);
|
|
|
|
static void gimp_image_preview_init (GimpImagePreview *preview);
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
static void gimp_image_preview_render (GimpPreview *preview);
|
2001-05-03 20:26:05 +08:00
|
|
|
static void gimp_image_preview_get_size (GimpPreview *preview,
|
|
|
|
gint size,
|
|
|
|
gint *width,
|
|
|
|
gint *height);
|
2001-02-08 04:35:18 +08:00
|
|
|
static GtkWidget * gimp_image_preview_create_popup (GimpPreview *preview);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
static GimpPreviewClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
GtkType
|
|
|
|
gimp_image_preview_get_type (void)
|
|
|
|
{
|
|
|
|
static GtkType preview_type = 0;
|
|
|
|
|
|
|
|
if (! preview_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo preview_info =
|
|
|
|
{
|
|
|
|
"GimpImagePreview",
|
|
|
|
sizeof (GimpImagePreview),
|
|
|
|
sizeof (GimpImagePreviewClass),
|
|
|
|
(GtkClassInitFunc) gimp_image_preview_class_init,
|
|
|
|
(GtkObjectInitFunc) gimp_image_preview_init,
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
(GtkClassInitFunc) NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
preview_type = gtk_type_unique (GIMP_TYPE_PREVIEW, &preview_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return preview_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_image_preview_class_init (GimpImagePreviewClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GimpPreviewClass *preview_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass *) klass;
|
|
|
|
preview_class = (GimpPreviewClass *) klass;
|
|
|
|
|
|
|
|
parent_class = gtk_type_class (GIMP_TYPE_PREVIEW);
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
preview_class->render = gimp_image_preview_render;
|
2001-05-03 20:26:05 +08:00
|
|
|
preview_class->get_size = gimp_image_preview_get_size;
|
2001-02-08 04:35:18 +08:00
|
|
|
preview_class->create_popup = gimp_image_preview_create_popup;
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_image_preview_init (GimpImagePreview *preview)
|
|
|
|
{
|
2001-05-03 20:26:05 +08:00
|
|
|
preview->channel = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_image_preview_get_size (GimpPreview *preview,
|
|
|
|
gint size,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
gboolean scaling_up;
|
|
|
|
|
|
|
|
gimage = GIMP_IMAGE (preview->viewable);
|
|
|
|
|
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-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
static void
|
|
|
|
gimp_image_preview_render (GimpPreview *preview)
|
2001-02-07 10:37:49 +08:00
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gint preview_width;
|
|
|
|
gint preview_height;
|
|
|
|
gboolean scaling_up;
|
2001-02-08 04:35:18 +08:00
|
|
|
TempBuf *render_buf;
|
2001-02-07 10:37:49 +08:00
|
|
|
|
|
|
|
gimage = GIMP_IMAGE (preview->viewable);
|
|
|
|
|
2001-02-08 07:14:14 +08:00
|
|
|
width = preview->width;
|
|
|
|
height = preview->height;
|
2001-02-07 10:37:49 +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,
|
|
|
|
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-07 10:37:49 +08:00
|
|
|
|
|
|
|
if (scaling_up)
|
|
|
|
{
|
|
|
|
TempBuf *temp_buf;
|
|
|
|
|
|
|
|
temp_buf = gimp_viewable_get_new_preview (preview->viewable,
|
|
|
|
gimage->width,
|
|
|
|
gimage->height);
|
2001-02-08 04:35:18 +08:00
|
|
|
render_buf = temp_buf_scale (temp_buf, preview_width, preview_height);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
|
|
|
temp_buf_free (temp_buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-02-08 04:35:18 +08:00
|
|
|
render_buf = gimp_viewable_get_new_preview (preview->viewable,
|
2001-02-07 10:37:49 +08:00
|
|
|
preview_width,
|
|
|
|
preview_height);
|
|
|
|
}
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
if (preview_width < width) render_buf->x = (width - preview_width) / 2;
|
|
|
|
if (preview_height < height) render_buf->y = (height - preview_height) / 2;
|
2001-02-07 10:37:49 +08:00
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
if (render_buf->x || render_buf->y)
|
2001-02-07 10:37:49 +08:00
|
|
|
{
|
|
|
|
TempBuf *temp_buf;
|
|
|
|
guchar white[4] = { 255, 255, 255, 255 };
|
|
|
|
|
|
|
|
temp_buf = temp_buf_new (width, height,
|
2001-02-08 04:35:18 +08:00
|
|
|
render_buf->bytes,
|
2001-02-07 10:37:49 +08:00
|
|
|
0, 0,
|
|
|
|
white);
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
temp_buf_copy_area (render_buf, temp_buf,
|
2001-02-07 10:37:49 +08:00
|
|
|
0, 0,
|
2001-02-08 04:35:18 +08:00
|
|
|
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,
|
2001-05-03 20:26:05 +08:00
|
|
|
GIMP_IMAGE_PREVIEW (preview)->channel);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
temp_buf_free (temp_buf);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
return;
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
|
2001-02-08 04:35:18 +08:00
|
|
|
gimp_preview_render_and_flush (preview,
|
|
|
|
render_buf,
|
2001-05-03 20:26:05 +08:00
|
|
|
GIMP_IMAGE_PREVIEW (preview)->channel);
|
2001-02-08 04:35:18 +08:00
|
|
|
|
|
|
|
temp_buf_free (render_buf);
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
gimp_image_preview_create_popup (GimpPreview *preview)
|
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
gint popup_width;
|
|
|
|
gint popup_height;
|
|
|
|
gboolean scaling_up;
|
|
|
|
|
|
|
|
gimage = GIMP_IMAGE (preview->viewable);
|
|
|
|
|
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,
|
|
|
|
MIN (preview->width * 2, 256),
|
|
|
|
MIN (preview->height * 2, 256),
|
2001-06-18 21:10:03 +08:00
|
|
|
gimage->xresolution,
|
|
|
|
gimage->yresolution,
|
2001-05-03 20:26:05 +08:00
|
|
|
&popup_width,
|
|
|
|
&popup_height,
|
|
|
|
&scaling_up);
|
2001-02-07 10:37:49 +08:00
|
|
|
|
|
|
|
if (scaling_up)
|
|
|
|
{
|
2001-02-09 23:12:01 +08:00
|
|
|
return gimp_preview_new_full (preview->viewable,
|
|
|
|
gimage->width,
|
|
|
|
gimage->height,
|
|
|
|
0,
|
|
|
|
TRUE, FALSE, FALSE);
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-02-09 23:12:01 +08:00
|
|
|
return gimp_preview_new_full (preview->viewable,
|
|
|
|
popup_width,
|
|
|
|
popup_height,
|
|
|
|
0,
|
|
|
|
TRUE, FALSE, FALSE);
|
2001-02-07 10:37:49 +08:00
|
|
|
}
|
|
|
|
}
|