2004-07-29 17:10:28 +00:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-07-29 17:10:28 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 22:28:01 +00:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-07-29 17:10:28 +00:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-17 22:28:01 +00:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2004-07-29 17:10:28 +00:00
|
|
|
*/
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-07-29 17:10:28 +00:00
|
|
|
#ifndef __GIMP_PREVIEW_AREA_H__
|
|
|
|
#define __GIMP_PREVIEW_AREA_H__
|
|
|
|
|
2004-11-04 10:51:55 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2004-07-29 17:10:28 +00:00
|
|
|
|
2024-07-29 01:51:38 +00:00
|
|
|
#define GIMP_TYPE_PREVIEW_AREA (gimp_preview_area_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (GimpPreviewArea, gimp_preview_area, GIMP, PREVIEW_AREA, GtkDrawingArea)
|
2004-07-29 17:10:28 +00:00
|
|
|
|
|
|
|
|
2016-05-24 21:43:20 +02:00
|
|
|
GtkWidget * gimp_preview_area_new (void);
|
|
|
|
|
|
|
|
void gimp_preview_area_draw (GimpPreviewArea *area,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageType type,
|
|
|
|
const guchar *buf,
|
|
|
|
gint rowstride);
|
|
|
|
void gimp_preview_area_blend (GimpPreviewArea *area,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageType type,
|
|
|
|
const guchar *buf1,
|
|
|
|
gint rowstride1,
|
|
|
|
const guchar *buf2,
|
|
|
|
gint rowstride2,
|
|
|
|
guchar opacity);
|
|
|
|
void gimp_preview_area_mask (GimpPreviewArea *area,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageType type,
|
|
|
|
const guchar *buf1,
|
|
|
|
gint rowstride1,
|
|
|
|
const guchar *buf2,
|
|
|
|
gint rowstride2,
|
|
|
|
const guchar *mask,
|
|
|
|
gint rowstride_mask);
|
|
|
|
void gimp_preview_area_fill (GimpPreviewArea *area,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
guchar red,
|
|
|
|
guchar green,
|
|
|
|
guchar blue);
|
2023-08-28 19:19:50 +02:00
|
|
|
void gimp_preview_area_reset (GimpPreviewArea *area);
|
2016-05-24 21:43:20 +02:00
|
|
|
|
|
|
|
void gimp_preview_area_set_offsets (GimpPreviewArea *area,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
|
|
|
|
|
|
|
void gimp_preview_area_set_colormap (GimpPreviewArea *area,
|
|
|
|
const guchar *colormap,
|
|
|
|
gint num_colors);
|
|
|
|
|
|
|
|
void gimp_preview_area_set_color_config (GimpPreviewArea *area,
|
|
|
|
GimpColorConfig *config);
|
|
|
|
|
2018-05-03 15:17:43 +02:00
|
|
|
void gimp_preview_area_get_size (GimpPreviewArea *area,
|
|
|
|
gint *width,
|
|
|
|
gint *height);
|
2016-05-24 21:43:20 +02:00
|
|
|
void gimp_preview_area_set_max_size (GimpPreviewArea *area,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
|
|
|
|
void gimp_preview_area_menu_popup (GimpPreviewArea *area,
|
|
|
|
GdkEventButton *event);
|
2004-09-03 19:34:59 +00:00
|
|
|
|
2004-07-29 17:10:28 +00:00
|
|
|
|
2004-11-04 10:51:55 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2004-07-29 17:10:28 +00:00
|
|
|
#endif /* __GIMP_PREVIEW_AREA_H__ */
|