1997-11-24 22:37:52 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
|
|
|
#include "gtklabel.h"
|
|
|
|
#include "gtkradiobutton.h"
|
|
|
|
#include "gtksignal.h"
|
|
|
|
|
|
|
|
|
1998-06-24 06:25:14 +00:00
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_GROUP
|
|
|
|
};
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#define CHECK_BUTTON_CLASS(w) GTK_CHECK_BUTTON_CLASS (GTK_OBJECT (w)->klass)
|
|
|
|
|
|
|
|
|
|
|
|
static void gtk_radio_button_class_init (GtkRadioButtonClass *klass);
|
|
|
|
static void gtk_radio_button_init (GtkRadioButton *radio_button);
|
|
|
|
static void gtk_radio_button_destroy (GtkObject *object);
|
|
|
|
static void gtk_radio_button_clicked (GtkButton *button);
|
|
|
|
static void gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
|
|
|
|
GdkRectangle *area);
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
static void gtk_radio_button_set_arg (GtkObject *object,
|
1998-06-24 06:25:14 +00:00
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
static void gtk_radio_button_get_arg (GtkObject *object,
|
1998-06-24 06:25:14 +00:00
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
static GtkCheckButtonClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
1998-06-16 05:20:05 +00:00
|
|
|
GtkType
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_radio_button_get_type (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-06-16 05:20:05 +00:00
|
|
|
static GtkType radio_button_type = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
if (!radio_button_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo radio_button_info =
|
|
|
|
{
|
|
|
|
"GtkRadioButton",
|
|
|
|
sizeof (GtkRadioButton),
|
|
|
|
sizeof (GtkRadioButtonClass),
|
|
|
|
(GtkClassInitFunc) gtk_radio_button_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_radio_button_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
radio_button_type = gtk_type_unique (gtk_check_button_get_type (), &radio_button_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return radio_button_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_radio_button_class_init (GtkRadioButtonClass *class)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkButtonClass *button_class;
|
|
|
|
GtkCheckButtonClass *check_button_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass*) class;
|
|
|
|
button_class = (GtkButtonClass*) class;
|
|
|
|
check_button_class = (GtkCheckButtonClass*) class;
|
|
|
|
|
|
|
|
parent_class = gtk_type_class (gtk_check_button_get_type ());
|
|
|
|
|
1998-06-24 06:25:14 +00:00
|
|
|
gtk_object_add_arg_type ("GtkRadioButton::group", GTK_TYPE_RADIO_BUTTON, GTK_ARG_WRITABLE, ARG_GROUP);
|
|
|
|
|
1998-06-28 07:46:10 +00:00
|
|
|
object_class->set_arg = gtk_radio_button_set_arg;
|
|
|
|
object_class->get_arg = gtk_radio_button_get_arg;
|
1997-11-24 22:37:52 +00:00
|
|
|
object_class->destroy = gtk_radio_button_destroy;
|
|
|
|
|
|
|
|
button_class->clicked = gtk_radio_button_clicked;
|
|
|
|
|
|
|
|
check_button_class->draw_indicator = gtk_radio_button_draw_indicator;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_radio_button_init (GtkRadioButton *radio_button)
|
|
|
|
{
|
1998-11-06 22:05:02 +00:00
|
|
|
GTK_WIDGET_SET_FLAGS (radio_button, GTK_NO_WINDOW);
|
1998-04-18 20:33:35 +00:00
|
|
|
radio_button->group = g_slist_prepend (NULL, radio_button);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-06-24 06:25:14 +00:00
|
|
|
static void
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
gtk_radio_button_set_arg (GtkObject *object,
|
1998-06-24 06:25:14 +00:00
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
GtkRadioButton *radio_button;
|
|
|
|
|
|
|
|
radio_button = GTK_RADIO_BUTTON (object);
|
|
|
|
|
1998-06-24 06:25:14 +00:00
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
GSList *slist;
|
|
|
|
|
|
|
|
case ARG_GROUP:
|
|
|
|
if (GTK_VALUE_OBJECT (*arg))
|
|
|
|
slist = gtk_radio_button_group ((GtkRadioButton*) GTK_VALUE_OBJECT (*arg));
|
|
|
|
else
|
|
|
|
slist = NULL;
|
|
|
|
gtk_radio_button_set_group (radio_button, slist);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
gtk_radio_button_get_arg (GtkObject *object,
|
1998-06-24 06:25:14 +00:00
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
|
|
|
GtkRadioButton *radio_button;
|
|
|
|
|
|
|
|
radio_button = GTK_RADIO_BUTTON (object);
|
|
|
|
|
1998-06-24 06:25:14 +00:00
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
arg->type = GTK_TYPE_INVALID;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-03-18 21:11:04 +00:00
|
|
|
void
|
|
|
|
gtk_radio_button_set_group (GtkRadioButton *radio_button,
|
|
|
|
GSList *group)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-04-18 20:33:35 +00:00
|
|
|
g_return_if_fail (radio_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_RADIO_BUTTON (radio_button));
|
|
|
|
g_return_if_fail (!g_slist_find (group, radio_button));
|
|
|
|
|
1998-03-18 21:11:04 +00:00
|
|
|
if (radio_button->group)
|
|
|
|
{
|
1998-04-18 20:33:35 +00:00
|
|
|
GSList *slist;
|
|
|
|
|
1998-03-18 21:11:04 +00:00
|
|
|
radio_button->group = g_slist_remove (radio_button->group, radio_button);
|
|
|
|
|
1998-04-18 20:33:35 +00:00
|
|
|
for (slist = radio_button->group; slist; slist = slist->next)
|
1998-03-18 21:11:04 +00:00
|
|
|
{
|
1998-04-18 20:33:35 +00:00
|
|
|
GtkRadioButton *tmp_button;
|
|
|
|
|
|
|
|
tmp_button = slist->data;
|
1998-03-18 21:11:04 +00:00
|
|
|
|
|
|
|
tmp_button->group = radio_button->group;
|
|
|
|
}
|
|
|
|
}
|
1998-04-18 20:33:35 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
radio_button->group = g_slist_prepend (group, radio_button);
|
1998-04-18 20:33:35 +00:00
|
|
|
|
|
|
|
if (group)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-04-18 20:33:35 +00:00
|
|
|
GSList *slist;
|
|
|
|
|
|
|
|
for (slist = group; slist; slist = slist->next)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-04-18 20:33:35 +00:00
|
|
|
GtkRadioButton *tmp_button;
|
|
|
|
|
|
|
|
tmp_button = slist->data;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
tmp_button->group = radio_button->group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GTK_TOGGLE_BUTTON (radio_button)->active = TRUE;
|
|
|
|
gtk_widget_set_state (GTK_WIDGET (radio_button), GTK_STATE_ACTIVE);
|
|
|
|
}
|
1998-03-18 21:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_radio_button_new (GSList *group)
|
|
|
|
{
|
|
|
|
GtkRadioButton *radio_button;
|
|
|
|
|
|
|
|
radio_button = gtk_type_new (gtk_radio_button_get_type ());
|
|
|
|
|
|
|
|
gtk_radio_button_set_group (radio_button, group);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
return GTK_WIDGET (radio_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_radio_button_new_with_label (GSList *group,
|
|
|
|
const gchar *label)
|
|
|
|
{
|
|
|
|
GtkWidget *radio_button;
|
|
|
|
GtkWidget *label_widget;
|
|
|
|
|
|
|
|
radio_button = gtk_radio_button_new (group);
|
|
|
|
label_widget = gtk_label_new (label);
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label_widget), 0.0, 0.5);
|
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (radio_button), label_widget);
|
|
|
|
gtk_widget_show (label_widget);
|
|
|
|
|
|
|
|
return radio_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_radio_button_new_from_widget (GtkRadioButton *group)
|
|
|
|
{
|
|
|
|
GSList *l = NULL;
|
|
|
|
if (group)
|
|
|
|
l = gtk_radio_button_group (group);
|
|
|
|
return gtk_radio_button_new (l);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget*
|
|
|
|
gtk_radio_button_new_with_label_from_widget (GtkRadioButton *group,
|
|
|
|
const gchar *label)
|
|
|
|
{
|
|
|
|
GSList *l = NULL;
|
|
|
|
if (group)
|
|
|
|
l = gtk_radio_button_group (group);
|
|
|
|
return gtk_radio_button_new_with_label (l, label);
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList*
|
|
|
|
gtk_radio_button_group (GtkRadioButton *radio_button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (radio_button != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GTK_IS_RADIO_BUTTON (radio_button), NULL);
|
|
|
|
|
|
|
|
return radio_button->group;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_radio_button_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
GtkRadioButton *radio_button;
|
|
|
|
GtkRadioButton *tmp_button;
|
|
|
|
GSList *tmp_list;
|
|
|
|
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_RADIO_BUTTON (object));
|
|
|
|
|
|
|
|
radio_button = GTK_RADIO_BUTTON (object);
|
|
|
|
|
|
|
|
radio_button->group = g_slist_remove (radio_button->group, radio_button);
|
|
|
|
tmp_list = radio_button->group;
|
|
|
|
|
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
tmp_button = tmp_list->data;
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
|
|
|
|
tmp_button->group = radio_button->group;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
|
|
|
(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_radio_button_clicked (GtkButton *button)
|
|
|
|
{
|
|
|
|
GtkToggleButton *toggle_button;
|
|
|
|
GtkRadioButton *radio_button;
|
|
|
|
GtkToggleButton *tmp_button;
|
|
|
|
GtkStateType new_state;
|
|
|
|
GSList *tmp_list;
|
|
|
|
gint toggled;
|
|
|
|
|
|
|
|
g_return_if_fail (button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_RADIO_BUTTON (button));
|
|
|
|
|
|
|
|
radio_button = GTK_RADIO_BUTTON (button);
|
|
|
|
toggle_button = GTK_TOGGLE_BUTTON (button);
|
|
|
|
toggled = FALSE;
|
|
|
|
|
|
|
|
if (toggle_button->active)
|
|
|
|
{
|
|
|
|
tmp_button = NULL;
|
|
|
|
tmp_list = radio_button->group;
|
|
|
|
|
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
tmp_button = tmp_list->data;
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
|
|
|
|
if (tmp_button->active && (tmp_button != toggle_button))
|
|
|
|
break;
|
|
|
|
|
|
|
|
tmp_button = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tmp_button)
|
|
|
|
{
|
|
|
|
new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_ACTIVE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
toggled = TRUE;
|
|
|
|
toggle_button->active = !toggle_button->active;
|
|
|
|
new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_NORMAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
toggled = TRUE;
|
|
|
|
toggle_button->active = !toggle_button->active;
|
|
|
|
|
|
|
|
tmp_list = radio_button->group;
|
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
tmp_button = tmp_list->data;
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
|
|
|
|
if (tmp_button->active && (tmp_button != toggle_button))
|
|
|
|
{
|
|
|
|
gtk_button_clicked (GTK_BUTTON (tmp_button));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_ACTIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GTK_WIDGET_STATE (button) != new_state)
|
|
|
|
gtk_widget_set_state (GTK_WIDGET (button), new_state);
|
|
|
|
if (toggled)
|
|
|
|
gtk_toggle_button_toggled (toggle_button);
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (button));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
|
|
|
|
GdkRectangle *area)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkButton *button;
|
|
|
|
GtkToggleButton *toggle_button;
|
|
|
|
GtkStateType state_type;
|
|
|
|
GtkShadowType shadow_type;
|
1998-02-17 06:03:40 +00:00
|
|
|
GdkRectangle restrict_area;
|
|
|
|
GdkRectangle new_area;
|
1997-11-24 22:37:52 +00:00
|
|
|
gint width, height;
|
|
|
|
gint x, y;
|
|
|
|
|
|
|
|
g_return_if_fail (check_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_RADIO_BUTTON (check_button));
|
|
|
|
|
|
|
|
if (GTK_WIDGET_VISIBLE (check_button) && GTK_WIDGET_MAPPED (check_button))
|
|
|
|
{
|
|
|
|
widget = GTK_WIDGET (check_button);
|
|
|
|
button = GTK_BUTTON (check_button);
|
|
|
|
toggle_button = GTK_TOGGLE_BUTTON (check_button);
|
|
|
|
|
|
|
|
state_type = GTK_WIDGET_STATE (widget);
|
|
|
|
if ((state_type != GTK_STATE_NORMAL) &&
|
|
|
|
(state_type != GTK_STATE_PRELIGHT))
|
|
|
|
state_type = GTK_STATE_NORMAL;
|
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
restrict_area.x = widget->allocation.x + GTK_CONTAINER (widget)->border_width;
|
|
|
|
restrict_area.y = widget->allocation.y + GTK_CONTAINER (widget)->border_width;
|
|
|
|
restrict_area.width = widget->allocation.width - ( 2 * GTK_CONTAINER (widget)->border_width);
|
|
|
|
restrict_area.height = widget->allocation.height - ( 2 * GTK_CONTAINER (widget)->border_width);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-17 06:03:40 +00:00
|
|
|
if (gdk_rectangle_intersect (area, &restrict_area, &new_area))
|
|
|
|
{
|
1998-11-06 22:05:02 +00:00
|
|
|
if (state_type != GTK_STATE_NORMAL)
|
|
|
|
gtk_paint_flat_box(widget->style, widget->window, state_type,
|
|
|
|
GTK_SHADOW_ETCHED_OUT,
|
|
|
|
area, widget, "radiobutton",
|
|
|
|
new_area.x, new_area.y,
|
|
|
|
new_area.width, new_area.height);
|
1998-02-17 06:03:40 +00:00
|
|
|
}
|
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
x = widget->allocation.x + CHECK_BUTTON_CLASS (widget)->indicator_spacing + GTK_CONTAINER (widget)->border_width;
|
|
|
|
y = widget->allocation.y + (widget->allocation.height - CHECK_BUTTON_CLASS (widget)->indicator_size) / 2;
|
1997-11-24 22:37:52 +00:00
|
|
|
width = CHECK_BUTTON_CLASS (widget)->indicator_size;
|
|
|
|
height = CHECK_BUTTON_CLASS (widget)->indicator_size;
|
1998-11-06 22:05:02 +00:00
|
|
|
|
1998-03-26 21:57:45 +00:00
|
|
|
if (GTK_TOGGLE_BUTTON (widget)->active)
|
1997-11-24 22:37:52 +00:00
|
|
|
shadow_type = GTK_SHADOW_IN;
|
|
|
|
else
|
|
|
|
shadow_type = GTK_SHADOW_OUT;
|
1998-11-06 22:05:02 +00:00
|
|
|
|
|
|
|
gtk_paint_option (widget->style, widget->window,
|
1997-11-24 22:37:52 +00:00
|
|
|
GTK_WIDGET_STATE (widget), shadow_type,
|
1998-11-06 22:05:02 +00:00
|
|
|
area, widget, "radiobutton",
|
1997-11-24 22:37:52 +00:00
|
|
|
x, y, width, height);
|
|
|
|
}
|
|
|
|
}
|