![]() |
![]() |
![]() |
GIMP Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
GtkWidget * gimp_brush_select_widget_new (const gchar *title, const gchar *brush_name, gdouble opacity, gint spacing, GimpLayerModeEffects paint_mode, GimpRunBrushCallback callback, gpointer data); void gimp_brush_select_widget_close (GtkWidget *widget); void gimp_brush_select_widget_set (GtkWidget *widget, const gchar *brush_name, gdouble opacity, gint spacing, GimpLayerModeEffects paint_mode);
GtkWidget * gimp_brush_select_widget_new (const gchar *title, const gchar *brush_name, gdouble opacity, gint spacing, GimpLayerModeEffects paint_mode, GimpRunBrushCallback callback, gpointer data);
gimp_brush_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 GimpBrush. This widget is suitable for placement in a table in a plug-in dialog.
|
Title of the dialog to use or NULL to use the default title.
|
|
Initial brush name or NULL to use current selection.
|
|
Initial opacity. -1 means to use current opacity. |
|
Initial spacing. -1 means to use current spacing. |
|
Initial paint mode. -1 means to use current paint mode. |
|
A function to call when the selected brush changes. |
|
A pointer to arbitary data to be used in the call to callback .
|
Returns : |
A GtkWidget that you can use in your UI. |
void gimp_brush_select_widget_close (GtkWidget *widget);
gimp_brush_select_widget_close
is deprecated and should not be used in newly-written code.
Closes the popup window associated with widget
.
|
A brush select widget. |
void gimp_brush_select_widget_set (GtkWidget *widget, const gchar *brush_name, gdouble opacity, gint spacing, GimpLayerModeEffects paint_mode);
gimp_brush_select_widget_set
is deprecated and should not be used in newly-written code.
Sets the current brush and other values for the brush select
widget. Calls the callback function if one was supplied in the
call to gimp_brush_select_widget_new()
.
|
A brush select widget. |
|
Brush name to set; NULL means no change.
|
|
Opacity to set. -1.0 means no change. |
|
Spacing to set. -1 means no change. |
|
Paint mode to set. -1 means no change. |