| Top | Description | Object Hierarchy | Implemented Interfaces | Properties | Signals |
Synopsis
#include <gtk/gtk.h> struct GtkColorButton; GtkWidget * gtk_color_button_new (void); GtkWidget * gtk_color_button_new_with_color (const GdkColor *color); GtkWidget * gtk_color_button_new_with_rgba (const GdkRGBA *rgba); void gtk_color_button_set_color (GtkColorButton *button,const GdkColor *color); void gtk_color_button_get_color (GtkColorButton *button,GdkColor *color); void gtk_color_button_set_alpha (GtkColorButton *button,guint16 alpha); guint16 gtk_color_button_get_alpha (GtkColorButton *button); void gtk_color_button_set_rgba (GtkColorButton *button,const GdkRGBA *rgba); void gtk_color_button_get_rgba (GtkColorButton *button,GdkRGBA *rgba); void gtk_color_button_set_use_alpha (GtkColorButton *button,gboolean use_alpha); gboolean gtk_color_button_get_use_alpha (GtkColorButton *button); void gtk_color_button_set_title (GtkColorButton *button,const gchar *title); const gchar * gtk_color_button_get_title (GtkColorButton *button);
Object Hierarchy
GObject
+----GInitiallyUnowned
+----GtkWidget
+----GtkContainer
+----GtkBin
+----GtkButton
+----GtkColorButton
Implemented Interfaces
GtkColorButton implements AtkImplementorIface, GtkBuildable, GtkActionable, GtkActivatable and GtkColorChooser.
Properties
"alpha" guint : Read / Write "color" GdkColor* : Read / Write "rgba" GdkRGBA* : Read / Write "title" gchar* : Read / Write "use-alpha" gboolean : Read / Write
Description
The GtkColorButton is a button which displays the currently selected color an allows to open a color selection dialog to change the color. It is suitable widget for selecting a color in a preference dialog.
Details
gtk_color_button_new ()
GtkWidget * gtk_color_button_new (void);
Creates a new color button.
This returns a widget in the form of a small button containing a swatch representing the current selected color. When the button is clicked, a color-selection dialog will open, allowing the user to select a color. The swatch will be updated to reflect the new color when the user finishes.
Returns : |
a new color button |
Since 2.4
gtk_color_button_new_with_color ()
GtkWidget * gtk_color_button_new_with_color (const GdkColor *color);
Warning
gtk_color_button_new_with_color has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_button_new_with_rgba() instead.
Creates a new color button.
|
A GdkColor to set the current color with |
Returns : |
a new color button |
Since 2.4
gtk_color_button_new_with_rgba ()
GtkWidget * gtk_color_button_new_with_rgba (const GdkRGBA *rgba);
Creates a new color button.
|
A GdkRGBA to set the current color with |
Returns : |
a new color button |
Since 3.0
gtk_color_button_set_color ()
void gtk_color_button_set_color (GtkColorButton *button,const GdkColor *color);
Warning
gtk_color_button_set_color is deprecated and should not be used in newly-written code. Use gtk_color_chooser_set_rgba() instead.
Sets the current color to be color.
|
a GtkColorButton |
|
A GdkColor to set the current color with |
Since 2.4
gtk_color_button_get_color ()
void gtk_color_button_get_color (GtkColorButton *button,GdkColor *color);
Warning
gtk_color_button_get_color has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_get_rgba() instead.
Sets color to be the current color in the GtkColorButton widget.
|
a GtkColorButton |
|
a GdkColor to fill in with the current color. [out] |
Since 2.4
gtk_color_button_set_alpha ()
void gtk_color_button_set_alpha (GtkColorButton *button,guint16 alpha);
Warning
gtk_color_button_set_alpha has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_set_rgba() instead.
Sets the current opacity to be alpha.
|
a GtkColorButton |
|
an integer between 0 and 65535 |
Since 2.4
gtk_color_button_get_alpha ()
guint16 gtk_color_button_get_alpha (GtkColorButton *button);
Warning
gtk_color_button_get_alpha has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_get_rgba() instead.
Returns the current alpha value.
|
a GtkColorButton |
Returns : |
an integer between 0 and 65535 |
Since 2.4
gtk_color_button_set_rgba ()
void gtk_color_button_set_rgba (GtkColorButton *button,const GdkRGBA *rgba);
Warning
gtk_color_button_set_rgba has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_set_rgba() instead.
Sets the current color to be rgba.
|
a GtkColorButton |
|
a GdkRGBA to set the current color with |
Since 3.0
gtk_color_button_get_rgba ()
void gtk_color_button_get_rgba (GtkColorButton *button,GdkRGBA *rgba);
Warning
gtk_color_button_get_rgba has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_get_rgba() instead.
Sets rgba to be the current color in the GtkColorButton widget.
|
a GtkColorButton |
|
a GdkRGBA to fill in with the current color. [out] |
Since 3.0
gtk_color_button_set_use_alpha ()
void gtk_color_button_set_use_alpha (GtkColorButton *button,gboolean use_alpha);
Warning
gtk_color_button_set_use_alpha has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_set_use_alpha() instead.
Sets whether or not the color button should use the alpha channel.
|
a GtkColorButton |
|
TRUE if color button should use alpha channel, FALSE if not |
Since 2.4
gtk_color_button_get_use_alpha ()
gboolean gtk_color_button_get_use_alpha (GtkColorButton *button);
Warning
gtk_color_button_get_use_alpha has been deprecated since version 3.4 and should not be used in newly-written code. Use gtk_color_chooser_get_use_alpha() instead.
Does the color selection dialog use the alpha channel ?
|
a GtkColorButton |
Returns : |
TRUE if the color sample uses alpha channel, FALSE if not |
Since 2.4
gtk_color_button_set_title ()
void gtk_color_button_set_title (GtkColorButton *button,const gchar *title);
Sets the title for the color selection dialog.
|
a GtkColorButton |
|
String containing new window title |
Since 2.4
gtk_color_button_get_title ()
const gchar * gtk_color_button_get_title (GtkColorButton *button);
Gets the title of the color selection dialog.
|
a GtkColorButton |
Returns : |
An internal string, do not free the return value |
Since 2.4
Property Details
The "alpha" property
"alpha" guint : Read / Write
The selected opacity value (0 fully transparent, 65535 fully opaque).
Allowed values: <= 65535
Default value: 65535
Since 2.4
The "color" property
"color" GdkColor* : Read / Write
Warning
GtkColorButton:color has been deprecated since version 3.4 and should not be used in newly-written code. Use "rgba" instead.
The selected color.
Since 2.4
The "title" property
"title" gchar* : Read / Write
The title of the color selection dialog
Default value: "Pick a Color"
Since 2.4
Signal Details
The "color-set" signal
void user_function (GtkColorButton *widget,
gpointer user_data) : Run First
The ::color-set signal is emitted when the user selects a color.
When handling this signal, use gtk_color_button_get_rgba() to
find out which color was just selected.
Note that this signal is only emitted when the user changes the color. If you need to react to programmatic color changes as well, use the notify::color signal.
|
the object which received the signal. |
|
user data set when the signal handler was connected. |
Since 2.4

