2004-09-29 07:23:09 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpscrolledpreview.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2004-09-29 07:23:09 +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-09-29 07:23:09 +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-09-29 07:23:09 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-09-29 07:23:09 +08:00
|
|
|
#ifndef __GIMP_SCROLLED_PREVIEW_H__
|
|
|
|
#define __GIMP_SCROLLED_PREVIEW_H__
|
|
|
|
|
|
|
|
#include "gimppreview.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2024-08-02 22:02:30 +08:00
|
|
|
#define GIMP_TYPE_SCROLLED_PREVIEW (gimp_scrolled_preview_get_type ())
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (GimpScrolledPreview, gimp_scrolled_preview, GIMP, SCROLLED_PREVIEW, GimpPreview)
|
2004-09-29 07:23:09 +08:00
|
|
|
|
|
|
|
struct _GimpScrolledPreviewClass
|
|
|
|
{
|
2004-09-29 21:39:23 +08:00
|
|
|
GimpPreviewClass 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-09-29 07:23:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-05-03 22:32:33 +08:00
|
|
|
void gimp_scrolled_preview_set_position (GimpScrolledPreview *preview,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
|
|
|
void gimp_scrolled_preview_set_policy (GimpScrolledPreview *preview,
|
|
|
|
GtkPolicyType hscrollbar_policy,
|
|
|
|
GtkPolicyType vscrollbar_policy);
|
2004-09-29 07:23:09 +08:00
|
|
|
|
2018-05-03 22:32:33 +08:00
|
|
|
void gimp_scrolled_preview_get_adjustments (GimpScrolledPreview *preview,
|
|
|
|
GtkAdjustment **hadj,
|
|
|
|
GtkAdjustment **vadj);
|
2004-09-29 07:23:09 +08:00
|
|
|
|
2006-01-25 22:35:56 +08:00
|
|
|
/* only for use from derived widgets */
|
2018-05-03 22:32:33 +08:00
|
|
|
void gimp_scrolled_preview_freeze (GimpScrolledPreview *preview);
|
|
|
|
void gimp_scrolled_preview_thaw (GimpScrolledPreview *preview);
|
2006-01-25 22:35:56 +08:00
|
|
|
|
2018-05-11 05:24:29 +08:00
|
|
|
/* utility function for scrolled-window like gimp widgets like the canvas */
|
|
|
|
void gimp_scroll_adjustment_values (GdkEventScroll *sevent,
|
|
|
|
GtkAdjustment *hadj,
|
|
|
|
GtkAdjustment *vadj,
|
|
|
|
gdouble *hvalue,
|
|
|
|
gdouble *vvalue);
|
|
|
|
|
2006-01-25 22:35:56 +08:00
|
|
|
|
2004-09-29 07:23:09 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GIMP_SCROLLED_PREVIEW_H__ */
|