From 10b38211e032738593dfe71176289c275956b476 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Thu, 7 Dec 2017 01:37:08 +0100 Subject: WidthOfScreen and HeightOfScreen implementation This commit reverts: https://github.com/mate-desktop/mate-panel/commit/7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height --- libmate-panel-applet/mate-panel-applet.c | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'libmate-panel-applet') diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c index b60ca71c..6b6d58fb 100644 --- a/libmate-panel-applet/mate-panel-applet.c +++ b/libmate-panel-applet/mate-panel-applet.c @@ -796,8 +796,6 @@ mate_panel_applet_position_menu (GtkMenu *menu, int menu_y = 0; int pointer_x; int pointer_y; - int screen_width; - int screen_height; g_return_if_fail (PANEL_IS_APPLET (widget)); @@ -821,9 +819,6 @@ mate_panel_applet_position_menu (GtkMenu *menu, menu_x += allocation.x; menu_y += allocation.y; - gdk_window_get_geometry (gdk_screen_get_root_window (screen), NULL, NULL, - &screen_width, &screen_height); - if (applet->priv->orient == MATE_PANEL_APPLET_ORIENT_UP || applet->priv->orient == MATE_PANEL_APPLET_ORIENT_DOWN) { if (gtk_widget_get_direction (GTK_WIDGET (menu)) != GTK_TEXT_DIR_RTL) { @@ -839,9 +834,9 @@ mate_panel_applet_position_menu (GtkMenu *menu, allocation.width - requisition.width); } } - menu_x = MIN (menu_x, screen_width - requisition.width); + menu_x = MIN (menu_x, WidthOfScreen (gdk_x11_screen_get_xscreen (screen)) - requisition.width); - if (menu_y > screen_height / 2) + if (menu_y > HeightOfScreen (gdk_x11_screen_get_xscreen (screen)) / 2) menu_y -= requisition.height; else menu_y += allocation.height; @@ -849,9 +844,9 @@ mate_panel_applet_position_menu (GtkMenu *menu, if (pointer_y < allocation.height && requisition.height < pointer_y) menu_y += MIN (pointer_y, allocation.height - requisition.height); - menu_y = MIN (menu_y, screen_height - requisition.height); + menu_y = MIN (menu_y, HeightOfScreen (gdk_x11_screen_get_xscreen (screen)) - requisition.height); - if (menu_x > screen_width / 2) + if (menu_x > WidthOfScreen (gdk_x11_screen_get_xscreen (screen)) / 2) menu_x -= requisition.width; else menu_x += allocation.width; -- cgit v1.2.1