]> git.sur5r.net Git - glabels/blob - glabels2/src/label-text.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / src / label-text.h
1 /*
2  *  label-text.h
3  *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
4  *
5  *  This file is part of gLabels.
6  *
7  *  gLabels is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  gLabels 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
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with gLabels.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef __LABEL_TEXT_H__
22 #define __LABEL_TEXT_H__
23
24 #include <gtk/gtk.h>
25 #include "text-node.h"
26 #include "label-object.h"
27
28 G_BEGIN_DECLS
29
30 #define GL_LABEL_TEXT_MARGIN 3.0
31
32
33 #define GL_TYPE_LABEL_TEXT               (gl_label_text_get_type ())
34 #define GL_LABEL_TEXT(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_TEXT, glLabelText))
35 #define GL_LABEL_TEXT_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_TEXT, glLabelTextClass))
36 #define GL_IS_LABEL_TEXT(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_TEXT))
37 #define GL_IS_LABEL_TEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_TEXT))
38 #define GL_COLOR_COMBO_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_LABEL_TEXT, glLabelTextClass))
39
40
41 typedef struct _glLabelText          glLabelText;
42 typedef struct _glLabelTextPrivate   glLabelTextPrivate;
43 typedef struct _glLabelTextClass     glLabelTextClass;
44
45
46 struct _glLabelText {
47         glLabelObject         object;
48
49         glLabelTextPrivate   *priv;
50 };
51
52 struct _glLabelTextClass {
53         glLabelObjectClass    parent_class;
54 };
55
56
57 GType          gl_label_text_get_type        (void) G_GNUC_CONST;
58
59 GObject       *gl_label_text_new             (glLabel          *label);
60
61 void           gl_label_text_set_lines       (glLabelText      *ltext,
62                                               GList            *lines);
63
64 GtkTextBuffer *gl_label_text_get_buffer      (glLabelText      *ltext);
65
66 GList         *gl_label_text_get_lines       (glLabelText      *ltext);
67
68 void           gl_label_text_set_auto_shrink (glLabelText      *ltext,
69                                               gboolean          auto_shrink);
70
71 gboolean       gl_label_text_get_auto_shrink (glLabelText      *ltext);
72
73
74 G_END_DECLS
75
76 #endif /* __LABEL_TEXT_H__ */
77
78
79
80 /*
81  * Local Variables:       -- emacs
82  * mode: C                -- emacs
83  * c-basic-offset: 8      -- emacs
84  * tab-width: 8           -- emacs
85  * indent-tabs-mode: nil  -- emacs
86  * End:                   -- emacs
87  */