GimpUi.enum_radio_frame_new_with_range

function enum_radio_frame_new_with_range(enum_type: GObject.Type, minimum: Number(gint), maximum: Number(gint), label_widget: Gtk.Widget, callback: GObject.Callback): [return_value: Gtk.Widget, first_button: Gtk.Widget] {
    // Gjs wrapper for gimp_enum_radio_frame_new_with_range()
}
  

Calls GimpUi.enum_radio_box_new_with_range and puts the resulting vertical box into a Gtk.Frame.

Since 2.4

enum_type

the GLib.Type of an enum.

minimum

the minimum enum value

maximum

the maximum enum value

label_widget

a widget to put into the frame that will hold the radio box.

callback

a callback to connect to the "toggled" signal of each Gtk.RadioButton that is created.

return_value

a new Gtk.Frame holding a group of Gtk.RadioButtons.

first_button

Returns the first button in the created group.