From 56b59ced4437300d56b7e2f1d5061f06c0a266f5 Mon Sep 17 00:00:00 2001 From: infirit Date: Tue, 7 Jul 2015 00:01:04 +0200 Subject: Gtk3: Use GdkRGBA --- sensors-applet/active-sensor.h | 4 ++++ sensors-applet/sensor-config-dialog.c | 26 ++++++++++++++++++++++---- 2 files changed, 26 insertions(+), 4 deletions(-) (limited to 'sensors-applet') diff --git a/sensors-applet/active-sensor.h b/sensors-applet/active-sensor.h index 7258515..3147367 100644 --- a/sensors-applet/active-sensor.h +++ b/sensors-applet/active-sensor.h @@ -36,7 +36,11 @@ struct _ActiveSensor { GtkWidget *graph; GtkWidget *graph_frame; +#if GTK_CHECK_VERSION (3, 0, 0) + GdkRGBA graph_color; +#else GdkColor graph_color; +#endif GtkTreeRowReference *sensor_row; diff --git a/sensors-applet/sensor-config-dialog.c b/sensors-applet/sensor-config-dialog.c index bb76da6..efda54b 100644 --- a/sensors-applet/sensor-config-dialog.c +++ b/sensors-applet/sensor-config-dialog.c @@ -324,14 +324,25 @@ static void sensor_config_dialog_graph_color_set(GtkColorButton *color_button, GtkTreePath *path; GtkTreeIter iter; GtkWidget *content_area; - GdkColor color; gchar *color_string; +#if GTK_CHECK_VERSION (3, 0, 0) + GdkRGBA color; + + gtk_color_button_get_rgba(color_button, + &color); + + color_string = g_strdup_printf ("#%02X%02X%02X", (int)(0.5 + CLAMP (color.red, 0., 1.) * 255.), + (int)(0.5 + CLAMP (color.green, 0., 1.) * 255.), + (int)(0.5 + CLAMP (color.blue, 0., 1.) * 255.)); +#else + GdkColor color; gtk_color_button_get_color(color_button, &color); color_string = g_strdup_printf("#%02X%02X%02X", color.red / 256, color.green / 256, color.blue / 256); +#endif gtk_tree_selection_get_selected(config_dialog->sensors_applet->selection, &model, @@ -361,7 +372,11 @@ void sensor_config_dialog_create(SensorsApplet *sensors_applet) { IconType count; GdkPixbuf *pixbuf; +#if GTK_CHECK_VERSION (3, 0, 0) + GdkRGBA graph_color; +#else GdkColor graph_color; +#endif gchar *sensor_label; gchar *header_text; @@ -427,10 +442,13 @@ void sensor_config_dialog_create(SensorsApplet *sensors_applet) { g_free(header_text); - gdk_color_parse(graph_color_string, - &graph_color); - +#if GTK_CHECK_VERSION (3, 0, 0) + gdk_rgba_parse(&graph_color, graph_color_string); + config_dialog->graph_color_button = GTK_COLOR_BUTTON(gtk_color_button_new_with_rgba(&graph_color)); +#else + gdk_color_parse(graph_color_string, &graph_color); config_dialog->graph_color_button = GTK_COLOR_BUTTON(gtk_color_button_new_with_color(&graph_color)); +#endif config_dialog->graph_color_button_aligner = g_object_new(GTK_TYPE_ALIGNMENT, "child", config_dialog->graph_color_button, "xalign", 0.0, -- cgit v1.2.1