Top |
gboolean | (*GimpItemConstraintFunc) () |
GtkWidget * | gimp_drawable_combo_box_new () |
GtkWidget * | gimp_channel_combo_box_new () |
GtkWidget * | gimp_layer_combo_box_new () |
GtkWidget * | gimp_vectors_combo_box_new () |
GObject ╰── GInitiallyUnowned ╰── GtkObject ╰── GtkWidget ╰── GtkContainer ╰── GtkBin ╰── GtkComboBox ╰── GimpIntComboBox ├── GimpChannelComboBox ├── GimpDrawableComboBox ├── GimpLayerComboBox ╰── GimpVectorsComboBox
GimpDrawableComboBox implements AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.
GimpChannelComboBox implements AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.
GimpLayerComboBox implements AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.
GimpVectorsComboBox implements AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.
gboolean (*GimpItemConstraintFunc) (gint32 image_id
,gint32 item_id
,gpointer data
);
GtkWidget * gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint
,gpointer data
);
Creates a new GimpIntComboBox filled with all currently opened
drawables. If a constraint
function is specified, it is called for
each drawable and only if the function returns TRUE
, the drawable
is added to the combobox.
You should use gimp_int_combo_box_connect()
to initialize and connect
the combo. Use gimp_int_combo_box_set_active()
to get the active
drawable ID and gimp_int_combo_box_get_active()
to retrieve the ID
of the selected drawable.
constraint |
a GimpDrawableConstraintFunc or |
|
data |
a pointer that is passed to |
Since: 2.2
GtkWidget * gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint
,gpointer data
);
Creates a new GimpIntComboBox filled with all currently opened
channels. See gimp_drawable_combo_box_new()
for more information.
constraint |
a GimpDrawableConstraintFunc or |
|
data |
a pointer that is passed to |
Since: 2.2
GtkWidget * gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint
,gpointer data
);
Creates a new GimpIntComboBox filled with all currently opened
layers. See gimp_drawable_combo_box_new()
for more information.
constraint |
a GimpDrawableConstraintFunc or |
|
data |
a pointer that is passed to |
Since: 2.2
GtkWidget * gimp_vectors_combo_box_new (GimpVectorsConstraintFunc constraint
,gpointer data
);
Creates a new GimpIntComboBox filled with all currently opened
vectors objects. If a constraint
function is specified, it is called for
each vectors object and only if the function returns TRUE
, the vectors
object is added to the combobox.
You should use gimp_int_combo_box_connect()
to initialize and connect
the combo. Use gimp_int_combo_box_set_active()
to set the active
vectors ID and gimp_int_combo_box_get_active()
to retrieve the ID
of the selected vectors object.
constraint |
a GimpVectorsConstraintFunc or |
|
data |
a pointer that is passed to |
Since: 2.4