]> git.sur5r.net Git - glabels/blob - src/view-text.h
Imported Upstream version 2.2.8
[glabels] / src / view-text.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_text.h:  GLabels label text 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_TEXT_H__
26 #define __VIEW_TEXT_H__
27
28 #include "view-object.h"
29 #include "label-text.h"
30
31 G_BEGIN_DECLS
32
33
34 #define GL_TYPE_VIEW_TEXT            (gl_view_text_get_type ())
35 #define GL_VIEW_TEXT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_VIEW_TEXT, glViewText))
36 #define GL_VIEW_TEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_VIEW_TEXT, glViewTextClass))
37 #define GL_IS_VIEW_TEXT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_VIEW_TEXT))
38 #define GL_IS_VIEW_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_VIEW_TEXT))
39
40 typedef struct _glViewText          glViewText;
41 typedef struct _glViewTextClass     glViewTextClass;
42
43 typedef struct _glViewTextPrivate   glViewTextPrivate;
44
45 struct _glViewText {
46         glViewObject       parent_object;
47
48         glViewTextPrivate *priv;
49 };
50
51 struct _glViewTextClass {
52         glViewObjectClass  parent_class;
53 };
54
55
56 GType          gl_view_text_get_type (void) G_GNUC_CONST;
57
58 glViewObject  *gl_view_text_new      (glLabelText *object,
59                                       glView      *view);
60
61
62 /* cursor for creating text objects */
63 GdkCursor *gl_view_text_get_create_cursor (void);
64
65 /* Object creation handlers. */
66 void       gl_view_text_create_button_press_event   (glView *view,
67                                                      gdouble x,
68                                                      gdouble y);
69
70 void       gl_view_text_create_motion_event         (glView *view,
71                                                      gdouble x,
72                                                      gdouble y);
73
74 void       gl_view_text_create_button_release_event (glView *view,
75                                                      gdouble x,
76                                                      gdouble y);
77
78
79 G_END_DECLS
80
81 #endif /* __VIEW_TEXT_H__ */