[ CCode ( cname = "gimp_prop_enum_radio_frame_new" ) ]
[ Version ( since = "2.4" ) ]
public Widget prop_enum_radio_frame_new (Object config, string property_name, string? title, int minimum, int maximum)
Creates a group of radio buttons which function to set and display the specified enum property.
The minimum and maximum arguments allow only a subset of the enum to be used. If the two arguments are equal (
e.g., 0, 0), then the full range of the enum will be used. If title is null, the
property_name's nick will be used as label of the returned frame.
| config |
Object to which property is attached. |
| property_name |
Name of enum property controlled by the radio buttons. |
| title |
Label for the frame holding the buttons |
| minimum |
Smallest value of enum to be included. |
| maximum |
Largest value of enum to be included. |
|
A Frame containing the radio buttons. |