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 --- .../libgimp/html/libgimp-gimppalettemenu.html | 189 +++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 devel-docs/libgimp/html/libgimp-gimppalettemenu.html (limited to 'devel-docs/libgimp/html/libgimp-gimppalettemenu.html') diff --git a/devel-docs/libgimp/html/libgimp-gimppalettemenu.html b/devel-docs/libgimp/html/libgimp-gimppalettemenu.html new file mode 100644 index 0000000..2106e3e --- /dev/null +++ b/devel-docs/libgimp/html/libgimp-gimppalettemenu.html @@ -0,0 +1,189 @@ + + + + +gimppalettemenu: GIMP Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

gimppalettemenu

+

gimppalettemenu — A widget for selecting palettes.

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + +
+GtkWidget * + +gimp_palette_select_widget_new () +
+void + +gimp_palette_select_widget_close () +
+void + +gimp_palette_select_widget_set () +
+
+
+

Description

+

A widget for selecting palettes.

+
+
+

Functions

+
+

gimp_palette_select_widget_new ()

+
GtkWidget *
+gimp_palette_select_widget_new (const gchar *title,
+                                const gchar *palette_name,
+                                GimpRunPaletteCallback callback,
+                                gpointer data);
+

gimp_palette_select_widget_new is deprecated and should not be used in newly-written code.

+

Creates a new GtkWidget that completely controls the selection of +a palette. This widget is suitable for placement in a table in a +plug-in dialog.

+
+

Parameters

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

title

Title of the dialog to use or NULL to use the default title.

 

palette_name

Initial palette name.

 

callback

A function to call when the selected palette changes.

 

data

A pointer to arbitrary data to be used in the call to callback +.

 
+
+
+

Returns

+

A GtkWidget that you can use in your UI.

+
+

Since: 2.2

+
+
+
+

gimp_palette_select_widget_close ()

+
void
+gimp_palette_select_widget_close (GtkWidget *widget);
+

gimp_palette_select_widget_close is deprecated and should not be used in newly-written code.

+

Closes the popup window associated with widget +.

+
+

Parameters

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

widget

A palette select widget.

 
+
+

Since: 2.2

+
+
+
+

gimp_palette_select_widget_set ()

+
void
+gimp_palette_select_widget_set (GtkWidget *widget,
+                                const gchar *palette_name);
+

gimp_palette_select_widget_set is deprecated and should not be used in newly-written code.

+

Sets the current palette for the palette select widget. Calls the +callback function if one was supplied in the call to +gimp_palette_select_widget_new().

+
+

Parameters

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

widget

A palette select widget.

 

palette_name

Palette name to set; NULL means no change.

 
+
+

Since: 2.2

+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3