]> git.sur5r.net Git - glabels/blob - src/view-ellipse.h
Imported Upstream version 2.2.8
[glabels] / src / view-ellipse.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /*
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  view_ellipse.h:  GLabels label ellipse object view
7  *
8  *  Copyright (C) 2001-2007  Jim Evins <evins@snaught.com>.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23  */
24
25 #ifndef __VIEW_ELLIPSE_H__
26 #define __VIEW_ELLIPSE_H__
27
28 #include "view-object.h"
29 #include "label-ellipse.h"
30
31 G_BEGIN_DECLS
32
33
34 #define GL_TYPE_VIEW_ELLIPSE            (gl_view_ellipse_get_type ())
35 #define GL_VIEW_ELLIPSE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_VIEW_ELLIPSE, glViewEllipse))
36 #define GL_VIEW_ELLIPSE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_VIEW_ELLIPSE, glViewEllipseClass))
37 #define GL_IS_VIEW_ELLIPSE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_VIEW_ELLIPSE))
38 #define GL_IS_VIEW_ELLIPSE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_VIEW_ELLIPSE))
39
40 typedef struct _glViewEllipse          glViewEllipse;
41 typedef struct _glViewEllipseClass     glViewEllipseClass;
42
43 typedef struct _glViewEllipsePrivate   glViewEllipsePrivate;
44
45 struct _glViewEllipse {
46         glViewObject          parent_object;
47
48         glViewEllipsePrivate *priv;
49 };
50
51 struct _glViewEllipseClass {
52         glViewObjectClass     parent_class;
53 };
54
55
56 GType          gl_view_ellipse_get_type (void) G_GNUC_CONST;
57
58 glViewObject  *gl_view_ellipse_new      (glLabelEllipse *object,
59                                          glView     *view);
60
61
62 /* cursor for creating ellipse objects */
63 GdkCursor *gl_view_ellipse_get_create_cursor (void);
64
65 /* Object creation handlers. */
66 void       gl_view_ellipse_create_button_press_event   (glView *view,
67                                                         gdouble x,
68                                                         gdouble y);
69
70 void       gl_view_ellipse_create_motion_event         (glView *view,
71                                                         gdouble x,
72                                                         gdouble y);
73
74 void       gl_view_ellipse_create_button_release_event (glView *view,
75                                                         gdouble x,
76                                                         gdouble y);
77
78
79 G_END_DECLS
80
81 #endif /* __VIEW_ELLIPSE_H__ */