]> git.sur5r.net Git - glabels/blob - glabels2/src/label-ellipse.h
Cleaned up label object duplication code.
[glabels] / glabels2 / src / label-ellipse.h
1 /*
2  *  (GLABELS) Label and Business Card Creation program for GNOME
3  *
4  *  label_ellipse.h:  GLabels label ellipse object
5  *
6  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  */
22
23 #ifndef __LABEL_ELLIPSE_H__
24 #define __LABEL_ELLIPSE_H__
25
26 #include "label-object.h"
27
28
29 G_BEGIN_DECLS
30
31
32 #define GL_TYPE_LABEL_ELLIPSE            (gl_label_ellipse_get_type ())
33 #define GL_LABEL_ELLIPSE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_ELLIPSE, glLabelEllipse))
34 #define GL_LABEL_ELLIPSE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_ELLIPSE, glLabelEllipseClass))
35 #define GL_IS_LABEL_ELLIPSE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_ELLIPSE))
36 #define GL_IS_LABEL_ELLIPSE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_ELLIPSE))
37
38 typedef struct _glLabelEllipse          glLabelEllipse;
39 typedef struct _glLabelEllipseClass     glLabelEllipseClass;
40
41 typedef struct _glLabelEllipsePrivate   glLabelEllipsePrivate;
42
43 struct _glLabelEllipse {
44         glLabelObject          object;
45
46         glLabelEllipsePrivate *private;
47 };
48
49 struct _glLabelEllipseClass {
50         glLabelObjectClass     parent_class;
51 };
52
53 GType           gl_label_ellipse_get_type       (void);
54
55 GObject        *gl_label_ellipse_new            (glLabel        *label);
56
57 void            gl_label_ellipse_set_line_width (glLabelEllipse *lellipse,
58                                                  gdouble         line_width);
59
60 void            gl_label_ellipse_set_line_color (glLabelEllipse *lellipse,
61                                                  guint           line_color);
62
63 void            gl_label_ellipse_set_fill_color (glLabelEllipse *lellipse,
64                                                  guint           fill_color);
65
66 gdouble         gl_label_ellipse_get_line_width (glLabelEllipse *lellipse);
67 guint           gl_label_ellipse_get_line_color (glLabelEllipse *lellipse);
68 guint           gl_label_ellipse_get_fill_color (glLabelEllipse *lellipse);
69
70
71 G_END_DECLS
72
73 #endif /* __LABEL_ELLIPSE_H__ */