From e42129241681dde7adae7d20697e7b421682fbb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:23:22 +0200 Subject: Adding upstream version 2.10.22. Signed-off-by: Daniel Baumann --- devel-docs/libgimp/html/GimpImageComboBox.html | 163 +++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 devel-docs/libgimp/html/GimpImageComboBox.html (limited to 'devel-docs/libgimp/html/GimpImageComboBox.html') diff --git a/devel-docs/libgimp/html/GimpImageComboBox.html b/devel-docs/libgimp/html/GimpImageComboBox.html new file mode 100644 index 0000000..5aea5e2 --- /dev/null +++ b/devel-docs/libgimp/html/GimpImageComboBox.html @@ -0,0 +1,163 @@ + + + + +GimpImageComboBox: GIMP Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

GimpImageComboBox

+

GimpImageComboBox — A widget providing a popup menu of images.

+
+
+

Functions

+
++++ + + + + + + + + + + +
+gboolean + +(*GimpImageConstraintFunc) () +
+GtkWidget * + +gimp_image_combo_box_new () +
+
+
+

Types and Values

+
++++ + + + + +
 GimpImageComboBox
+
+
+

Object Hierarchy

+
    GObject
+    ╰── GInitiallyUnowned
+        ╰── GtkObject
+            ╰── GtkWidget
+                ╰── GtkContainer
+                    ╰── GtkBin
+                        ╰── GtkComboBox
+                            ╰── GimpIntComboBox
+                                ╰── GimpImageComboBox
+
+
+
+

Implemented Interfaces

+

+GimpImageComboBox implements + AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+
+
+

Description

+

A widget providing a popup menu of images.

+
+
+

Functions

+
+

GimpImageConstraintFunc ()

+
gboolean
+(*GimpImageConstraintFunc) (gint32 image_id,
+                            gpointer data);
+
+
+
+

gimp_image_combo_box_new ()

+
GtkWidget *
+gimp_image_combo_box_new (GimpImageConstraintFunc constraint,
+                          gpointer data);
+

Creates a new GimpIntComboBox filled with all currently opened +images. If a constraint + function is specified, it is called for +each image and only if the function returns TRUE, the image 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 image ID and gimp_int_combo_box_get_active() to retrieve the +ID of the selected image.

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

constraint

a GimpImageConstraintFunc or NULL

 

data

a pointer that is passed to constraint +

 
+
+
+

Returns

+

a new GimpIntComboBox.

+
+

Since: 2.2

+
+
+
+

Types and Values

+
+

GimpImageComboBox

+
typedef struct _GimpImageComboBox GimpImageComboBox;
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3