summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-06-25 11:25:46 +0200
committerStefano Karapetsas <[email protected]>2014-06-25 11:25:46 +0200
commit4a769cc810d949623d9f489f244092407c924882 (patch)
tree38320d3a8751e27d8812818d85e0724a35a120f9
parente5beb2fdfe1a8b1ca103a8fa0a4afdaf3946aa90 (diff)
parent67613a6142a53f4bc633edc5732d6396d45a30d6 (diff)
downloadmate-panel-4a769cc810d949623d9f489f244092407c924882.tar.bz2
mate-panel-4a769cc810d949623d9f489f244092407c924882.tar.xz
Merge pull request #211 from rilian-la-te/remove_opacity_key_gtk3
Remove opacity key gtk3
-rw-r--r--mate-panel/panel-profile.c25
-rw-r--r--mate-panel/panel-properties-dialog.c5
2 files changed, 24 insertions, 6 deletions
diff --git a/mate-panel/panel-profile.c b/mate-panel/panel-profile.c
index 9d3b740d..d97c3354 100644
--- a/mate-panel/panel-profile.c
+++ b/mate-panel/panel-profile.c
@@ -23,6 +23,7 @@
*/
#include <config.h>
+#include <math.h>
#include "panel-profile.h"
#include "panel-layout.h"
@@ -243,8 +244,8 @@ panel_profile_set_background_color (PanelToplevel *toplevel,
panel_profile_set_background_gdk_rgba_color (toplevel, color);
#else
panel_profile_set_background_gdk_color (toplevel, &color->gdk);
-#endif
panel_profile_set_background_opacity (toplevel, color->alpha);
+#endif
}
void
@@ -257,7 +258,6 @@ panel_profile_get_background_color (PanelToplevel *toplevel,
{
#if GTK_CHECK_VERSION (3, 0, 0)
panel_profile_get_background_gdk_rgba_color (toplevel, color);
- color->alpha = panel_profile_get_background_opacity (toplevel) / 65535.0;
#else
panel_profile_get_background_gdk_color (toplevel, &(color->gdk));
color->alpha = panel_profile_get_background_opacity (toplevel);
@@ -289,6 +289,7 @@ panel_profile_get_background_gdk_rgba_color (PanelToplevel *toplevel,
color->red = 0.;
color->green = 0.;
color->blue = 0.;
+ color->alpha = 1.;
}
g_free (color_str);
@@ -331,15 +332,28 @@ void
panel_profile_set_background_opacity (PanelToplevel *toplevel,
guint16 opacity)
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GdkRGBA color;
+ panel_profile_get_background_color(toplevel,&color);
+ color.alpha=opacity/65535.0;
+ panel_profile_set_background_color(toplevel,&color);
+#else
g_settings_set_int (toplevel->background_settings, "opacity", opacity);
+#endif
}
guint16
panel_profile_get_background_opacity (PanelToplevel *toplevel)
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ GdkRGBA color;
+ panel_profile_get_background_color(toplevel,&color);
+ return (guint16)round(color.alpha*65535);
+#else
guint16 opacity;
opacity = g_settings_get_int (toplevel->background_settings, "opacity");
return opacity;
+#endif
}
void
@@ -557,6 +571,7 @@ get_background_color (PanelToplevel *toplevel,
color->red = 0;
color->green = 0;
color->blue = 0;
+ color->alpha = 1;
}
#else
if (!color_str || !gdk_color_parse (color_str, &(color->gdk))) {
@@ -567,9 +582,7 @@ get_background_color (PanelToplevel *toplevel,
#endif
g_free (color_str);
-#if GTK_CHECK_VERSION (3, 0, 0)
- color->alpha = g_settings_get_int (toplevel->background_settings, "opacity") / 65535.0;
-#else
+#if !GTK_CHECK_VERSION (3, 0, 0)
color->alpha = g_settings_get_int (toplevel->background_settings, "opacity");
#endif
}
@@ -911,10 +924,10 @@ panel_profile_background_change_notify (GSettings *settings,
if (gdk_color_parse (str, &gdk_color))
panel_background_set_gdk_color (background, &gdk_color);
g_free (str);
-#endif
} else if (!strcmp (key, "opacity")) {
panel_background_set_opacity (background,
g_settings_get_int (settings, key));
+#endif
} else if (!strcmp (key, "image")) {
gchar *value = g_settings_get_string (settings, key);
panel_background_set_image (background, value);
diff --git a/mate-panel/panel-properties-dialog.c b/mate-panel/panel-properties-dialog.c
index c451fb2f..c1bb735f 100644
--- a/mate-panel/panel-properties-dialog.c
+++ b/mate-panel/panel-properties-dialog.c
@@ -86,6 +86,8 @@ typedef struct {
static GQuark panel_properties_dialog_quark = 0;
+static void panel_properties_dialog_opacity_changed (PanelPropertiesDialog *dialog);
+
static void
panel_properties_dialog_free (PanelPropertiesDialog *dialog)
{
@@ -338,6 +340,7 @@ panel_properties_dialog_color_changed (PanelPropertiesDialog *dialog,
#if GTK_CHECK_VERSION (3, 0, 0)
gtk_color_button_get_rgba (color_button, &color);
panel_profile_set_background_gdk_rgba_color (dialog->toplevel, &color);
+ panel_properties_dialog_opacity_changed(dialog);
#else
gtk_color_button_get_color (color_button, &color);
panel_profile_set_background_gdk_color (dialog->toplevel, &color);
@@ -791,11 +794,13 @@ panel_properties_dialog_background_notify (GSettings *settings,
panel_properties_dialog_update_background_color (dialog, color);
g_free (color);
}
+#if !GTK_CHECK_VERSION(3, 0, 0)
else if (!strcmp (key, "opacity"))
{
gint opacity = g_settings_get_int (settings, key);
panel_properties_dialog_update_background_opacity (dialog, opacity);
}
+#endif
else if (!strcmp (key, "image"))
{
char *image = g_settings_get_string (settings, key);