2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-07 08:06:58 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-02-07 08:06:58 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-02-07 08: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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-02-07 08:06:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_DRAWABLE__PREVIEW_H__
|
|
|
|
#define __GIMP_DRAWABLE__PREVIEW_H__
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-12-11 09:22:58 +08:00
|
|
|
* virtual function of GimpDrawable -- dont't call directly
|
2001-02-07 08:06:58 +08:00
|
|
|
*/
|
2004-12-11 09:22:58 +08:00
|
|
|
TempBuf * gimp_drawable_get_preview (GimpViewable *viewable,
|
2006-08-30 05:44:51 +08:00
|
|
|
GimpContext *context,
|
2004-12-11 09:22:58 +08:00
|
|
|
gint width,
|
|
|
|
gint height);
|
2001-02-07 08:06:58 +08:00
|
|
|
|
2004-12-15 22:40:52 +08:00
|
|
|
/*
|
|
|
|
* normal functions (no virtuals)
|
|
|
|
*/
|
|
|
|
gint gimp_drawable_preview_bytes (GimpDrawable *drawable);
|
2004-12-11 09:22:58 +08:00
|
|
|
TempBuf * 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);
|
2001-02-07 08:06:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_DRAWABLE__PREVIEW_H__ */
|