1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/*
* GNT - The GLib Ncurses Toolkit
*
* GNT is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include "gntinternal.h"
#include "gntbutton.h"
#include "gntstyle.h"
#include "gntutils.h"
enum
{
SIGS = 1,
};
static GntWidgetClass *parent_class = NULL;
static gboolean small_button = FALSE;
static void
gnt_button_draw(GntWidget *widget)
{
GntButton *button = GNT_BUTTON(widget);
GntColorType type;
gboolean focus;
if ((focus = gnt_widget_has_focus(widget)))
type = GNT_COLOR_HIGHLIGHT;
else
type = GNT_COLOR_NORMAL;
wbkgdset(widget->window, '\0' | gnt_color_pair(type));
mvwaddstr(widget->window, (small_button) ? 0 : 1, 2, C_(button->priv->text));
if (small_button) {
type = GNT_COLOR_HIGHLIGHT;
mvwchgat(widget->window, 0, 0, widget->priv.width, focus ? A_BOLD : A_REVERSE, type, NULL);
}
GNTDEBUG;
}
static void
gnt_button_size_request(GntWidget *widget)
{
GntButton *button = GNT_BUTTON(widget);
gnt_util_get_text_bound(button->priv->text,
&widget->priv.width, &widget->priv.height);
widget->priv.width += 4;
if (gnt_widget_get_has_border(widget)) {
widget->priv.height += 2;
}
}
static void
gnt_button_map(GntWidget *widget)
{
if (widget->priv.width == 0 || widget->priv.height == 0)
gnt_widget_size_request(widget);
GNTDEBUG;
}
static gboolean
gnt_button_clicked(GntWidget *widget, GntMouseEvent event, int x, int y)
{
if (event == GNT_LEFT_MOUSE_DOWN) {
gnt_widget_activate(widget);
return TRUE;
}
return FALSE;
}
static void
gnt_button_destroy(GntWidget *widget)
{
GntButton *button = GNT_BUTTON(widget);
g_free(button->priv->text);
g_free(button->priv);
}
static gboolean
button_activate(GntBindable *bind, GList *null)
{
gnt_widget_activate(GNT_WIDGET(bind));
return TRUE;
}
static void
gnt_button_class_init(GntWidgetClass *klass)
{
char *style;
GntBindableClass *bindable = GNT_BINDABLE_CLASS(klass);
parent_class = GNT_WIDGET_CLASS(klass);
parent_class->draw = gnt_button_draw;
parent_class->map = gnt_button_map;
parent_class->size_request = gnt_button_size_request;
parent_class->clicked = gnt_button_clicked;
parent_class->destroy = gnt_button_destroy;
style = gnt_style_get_from_name(NULL, "small-button");
small_button = gnt_style_parse_bool(style);
g_free(style);
gnt_bindable_class_register_action(bindable, "activate", button_activate,
GNT_KEY_ENTER, NULL);
gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), GNT_BINDABLE_CLASS(klass));
}
static void
gnt_button_init(GTypeInstance *instance, gpointer class)
{
GntWidget *widget = GNT_WIDGET(instance);
GntButton *button = GNT_BUTTON(instance);
button->priv = g_new0(GntButtonPriv, 1);
widget->priv.minw = 4;
widget->priv.minh = small_button ? 1 : 3;
if (small_button) {
gnt_widget_set_has_border(widget, FALSE);
gnt_widget_set_has_shadow(widget, FALSE);
}
gnt_widget_set_grow_x(widget, FALSE);
gnt_widget_set_grow_y(widget, FALSE);
}
/******************************************************************************
* GntButton API
*****************************************************************************/
GType
gnt_button_get_gtype(void) {
static GType type = 0;
if(type == 0) {
static const GTypeInfo info = {
sizeof(GntButtonClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc)gnt_button_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(GntButton),
0, /* n_preallocs */
gnt_button_init, /* instance_init */
NULL /* value_table */
};
type = g_type_register_static(GNT_TYPE_WIDGET,
"GntButton",
&info, 0);
}
return type;
}
GntWidget *gnt_button_new(const char *text)
{
GntWidget *widget = g_object_new(GNT_TYPE_BUTTON, NULL);
GntButton *button = GNT_BUTTON(widget);
button->priv->text = gnt_util_onscreen_fit_string(text, -1);
gnt_widget_set_take_focus(widget, TRUE);
return widget;
}
const gchar *
gnt_button_get_text(GntButton *button)
{
g_return_val_if_fail(GNT_IS_BUTTON(button), NULL);
return button->priv->text;
}
void
gnt_button_set_text(GntButton *button, const gchar *text)
{
g_return_if_fail(GNT_IS_BUTTON(button));
g_free(button->priv->text);
button->priv->text = g_strdup(text);
}
|