Method
GimpUiIntComboBoxset_sensitivity
since: 2.4
Declaration [src]
void
gimp_int_combo_box_set_sensitivity (
  GimpIntComboBox* combo_box,
  GimpIntSensitivityFunc func,
  gpointer data,
  GDestroyNotify destroy
)
Description [src]
Sets a function that is used to decide about the sensitivity of
rows in the combo_box. Use this if you want to set certain rows insensitive.
Calling gtk_widget_queue_draw() on the combo_box will cause the
sensitivity to be updated.
Available since: 2.4
Parameters
- func
- 
            Type: GimpIntSensitivityFuncA function that returns a boolean value, or NULLto unset.
- data
- 
            Type: gpointerData to pass to func.The argument can be NULL.The data is owned by the caller of the method. 
- destroy
- 
            Type: GDestroyNotifyDestroy notification for data.