From 352600f12126c2f974a2510dfb744ba4f562da3f Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 23 Jan 2017 10:18:44 +0100 Subject: status-notifier: Move GTK compatibility code inline --- .../notification_area/status-notifier/Makefile.am | 3 - .../status-notifier/sn-compat-gtk-3.16.h | 40 -------- .../status-notifier/sn-compat-gtk-3.22.h | 102 --------------------- .../status-notifier/sn-compat-gtk.h | 24 ----- .../status-notifier/sn-image-menu-item.c | 6 +- .../notification_area/status-notifier/sn-item.c | 67 +++++++++++++- 6 files changed, 69 insertions(+), 173 deletions(-) delete mode 100644 applets/notification_area/status-notifier/sn-compat-gtk-3.16.h delete mode 100644 applets/notification_area/status-notifier/sn-compat-gtk-3.22.h delete mode 100644 applets/notification_area/status-notifier/sn-compat-gtk.h (limited to 'applets/notification_area/status-notifier') diff --git a/applets/notification_area/status-notifier/Makefile.am b/applets/notification_area/status-notifier/Makefile.am index 0b273824..38585c5d 100644 --- a/applets/notification_area/status-notifier/Makefile.am +++ b/applets/notification_area/status-notifier/Makefile.am @@ -14,9 +14,6 @@ AM_CPPFLAGS = \ AM_CFLAGS = $(WARN_CFLAGS) libstatus_notifier_la_SOURCES = \ - sn-compat-gtk.h \ - sn-compat-gtk-3.16.h \ - sn-compat-gtk-3.22.h \ sn-dbus-menu.c \ sn-dbus-menu.h \ sn-dbus-menu-item.c \ diff --git a/applets/notification_area/status-notifier/sn-compat-gtk-3.16.h b/applets/notification_area/status-notifier/sn-compat-gtk-3.16.h deleted file mode 100644 index 6cf7c7b8..00000000 --- a/applets/notification_area/status-notifier/sn-compat-gtk-3.16.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (C) 2016 Colomban Wendling - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef SN_COMPAT_GTK_3_16_H -#define SN_COMPAT_GTK_3_16_H - -#include - -#if ! GTK_CHECK_VERSION (3, 16, 0) - -G_BEGIN_DECLS - - -static inline void -sn_compat_gtk_label_set_xalign (GtkLabel *label, - gfloat xalign) -{ - g_object_set (label, "xalign", xalign, NULL); -} -#define gtk_label_set_xalign sn_compat_gtk_label_set_xalign - - -G_END_DECLS - -#endif /* GTK version */ -#endif diff --git a/applets/notification_area/status-notifier/sn-compat-gtk-3.22.h b/applets/notification_area/status-notifier/sn-compat-gtk-3.22.h deleted file mode 100644 index 1f05519b..00000000 --- a/applets/notification_area/status-notifier/sn-compat-gtk-3.22.h +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright (C) 2016 Colomban Wendling - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef SN_COMPAT_GTK_3_22_H -#define SN_COMPAT_GTK_3_22_H - -#include - -#include "sn-compat-gtk.h" - -#if ! GTK_CHECK_VERSION (3, 22, 0) - -G_BEGIN_DECLS - - -static inline void -sn_compat_gtk_menu_popup_at_widget_position_func (GtkMenu *menu, - gint *x, - gint *y, - gboolean *push_in, - gpointer widget) -{ - GtkAllocation widget_alloc; - GtkRequisition menu_req; - GdkWindow *window; - GdkScreen *screen; - gint monitor_num; - GdkRectangle monitor; - - gtk_widget_get_allocation (widget, &widget_alloc); - gtk_widget_get_preferred_size (GTK_WIDGET (menu), &menu_req, NULL); - - window = gtk_widget_get_window (widget); - gdk_window_get_origin (window, x, y); - - *x += widget_alloc.x; - *y += widget_alloc.y; - - screen = gtk_widget_get_screen (widget); - monitor_num = gdk_screen_get_monitor_at_point (screen, *x, *y); - gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); - - /* put the menu on the left if we can't put it on the right */ - if (*x + menu_req.width > monitor.x + monitor.width) - *x -= menu_req.width - widget_alloc.width; - /* and push it back in if all else failed */ - if (*x < monitor.x) - *x = monitor.x; - - /* put the menu above if we can't put it below */ - if (*y + widget_alloc.height + menu_req.height > monitor.y + monitor.height) - *y -= menu_req.height; - else - *y += widget_alloc.height; -} - -/* WARNING: Only supports anchoring the menu northwest to the widget - * southwest. */ -static inline void -sn_compat_gtk_menu_popup_at_widget (GtkMenu *menu, - GtkWidget *widget, - GdkGravity widget_anchor, - GdkGravity menu_anchor, - const GdkEvent *trigger_event) -{ - guint button = 0; - - g_warn_if_fail (widget_anchor == GDK_GRAVITY_SOUTH_WEST); - g_warn_if_fail (menu_anchor == GDK_GRAVITY_NORTH_WEST); - - if (! trigger_event) - trigger_event = gtk_get_current_event (); - - g_return_if_fail (trigger_event != NULL); - - gdk_event_get_button (trigger_event, &button); - - gtk_menu_popup (menu, NULL, NULL, - sn_compat_gtk_menu_popup_at_widget_position_func, - widget, button, gdk_event_get_time (trigger_event)); -} -#define gtk_menu_popup_at_widget sn_compat_gtk_menu_popup_at_widget - - -G_END_DECLS - -#endif /* GTK version */ -#endif diff --git a/applets/notification_area/status-notifier/sn-compat-gtk.h b/applets/notification_area/status-notifier/sn-compat-gtk.h deleted file mode 100644 index b3640f12..00000000 --- a/applets/notification_area/status-notifier/sn-compat-gtk.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (C) 2016 Colomban Wendling - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef SN_COMPAT_GTK_H -#define SN_COMPAT_GTK_H - -#include "sn-compat-gtk-3.16.h" -#include "sn-compat-gtk-3.22.h" - -#endif diff --git a/applets/notification_area/status-notifier/sn-image-menu-item.c b/applets/notification_area/status-notifier/sn-image-menu-item.c index 117ba9c3..412ba11e 100644 --- a/applets/notification_area/status-notifier/sn-image-menu-item.c +++ b/applets/notification_area/status-notifier/sn-image-menu-item.c @@ -17,8 +17,6 @@ #include "config.h" -#include "sn-compat-gtk.h" - #include "sn-image-menu-item.h" #define SPACING 6 @@ -175,7 +173,11 @@ sn_image_menu_item_init (SnImageMenuItem *item) item->accel_label = gtk_accel_label_new (""); gtk_box_pack_end (GTK_BOX (item->box), item->accel_label, TRUE, TRUE, 0); +#if GTK_CHECK_VERSION (3, 16, 0) gtk_label_set_xalign (GTK_LABEL (item->accel_label), 0.0); +#else + gtk_misc_set_alignment (GTK_MISC (item->accel_label), 0.0, 0.5); +#endif gtk_widget_show (item->accel_label); accel_label = GTK_ACCEL_LABEL (item->accel_label); diff --git a/applets/notification_area/status-notifier/sn-item.c b/applets/notification_area/status-notifier/sn-item.c index 3a849f91..654bb291 100644 --- a/applets/notification_area/status-notifier/sn-item.c +++ b/applets/notification_area/status-notifier/sn-item.c @@ -17,8 +17,6 @@ #include "config.h" -#include "sn-compat-gtk.h" - #include "sn-dbus-menu.h" #include "sn-item.h" @@ -184,6 +182,49 @@ sn_item_get_action_coordinates (SnItem *item, *x += width; } +#if ! GTK_CHECK_VERSION (3, 22, 0) +static void +sn_item_popup_menu_position_func (GtkMenu *menu, + gint *x, + gint *y, + gboolean *push_in, + gpointer widget) +{ + GtkAllocation widget_alloc; + GtkRequisition menu_req; + GdkWindow *window; + GdkScreen *screen; + gint monitor_num; + GdkRectangle monitor; + + gtk_widget_get_allocation (widget, &widget_alloc); + gtk_widget_get_preferred_size (GTK_WIDGET (menu), &menu_req, NULL); + + window = gtk_widget_get_window (widget); + gdk_window_get_origin (window, x, y); + + *x += widget_alloc.x; + *y += widget_alloc.y; + + screen = gtk_widget_get_screen (widget); + monitor_num = gdk_screen_get_monitor_at_point (screen, *x, *y); + gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); + + /* put the menu on the left if we can't put it on the right */ + if (*x + menu_req.width > monitor.x + monitor.width) + *x -= menu_req.width - widget_alloc.width; + /* and push it back in if all else failed */ + if (*x < monitor.x) + *x = monitor.x; + + /* put the menu above if we can't put it below */ + if (*y + widget_alloc.height + menu_req.height > monitor.y + monitor.height) + *y -= menu_req.height; + else + *y += widget_alloc.height; +} +#endif + static gboolean sn_item_button_press_event (GtkWidget *widget, GdkEventButton *event) @@ -214,10 +255,16 @@ sn_item_button_press_event (GtkWidget *widget, { if (priv->menu != NULL) { +#if GTK_CHECK_VERSION (3, 22, 0) gtk_menu_popup_at_widget (priv->menu, widget, GDK_GRAVITY_SOUTH_WEST, GDK_GRAVITY_NORTH_WEST, (GdkEvent *) event); +#else + gtk_menu_popup (priv->menu, NULL, NULL, + sn_item_popup_menu_position_func, widget, + event->button, event->time); +#endif } else { @@ -248,10 +295,26 @@ sn_item_popup_menu (GtkWidget *widget) if (priv->menu != NULL) { +#if GTK_CHECK_VERSION (3, 22, 0) gtk_menu_popup_at_widget (priv->menu, widget, GDK_GRAVITY_SOUTH_WEST, GDK_GRAVITY_NORTH_WEST, NULL); +#else + guint button = 0; + guint32 active_time = GDK_CURRENT_TIME; + GdkEvent *event = gtk_get_current_event (); + + if (event) + { + gdk_event_get_button (event, &button); + active_time = gdk_event_get_time (event); + } + + gtk_menu_popup (priv->menu, NULL, NULL, + sn_item_popup_menu_position_func, widget, + button, active_time); +#endif } else { -- cgit v1.2.1