2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-06 16:06:58 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-02-06 16:06:58 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-02-06 16:06:58 -08:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2001-02-06 16:06:58 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __GIMP_DRAWABLE__PREVIEW_H__
|
|
|
|
|
#define __GIMP_DRAWABLE__PREVIEW_H__
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2018-03-24 13:49:01 -07:00
|
|
|
* virtual functions of GimpDrawable -- don't call directly
|
2001-02-06 16:06:58 -08:00
|
|
|
*/
|
2018-07-01 07:37:11 -07:00
|
|
|
GimpTempBuf * gimp_drawable_get_new_preview (GimpViewable *viewable,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint width,
|
|
|
|
|
gint height);
|
|
|
|
|
GdkPixbuf * gimp_drawable_get_new_pixbuf (GimpViewable *viewable,
|
|
|
|
|
GimpContext *context,
|
|
|
|
|
gint width,
|
|
|
|
|
gint height);
|
2001-02-06 16:06:58 -08:00
|
|
|
|
2004-12-15 06:40:52 -08:00
|
|
|
/*
|
|
|
|
|
* normal functions (no virtuals)
|
|
|
|
|
*/
|
2018-07-01 07:37:11 -07:00
|
|
|
const Babl * gimp_drawable_get_preview_format (GimpDrawable *drawable);
|
|
|
|
|
|
|
|
|
|
GimpTempBuf * gimp_drawable_get_sub_preview (GimpDrawable *drawable,
|
|
|
|
|
gint src_x,
|
|
|
|
|
gint src_y,
|
|
|
|
|
gint src_width,
|
|
|
|
|
gint src_height,
|
|
|
|
|
gint dest_width,
|
|
|
|
|
gint dest_height);
|
|
|
|
|
GdkPixbuf * gimp_drawable_get_sub_pixbuf (GimpDrawable *drawable,
|
|
|
|
|
gint src_x,
|
|
|
|
|
gint src_y,
|
|
|
|
|
gint src_width,
|
|
|
|
|
gint src_height,
|
|
|
|
|
gint dest_width,
|
|
|
|
|
gint dest_height);
|
|
|
|
|
|
|
|
|
|
GimpAsync * gimp_drawable_get_sub_preview_async (GimpDrawable *drawable,
|
|
|
|
|
gint src_x,
|
|
|
|
|
gint src_y,
|
|
|
|
|
gint src_width,
|
|
|
|
|
gint src_height,
|
|
|
|
|
gint dest_width,
|
|
|
|
|
gint dest_height);
|
2001-02-06 16:06:58 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_DRAWABLE__PREVIEW_H__ */
|