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
|
/* eggradiotoolbutton.c
*
* Copyright (C) 2002 Anders Carlsson <andersca@codefactory.se>
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "eggradiotoolbutton.h"
#include <gtk/gtkradiobutton.h>
#ifndef _
# define _(s) (s)
#endif
static void egg_radio_tool_button_init (EggRadioToolButton *button);
static void egg_radio_tool_button_class_init (EggRadioToolButtonClass *klass);
GType
egg_radio_tool_button_get_type (void)
{
static GType type = 0;
if (!type)
{
static const GTypeInfo type_info =
{
sizeof (EggRadioToolButtonClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) egg_radio_tool_button_class_init,
(GClassFinalizeFunc) NULL,
NULL,
sizeof (EggRadioToolButton),
0, /* n_preallocs */
(GInstanceInitFunc) egg_radio_tool_button_init
};
type = g_type_register_static (EGG_TYPE_TOGGLE_TOOL_BUTTON,
"EggRadioToolButton", &type_info, 0);
}
return type;
}
static void
egg_radio_tool_button_class_init (EggRadioToolButtonClass *klass)
{
EggToolButtonClass *toolbutton_class;
toolbutton_class = (EggToolButtonClass *)klass;
toolbutton_class->button_type = GTK_TYPE_RADIO_BUTTON;
}
static void
egg_radio_tool_button_init (EggRadioToolButton *button)
{
gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (EGG_TOOL_BUTTON (button)->button), FALSE);
}
EggToolItem *
egg_radio_tool_button_new (GSList *group)
{
EggRadioToolButton *button;
button = g_object_new (EGG_TYPE_RADIO_TOOL_BUTTON,
NULL);
egg_radio_tool_button_set_group (button, group);
return EGG_TOOL_ITEM (button);
}
EggToolItem *
egg_radio_tool_button_new_from_stock (GSList *group,
const gchar *stock_id)
{
EggRadioToolButton *button;
button = g_object_new (EGG_TYPE_RADIO_TOOL_BUTTON,
"stock_id", stock_id,
"use_underline", TRUE,
NULL);
egg_radio_tool_button_set_group (button, group);
return EGG_TOOL_ITEM (button);
}
GSList *
egg_radio_tool_button_get_group (EggRadioToolButton *button)
{
g_return_val_if_fail (EGG_IS_RADIO_TOOL_BUTTON (button), NULL);
return gtk_radio_button_get_group (GTK_RADIO_BUTTON (EGG_TOOL_BUTTON (button)->button));
}
void
egg_radio_tool_button_set_group (EggRadioToolButton *button,
GSList *group)
{
g_return_if_fail (EGG_IS_RADIO_TOOL_BUTTON (button));
gtk_radio_button_set_group (GTK_RADIO_BUTTON (EGG_TOOL_BUTTON (button)->button), group);
}
|