GimpUi.prop_enum_combo_box_new
@accepts(GObject.Object, unicode, int, int)
@returns(Gtk.Widget)
def prop_enum_combo_box_new(config, property_name, minimum, maximum):
# Python wrapper for gimp_prop_enum_combo_box_new()
Creates a GimpUi.IntComboBox widget to display and set the specified enum property. The @mimimum_value and @maximum_value give the possibility of restricting the allowed range to a subset of the enum. If the two values are equal (e.g., 0, 0), then the full range of the Enum is used.
Since 2.4
- config
Object to which property is attached.
- property_name
Name of enum property controlled by combo box.
- minimum
Smallest allowed value of enum.
- maximum
Largest allowed value of enum.
- Returns