GimpUi.enum_radio_frame_new
@accepts(GType, Gtk.Widget, GObject.Callback, gpointer, GLib.DestroyNotify, Gtk.Widget)
@returns(Gtk.Widget)
def enum_radio_frame_new(enum_type, label_widget, callback, callback_data, callback_data_destroy, first_button):
# Python wrapper for gimp_enum_radio_frame_new()
Calls GimpUi.enum_radio_box_new and puts the resulting vbox into a Gtk.Frame.
Since 2.4
- enum_type
the GLib.Type of an enum.
- label_widget
a Gtk.Widget to use as label for the frame that will hold the radio box.
- callback
a callback to connect to the "toggled" signal of each Gtk.RadioButton that is created.
- callback_data
data to pass to the callback.
- callback_data_destroy
Destroy function for callback_data.
- first_button
Returns the first button in the created group.
- Returns