Add configure.ac
[gnt.git] / gntline.c
blob3f880eb2c0b85bfdfef1ac0bcd99cc969298090a
1 /**
2 * GNT - The GLib Ncurses Toolkit
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.
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.
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.
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
23 #include "gntline.h"
25 enum
27 PROP_0,
28 PROP_VERTICAL
31 enum
33 SIGS = 1,
36 static GntWidgetClass *parent_class = NULL;
38 static void
39 gnt_line_draw(GntWidget *widget)
41 GntLine *line = GNT_LINE(widget);
42 if (line->vertical)
43 mvwvline(widget->window, 1, 0, ACS_VLINE | gnt_color_pair(GNT_COLOR_NORMAL),
44 widget->priv.height - 2);
45 else
46 mvwhline(widget->window, 0, 1, ACS_HLINE | gnt_color_pair(GNT_COLOR_NORMAL),
47 widget->priv.width - 2);
50 static void
51 gnt_line_size_request(GntWidget *widget)
53 if (GNT_LINE(widget)->vertical)
55 widget->priv.width = 1;
56 widget->priv.height = 5;
58 else
60 widget->priv.width = 5;
61 widget->priv.height = 1;
65 static void
66 gnt_line_map(GntWidget *widget)
68 if (widget->priv.width == 0 || widget->priv.height == 0)
69 gnt_widget_size_request(widget);
70 GNTDEBUG;
73 static void
74 gnt_line_set_property(GObject *obj, guint prop_id, const GValue *value,
75 GParamSpec *spec)
77 GntLine *line = GNT_LINE(obj);
78 switch (prop_id) {
79 case PROP_VERTICAL:
80 line->vertical = g_value_get_boolean(value);
81 if (line->vertical) {
82 GNT_WIDGET_SET_FLAGS(line, GNT_WIDGET_GROW_Y);
83 } else {
84 GNT_WIDGET_SET_FLAGS(line, GNT_WIDGET_GROW_X);
86 break;
87 default:
88 break;
92 static void
93 gnt_line_get_property(GObject *obj, guint prop_id, GValue *value,
94 GParamSpec *spec)
96 GntLine *line = GNT_LINE(obj);
97 switch (prop_id) {
98 case PROP_VERTICAL:
99 g_value_set_boolean(value, line->vertical);
100 break;
101 default:
102 break;
106 static void
107 gnt_line_class_init(GntLineClass *klass)
109 GObjectClass *gclass = G_OBJECT_CLASS(klass);
110 parent_class = GNT_WIDGET_CLASS(klass);
111 parent_class->draw = gnt_line_draw;
112 parent_class->map = gnt_line_map;
113 parent_class->size_request = gnt_line_size_request;
115 gclass->set_property = gnt_line_set_property;
116 gclass->get_property = gnt_line_get_property;
117 g_object_class_install_property(gclass,
118 PROP_VERTICAL,
119 g_param_spec_boolean("vertical", "Vertical",
120 "Whether it's a vertical line or a horizontal one.",
121 TRUE,
122 G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
127 static void
128 gnt_line_init(GTypeInstance *instance, gpointer class)
130 GntWidget *widget = GNT_WIDGET(instance);
131 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_NO_SHADOW | GNT_WIDGET_NO_BORDER);
132 widget->priv.minw = 1;
133 widget->priv.minh = 1;
134 GNTDEBUG;
137 /******************************************************************************
138 * GntLine API
139 *****************************************************************************/
140 GType
141 gnt_line_get_gtype(void)
143 static GType type = 0;
145 if(type == 0)
147 static const GTypeInfo info = {
148 sizeof(GntLineClass),
149 NULL, /* base_init */
150 NULL, /* base_finalize */
151 (GClassInitFunc)gnt_line_class_init,
152 NULL, /* class_finalize */
153 NULL, /* class_data */
154 sizeof(GntLine),
155 0, /* n_preallocs */
156 gnt_line_init, /* instance_init */
157 NULL /* value_table */
160 type = g_type_register_static(GNT_TYPE_WIDGET,
161 "GntLine",
162 &info, 0);
165 return type;
168 GntWidget *gnt_line_new(gboolean vertical)
170 GntWidget *widget = g_object_new(GNT_TYPE_LINE, "vertical", vertical, NULL);
171 return widget;