finch/libgnt/gntlabel.c

changeset 39360
e7bed293aad5
parent 39302
64aabebb476b
child 39361
a1068caa3600
equal deleted inserted replaced
39302:64aabebb476b 39360:e7bed293aad5
1 /*
2 * GNT - The GLib Ncurses Toolkit
3 *
4 * GNT is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution.
7 *
8 * This library 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 */
22
23 #include "gntinternal.h"
24 #include "gntlabel.h"
25 #include "gntutils.h"
26
27 #include <string.h>
28
29 enum
30 {
31 PROP_0,
32 PROP_TEXT,
33 PROP_TEXT_FLAG
34 };
35
36 enum
37 {
38 SIGS = 1,
39 };
40
41 static GntWidgetClass *parent_class = NULL;
42
43 static void
44 gnt_label_destroy(GntWidget *widget)
45 {
46 GntLabel *label = GNT_LABEL(widget);
47 g_free(label->text);
48 }
49
50 static void
51 gnt_label_draw(GntWidget *widget)
52 {
53 GntLabel *label = GNT_LABEL(widget);
54 chtype flag = gnt_text_format_flag_to_chtype(label->flags);
55
56 wbkgdset(widget->window, '\0' | flag);
57 mvwaddstr(widget->window, 0, 0, C_(label->text));
58
59 GNTDEBUG;
60 }
61
62 static void
63 gnt_label_size_request(GntWidget *widget)
64 {
65 GntLabel *label = GNT_LABEL(widget);
66
67 gnt_util_get_text_bound(label->text,
68 &widget->priv.width, &widget->priv.height);
69 }
70
71 static void
72 gnt_label_set_property(GObject *obj, guint prop_id, const GValue *value,
73 GParamSpec *spec)
74 {
75 GntLabel *label = GNT_LABEL(obj);
76 switch (prop_id) {
77 case PROP_TEXT:
78 g_free(label->text);
79 label->text = gnt_util_onscreen_fit_string(g_value_get_string(value), -1);
80 break;
81 case PROP_TEXT_FLAG:
82 label->flags = g_value_get_int(value);
83 break;
84 default:
85 g_return_if_reached();
86 break;
87 }
88 }
89
90 static void
91 gnt_label_get_property(GObject *obj, guint prop_id, GValue *value,
92 GParamSpec *spec)
93 {
94 GntLabel *label = GNT_LABEL(obj);
95 switch (prop_id) {
96 case PROP_TEXT:
97 g_value_set_string(value, label->text);
98 break;
99 case PROP_TEXT_FLAG:
100 g_value_set_int(value, label->flags);
101 break;
102 default:
103 break;
104 }
105 }
106
107 static void
108 gnt_label_class_init(GntLabelClass *klass)
109 {
110 GObjectClass *gclass = G_OBJECT_CLASS(klass);
111
112 parent_class = GNT_WIDGET_CLASS(klass);
113 parent_class->destroy = gnt_label_destroy;
114 parent_class->draw = gnt_label_draw;
115 parent_class->map = NULL;
116 parent_class->size_request = gnt_label_size_request;
117
118 gclass->set_property = gnt_label_set_property;
119 gclass->get_property = gnt_label_get_property;
120
121 g_object_class_install_property(gclass,
122 PROP_TEXT,
123 g_param_spec_string("text", "Text",
124 "The text for the label.",
125 NULL,
126 G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS
127 )
128 );
129
130 g_object_class_install_property(gclass,
131 PROP_TEXT_FLAG,
132 g_param_spec_int("text-flag", "Text flag",
133 "Text attribute to use when displaying the text in the label.",
134 GNT_TEXT_FLAG_NORMAL,
135 GNT_TEXT_FLAG_NORMAL|GNT_TEXT_FLAG_BOLD|GNT_TEXT_FLAG_UNDERLINE|
136 GNT_TEXT_FLAG_BLINK|GNT_TEXT_FLAG_DIM|GNT_TEXT_FLAG_HIGHLIGHT,
137 GNT_TEXT_FLAG_NORMAL,
138 G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS
139 )
140 );
141 GNTDEBUG;
142 }
143
144 static void
145 gnt_label_init(GTypeInstance *instance, gpointer class)
146 {
147 GntWidget *widget = GNT_WIDGET(instance);
148 gnt_widget_set_take_focus(widget, FALSE);
149 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_NO_BORDER | GNT_WIDGET_NO_SHADOW);
150 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_GROW_X);
151 widget->priv.minw = 3;
152 widget->priv.minh = 1;
153 GNTDEBUG;
154 }
155
156 /******************************************************************************
157 * GntLabel API
158 *****************************************************************************/
159 GType
160 gnt_label_get_type(void)
161 {
162 static GType type = 0;
163
164 if(type == 0)
165 {
166 static const GTypeInfo info = {
167 sizeof(GntLabelClass),
168 NULL, /* base_init */
169 NULL, /* base_finalize */
170 (GClassInitFunc)gnt_label_class_init,
171 NULL, /* class_finalize */
172 NULL, /* class_data */
173 sizeof(GntLabel),
174 0, /* n_preallocs */
175 gnt_label_init, /* instance_init */
176 NULL /* value_table */
177 };
178
179 type = g_type_register_static(GNT_TYPE_WIDGET,
180 "GntLabel",
181 &info, 0);
182 }
183
184 return type;
185 }
186
187 GntWidget *gnt_label_new(const char *text)
188 {
189 return gnt_label_new_with_format(text, 0);
190 }
191
192 GntWidget *gnt_label_new_with_format(const char *text, GntTextFormatFlags flags)
193 {
194 GntWidget *widget = g_object_new(GNT_TYPE_LABEL, "text-flag", flags, "text", text, NULL);
195 return widget;
196 }
197
198 void gnt_label_set_text(GntLabel *label, const char *text)
199 {
200 g_object_set(label, "text", text, NULL);
201
202 if (GNT_WIDGET(label)->window)
203 {
204 werase(GNT_WIDGET(label)->window);
205 gnt_widget_draw(GNT_WIDGET(label));
206 }
207 }
208

mercurial