]> git.sur5r.net Git - glabels/blob - src/label-text.h
Imported Upstream version 3.0.0
[glabels] / 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_LABEL_TEXT_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                                               gboolean          checkpoint);
61
62 void           gl_label_text_set_lines       (glLabelText      *ltext,
63                                               GList            *lines,
64                                               gboolean          checkpoint);
65
66 void           gl_label_text_set_text        (glLabelText      *ltext,
67                                               const gchar      *text,
68                                               gboolean          checkpoint);
69
70 GtkTextBuffer *gl_label_text_get_buffer      (glLabelText      *ltext);
71
72 gchar         *gl_label_text_get_text        (glLabelText      *ltext);
73
74 GList         *gl_label_text_get_lines       (glLabelText      *ltext);
75
76 void           gl_label_text_set_auto_shrink (glLabelText      *ltext,
77                                               gboolean          auto_shrink,
78                                               gboolean          checkpoint);
79
80 gboolean       gl_label_text_get_auto_shrink (glLabelText      *ltext);
81
82
83 G_END_DECLS
84
85 #endif /* __LABEL_TEXT_H__ */
86
87
88
89 /*
90  * Local Variables:       -- emacs
91  * mode: C                -- emacs
92  * c-basic-offset: 8      -- emacs
93  * tab-width: 8           -- emacs
94  * indent-tabs-mode: nil  -- emacs
95  * End:                   -- emacs
96  */