[ CCode ( cname = "gimp_procedure_dialog_fill_list" ) ]
public void fill_list (List<string>? properties)
Populate this with the widgets corresponding to every listed properties.
If the list is null, this will be filled by the whole list of properties of the associated Procedure, in the defined order:
gimp_procedure_dialog_fill_list (dialog, NULL);
Nevertheless if you only wish to display a partial list of properties, or if you wish to change the display order, then you have to give
an explicit list: gimp_procedure_dialog_fill (dialog, "property-1", "property-2", NULL);
Note: you do not have to call get_widget on every property before calling this function unless you want a given property to be represented by an alternative widget type. By default, each property will get a default representation according to its type.
| this |
the ProcedureDialog. |
| properties |
the list of property names. |