2004-08-31 06:10:26 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpdrawablepreview.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-08-31 06:10:26 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-08-31 06:10:26 +08: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-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2004-08-31 06:10:26 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_UI_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimpui.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-08-31 06:10:26 +08:00
|
|
|
#ifndef __GIMP_DRAWABLE_PREVIEW_H__
|
|
|
|
#define __GIMP_DRAWABLE_PREVIEW_H__
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2004-08-31 06:49:06 +08:00
|
|
|
|
2004-08-31 06:10:26 +08:00
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
2004-08-31 06:49:06 +08:00
|
|
|
|
2024-08-02 22:02:30 +08:00
|
|
|
#define GIMP_TYPE_DRAWABLE_PREVIEW (gimp_drawable_preview_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (GimpDrawablePreview, gimp_drawable_preview, GIMP, DRAWABLE_PREVIEW, GimpScrolledPreview)
|
2004-08-31 06:10:26 +08:00
|
|
|
|
|
|
|
struct _GimpDrawablePreviewClass
|
|
|
|
{
|
2004-09-29 07:23:09 +08:00
|
|
|
GimpScrolledPreviewClass parent_class;
|
2004-10-24 03:59:18 +08:00
|
|
|
|
|
|
|
/* Padding for future expansion */
|
|
|
|
void (* _gimp_reserved1) (void);
|
|
|
|
void (* _gimp_reserved2) (void);
|
|
|
|
void (* _gimp_reserved3) (void);
|
|
|
|
void (* _gimp_reserved4) (void);
|
2018-05-03 18:51:36 +08:00
|
|
|
void (* _gimp_reserved5) (void);
|
|
|
|
void (* _gimp_reserved6) (void);
|
|
|
|
void (* _gimp_reserved7) (void);
|
|
|
|
void (* _gimp_reserved8) (void);
|
2004-08-31 06:10:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-08-13 22:16:08 +08:00
|
|
|
GtkWidget * gimp_drawable_preview_new_from_drawable (GimpDrawable *drawable);
|
|
|
|
GimpDrawable * gimp_drawable_preview_get_drawable (GimpDrawablePreview *preview);
|
2004-08-31 06:10:26 +08:00
|
|
|
|
2006-02-07 23:36:17 +08:00
|
|
|
/* for internal use only */
|
2006-08-22 21:18:42 +08:00
|
|
|
G_GNUC_INTERNAL void _gimp_drawable_preview_area_draw_thumb (GimpPreviewArea *area,
|
2019-08-13 22:16:08 +08:00
|
|
|
GimpDrawable *drawable,
|
2006-08-22 21:18:42 +08:00
|
|
|
gint width,
|
|
|
|
gint height);
|
2019-08-13 22:16:08 +08:00
|
|
|
G_GNUC_INTERNAL gboolean _gimp_drawable_preview_get_bounds (GimpDrawable *drawable,
|
2006-08-22 21:18:42 +08:00
|
|
|
gint *xmin,
|
|
|
|
gint *ymin,
|
|
|
|
gint *xmax,
|
|
|
|
gint *ymax);
|
2006-02-07 23:36:17 +08:00
|
|
|
|
2004-08-31 06:10:26 +08:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_DRAWABLE_PREVIEW_H__ */
|
|
|
|
|