2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-05 23:22:20 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2004-08-25 01:16:46 +08:00
|
|
|
* gimpview.h
|
2006-05-12 23:39:31 +08:00
|
|
|
* Copyright (C) 2001-2006 Michael Natterer <mitch@gimp.org>
|
2001-02-05 23:22:20 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-02-05 23:22:20 +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-05 23:22:20 +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-05 23:22:20 +08:00
|
|
|
*/
|
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
#ifndef __GIMP_VIEW_H__
|
|
|
|
#define __GIMP_VIEW_H__
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
#define GIMP_TYPE_VIEW (gimp_view_get_type ())
|
|
|
|
#define GIMP_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_VIEW, GimpView))
|
|
|
|
#define GIMP_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_VIEW, GimpViewClass))
|
|
|
|
#define GIMP_IS_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GIMP_TYPE_VIEW))
|
|
|
|
#define GIMP_IS_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_VIEW))
|
|
|
|
#define GIMP_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_VIEW, GimpViewClass))
|
2001-02-05 23:22:20 +08:00
|
|
|
|
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
typedef struct _GimpViewClass GimpViewClass;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
struct _GimpView
|
2001-02-05 23:22:20 +08:00
|
|
|
{
|
2004-08-26 06:31:44 +08:00
|
|
|
GtkWidget parent_instance;
|
2003-04-11 16:37:26 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
GdkWindow *event_window;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2004-08-26 06:31:44 +08:00
|
|
|
GimpViewable *viewable;
|
|
|
|
GimpViewRenderer *renderer;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2006-05-12 23:39:31 +08:00
|
|
|
guint clickable : 1;
|
|
|
|
guint eat_button_events : 1;
|
|
|
|
guint show_popup : 1;
|
|
|
|
guint expand : 1;
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
/*< private >*/
|
2006-05-12 23:39:31 +08:00
|
|
|
guint in_button : 1;
|
|
|
|
guint has_grab : 1;
|
2004-08-26 06:31:44 +08:00
|
|
|
GdkModifierType press_state;
|
2001-02-05 23:22:20 +08:00
|
|
|
};
|
|
|
|
|
2004-08-25 01:16:46 +08:00
|
|
|
struct _GimpViewClass
|
2001-02-05 23:22:20 +08:00
|
|
|
{
|
2005-08-26 03:06:49 +08:00
|
|
|
GtkWidgetClass parent_class;
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2001-08-07 20:42:23 +08:00
|
|
|
/* signals */
|
2005-08-26 03:06:49 +08:00
|
|
|
void (* set_viewable) (GimpView *view,
|
|
|
|
GimpViewable *old_viewable,
|
|
|
|
GimpViewable *new_viewable);
|
|
|
|
void (* clicked) (GimpView *view,
|
|
|
|
GdkModifierType modifier_state);
|
|
|
|
void (* double_clicked) (GimpView *view);
|
|
|
|
void (* context) (GimpView *view);
|
2001-02-05 23:22:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-08-26 03:06:49 +08:00
|
|
|
GType gimp_view_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2006-08-30 05:44:51 +08:00
|
|
|
GtkWidget * gimp_view_new (GimpContext *context,
|
|
|
|
GimpViewable *viewable,
|
2005-08-26 03:06:49 +08:00
|
|
|
gint size,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup);
|
2006-08-30 05:44:51 +08:00
|
|
|
GtkWidget * gimp_view_new_full (GimpContext *context,
|
|
|
|
GimpViewable *viewable,
|
2005-08-26 03:06:49 +08:00
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean clickable,
|
|
|
|
gboolean show_popup);
|
2006-08-30 05:44:51 +08:00
|
|
|
GtkWidget * gimp_view_new_by_types (GimpContext *context,
|
|
|
|
GType view_type,
|
2005-08-26 03:06:49 +08:00
|
|
|
GType viewable_type,
|
|
|
|
gint size,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup);
|
2006-08-30 05:44:51 +08:00
|
|
|
GtkWidget * gimp_view_new_full_by_types (GimpContext *context,
|
|
|
|
GType view_type,
|
2005-08-26 03:06:49 +08:00
|
|
|
GType viewable_type,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint border_width,
|
|
|
|
gboolean is_popup,
|
|
|
|
gboolean clickable,
|
|
|
|
gboolean show_popup);
|
|
|
|
|
|
|
|
GimpViewable * gimp_view_get_viewable (GimpView *view);
|
|
|
|
void gimp_view_set_viewable (GimpView *view,
|
|
|
|
GimpViewable *viewable);
|
|
|
|
void gimp_view_set_expand (GimpView *view,
|
|
|
|
gboolean expand);
|
2004-08-25 01:16:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_VIEW_H__ */
|