From d45dd88c9028fa69e543ded6909cd1da1a7ae842 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Wed, 3 Aug 2016 00:48:07 +0200 Subject: properties-dialog: drop usage of MateColorButton Use GtkColorButton instead --- mate-panel/panel-properties-dialog.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) (limited to 'mate-panel/panel-properties-dialog.c') diff --git a/mate-panel/panel-properties-dialog.c b/mate-panel/panel-properties-dialog.c index e3790fd5..490940a5 100644 --- a/mate-panel/panel-properties-dialog.c +++ b/mate-panel/panel-properties-dialog.c @@ -36,8 +36,6 @@ #include #include -#include - #include "nothing.h" #include "panel-profile.h" #include "panel-schemas.h" @@ -329,7 +327,7 @@ SETUP_TOGGLE_BUTTON ("arrows_toggle", arrows_toggle, enable_arrows, static void panel_properties_dialog_color_changed (PanelPropertiesDialog *dialog, - MateColorButton *color_button) + GtkColorButton *color_button) { #if GTK_CHECK_VERSION (3, 0, 0) GdkRGBA color; @@ -340,11 +338,11 @@ panel_properties_dialog_color_changed (PanelPropertiesDialog *dialog, g_assert (dialog->color_button == GTK_WIDGET (color_button)); #if GTK_CHECK_VERSION (3, 0, 0) - mate_color_button_get_rgba (color_button, &color); + gtk_color_button_get_rgba (color_button, &color); panel_profile_set_background_gdk_rgba (dialog->toplevel, &color); panel_properties_dialog_opacity_changed (dialog); #else - mate_color_button_get_color (color_button, &color); + gtk_color_button_get_color (color_button, &color); panel_profile_set_background_gdk_color (dialog->toplevel, &color); #endif } @@ -367,10 +365,10 @@ panel_properties_dialog_setup_color_button (PanelPropertiesDialog *dialog, panel_profile_get_background_color (dialog->toplevel, &color); #if GTK_CHECK_VERSION (3, 0, 0) - mate_color_button_set_rgba (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_set_rgba (GTK_COLOR_BUTTON (dialog->color_button), &color); #else - mate_color_button_set_color (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_set_color (GTK_COLOR_BUTTON (dialog->color_button), &(color.gdk)); #endif @@ -723,11 +721,11 @@ panel_properties_dialog_update_background_color (PanelPropertiesDialog *dialog, if (!gdk_rgba_parse (&new_color, str_color)) return; - mate_color_button_get_rgba (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_get_rgba (GTK_COLOR_BUTTON (dialog->color_button), &old_color); if (!gdk_rgba_equal (&old_color, &new_color)) - mate_color_button_set_rgba (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_set_rgba (GTK_COLOR_BUTTON (dialog->color_button), &new_color); #else GdkColor new_color = { 0, }; @@ -736,11 +734,11 @@ panel_properties_dialog_update_background_color (PanelPropertiesDialog *dialog, if (!gdk_color_parse (str_color, &new_color)) return; - mate_color_button_get_color (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_get_color (GTK_COLOR_BUTTON (dialog->color_button), &old_color); if (!gdk_color_equal (&old_color, &new_color)) - mate_color_button_set_color (MATE_COLOR_BUTTON (dialog->color_button), + gtk_color_button_set_color (GTK_COLOR_BUTTON (dialog->color_button), &new_color); #endif } -- cgit v1.2.1