From 3c57dd931145d43f2b0aef96c4d178135956bf91 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 05:13:10 +0200 Subject: Adding upstream version 2.10.36. Signed-off-by: Daniel Baumann --- .../libgimp/html/libgimp-gimpgradientmenu.html | 187 +++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 devel-docs/libgimp/html/libgimp-gimpgradientmenu.html (limited to 'devel-docs/libgimp/html/libgimp-gimpgradientmenu.html') diff --git a/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html b/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html new file mode 100644 index 0000000..7d710f6 --- /dev/null +++ b/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html @@ -0,0 +1,187 @@ + + + + +gimpgradientmenu: GIMP Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

gimpgradientmenu

+

gimpgradientmenu — A widget for selecting gradients.

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + +
+GtkWidget * + +gimp_gradient_select_widget_new () +
+void + +gimp_gradient_select_widget_close () +
+void + +gimp_gradient_select_widget_set () +
+
+
+

Description

+

A widget for selecting gradients.

+
+
+

Functions

+
+

gimp_gradient_select_widget_new ()

+
GtkWidget *
+gimp_gradient_select_widget_new (const gchar *title,
+                                 const gchar *gradient_name,
+                                 GimpRunGradientCallback callback,
+                                 gpointer data);
+

gimp_gradient_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 gradient. 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.

 

gradient_name

Initial gradient name.

 

callback

A function to call when the selected gradient 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_gradient_select_widget_close ()

+
void
+gimp_gradient_select_widget_close (GtkWidget *widget);
+

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

+

Closes the popup window associated with widget +.

+
+

Parameters

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

widget

A gradient select widget.

 
+
+
+
+
+

gimp_gradient_select_widget_set ()

+
void
+gimp_gradient_select_widget_set (GtkWidget *widget,
+                                 const gchar *gradient_name);
+

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

+

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

+
+

Parameters

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

widget

A gradient select widget.

 

gradient_name

Gradient name to set.

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