diff options
author | Stefano Karapetsas <[email protected]> | 2014-06-26 10:14:46 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-06-26 10:14:46 +0200 |
commit | 1d630a530de8cafd7f4dc1a0a225a0fa335893de (patch) | |
tree | 0ecef65b3f546d302e62044ee11b01356fe9a46c /libmate-desktop/mate-colorbutton.h | |
parent | 1d7eccd9994ca9f3ecb7d6f27043b84e6886088b (diff) | |
download | mate-desktop-1d630a530de8cafd7f4dc1a0a225a0fa335893de.tar.bz2 mate-desktop-1d630a530de8cafd7f4dc1a0a225a0fa335893de.tar.xz |
MateColorButton: Add function to get/set rgba color for GTK3
Diffstat (limited to 'libmate-desktop/mate-colorbutton.h')
-rw-r--r-- | libmate-desktop/mate-colorbutton.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libmate-desktop/mate-colorbutton.h b/libmate-desktop/mate-colorbutton.h index 2eeebc1..9bb0686 100644 --- a/libmate-desktop/mate-colorbutton.h +++ b/libmate-desktop/mate-colorbutton.h @@ -81,10 +81,18 @@ GtkWidget *mate_color_button_new (void); GtkWidget *mate_color_button_new_with_color (const GdkColor *color); void mate_color_button_set_color (MateColorButton *color_button, const GdkColor *color); +#if GTK_CHECK_VERSION(3, 0, 0) +void mate_color_button_set_rgba (MateColorButton *color_button, + const GdkRGBA *color); +#endif void mate_color_button_set_alpha (MateColorButton *color_button, guint16 alpha); void mate_color_button_get_color (MateColorButton *color_button, GdkColor *color); +#if GTK_CHECK_VERSION(3, 0, 0) +void mate_color_button_get_rgba (MateColorButton *color_button, + GdkRGBA *color); +#endif guint16 mate_color_button_get_alpha (MateColorButton *color_button); void mate_color_button_set_use_alpha (MateColorButton *color_button, gboolean use_alpha); |