From 8d737c695f37a5bb0ad5ded56a44777249624cea Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Wed, 6 Dec 2017 01:03:11 +0100 Subject: WidthOfScreen and HeightOfScreen implementation This commit reverts: https://github.com/mate-desktop/mate-control-center/commit/fe782c673262e861334bb48265abf5075ff02680 https://github.com/mate-desktop/mate-control-center/commit/061f3780a3af6224a804d239f9b9dfc5c81873f6 And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height gdk_screen_width gdk_screen_height --- libslab/app-shell.c | 9 +++------ libslab/shell-window.c | 8 ++------ 2 files changed, 5 insertions(+), 12 deletions(-) (limited to 'libslab') diff --git a/libslab/app-shell.c b/libslab/app-shell.c index 2c7ec9fc..78e1b6a9 100644 --- a/libslab/app-shell.c +++ b/libslab/app-shell.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -256,7 +257,6 @@ layout_shell (AppShellData * app_data, const gchar * filter_title, const gchar * GtkWidget *left_vbox; GtkWidget *right_vbox; gint num_cols; - gint sc_width; GtkWidget *sw; GtkAdjustment *adjustment; @@ -266,13 +266,10 @@ layout_shell (AppShellData * app_data, const gchar * filter_title, const gchar * right_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); - gdk_window_get_geometry (gdk_screen_get_root_window (gdk_screen_get_default()), - NULL, NULL, &sc_width, NULL); - num_cols = SIZING_SCREEN_WIDTH_LARGE_NUMCOLS; - if (sc_width <= SIZING_SCREEN_WIDTH_LARGE) + if (WidthOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())) <= SIZING_SCREEN_WIDTH_LARGE) { - if (sc_width <= SIZING_SCREEN_WIDTH_MEDIUM) + if (WidthOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())) <= SIZING_SCREEN_WIDTH_MEDIUM) num_cols = SIZING_SCREEN_WIDTH_SMALL_NUMCOLS; else num_cols = SIZING_SCREEN_WIDTH_MEDIUM_NUMCOLS; diff --git a/libslab/shell-window.c b/libslab/shell-window.c index 0b6df1cb..2e97a22f 100644 --- a/libslab/shell-window.c +++ b/libslab/shell-window.c @@ -21,6 +21,7 @@ #include "shell-window.h" #include +#include #include "app-resizer.h" @@ -113,13 +114,8 @@ shell_window_handle_size_request (GtkWidget * widget, GtkRequisition * requisiti height = child_requisiton.height + 10; if (height > requisition->height) { - gint sc_height; - - gdk_window_get_geometry (gdk_screen_get_root_window (gdk_screen_get_default()), - NULL, NULL, NULL, &sc_height); - requisition->height = - MIN (((gfloat) sc_height * SIZING_HEIGHT_PERCENT), height); + MIN (((gfloat) HeightOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())) * SIZING_HEIGHT_PERCENT), height); } } -- cgit v1.2.1