32 #import "CoreGTK/CGTKRadioToolButton.h"
38 self = [
super initWithGObject:(GObject *)gtk_radio_tool_button_new(group)];
48 -(id)initFromStockWithGroup:(GSList*) group andStockId:(NSString*) stockId
50 self = [
super initWithGObject:(GObject *)gtk_radio_tool_button_new_from_stock(group, [stockId UTF8String])];
60 -(id)initFromWidget:(GtkRadioToolButton*) group
62 self = [
super initWithGObject:(GObject *)gtk_radio_tool_button_new_from_widget(group)];
72 -(id)initWithStockFromWidgetWithGroup:(GtkRadioToolButton*) group andStockId:(NSString*) stockId
74 self = [
super initWithGObject:(GObject *)gtk_radio_tool_button_new_with_stock_from_widget(group, [stockId UTF8String])];
86 return GTK_RADIO_TOOL_BUTTON([
self GOBJECT]);
91 return gtk_radio_tool_button_get_group(GTK_RADIO_TOOL_BUTTON([
self GOBJECT]));
94 -(void)setGroup:(GSList*) group
96 gtk_radio_tool_button_set_group(GTK_RADIO_TOOL_BUTTON([
self GOBJECT]), group);
id initWithGObject:(GObject *obj)