Sets the caret position to the body of a callback.
[anjuta.git] / libfoocanvas / foo-canvas-pixbuf.h
blobc477445d6f1531bdc2dafe5bb7b939c146011519
1 /* GNOME libraries - GdkPixbuf item for the GNOME canvas
3 * Copyright (C) 1999 The Free Software Foundation
5 * Author: Federico Mena-Quintero <federico@gimp.org>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 #ifndef FOO_CANVAS_PIXBUF_H
24 #define FOO_CANVAS_PIXBUF_H
27 #include <libfoocanvas/foo-canvas.h>
29 G_BEGIN_DECLS
33 #define FOO_TYPE_CANVAS_PIXBUF (foo_canvas_pixbuf_get_type ())
34 #define FOO_CANVAS_PIXBUF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), FOO_TYPE_CANVAS_PIXBUF, FooCanvasPixbuf))
35 #define FOO_CANVAS_PIXBUF_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), FOO_TYPE_CANVAS_PIXBUF, FooCanvasPixbufClass))
36 #define FOO_IS_CANVAS_PIXBUF(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), FOO_TYPE_CANVAS_PIXBUF))
37 #define FOO_IS_CANVAS_PIXBUF_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), FOO_TYPE_CANVAS_PIXBUF))
38 #define FOO_CANVAS_PIXBUF_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), FOO_TYPE_CANVAS_PIXBUF, FooCanvasPixbufClass))
41 typedef struct _FooCanvasPixbuf FooCanvasPixbuf;
42 typedef struct _FooCanvasPixbufClass FooCanvasPixbufClass;
44 struct _FooCanvasPixbuf {
45 FooCanvasItem item;
47 /* Private data */
48 gpointer priv;
51 struct _FooCanvasPixbufClass {
52 FooCanvasItemClass parent_class;
56 GType foo_canvas_pixbuf_get_type (void) G_GNUC_CONST;
60 G_END_DECLS
62 #endif