From 7587daf105c72f55916a82b34ae0f58cfd592c42 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Wed, 20 Feb 2013 21:59:56 +0100 Subject: Add option to open new windows on the center of the screen Adapted from patch by Chad Glendenin available at: http://chad.glendenin.com/metacity/patch.html Closes: http://chad.glendenin.com/metacity/patch.html --- src/core/place.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'src/core/place.c') diff --git a/src/core/place.c b/src/core/place.c index c59d9588..b837adb7 100644 --- a/src/core/place.c +++ b/src/core/place.c @@ -487,6 +487,13 @@ center_tile_rect_in_area (MetaRectangle *rect, rect->y = work_area->y + fluff; } +center_rect_in_area (MetaRectangle *rect, + MetaRectangle *work_area) +{ + rect->x = (work_area->width - rect->width) / 2; + rect->y = (work_area->height - rect->height) / 2; +} + /* Find the leftmost, then topmost, empty area on the workspace * that can contain the new window. * @@ -554,10 +561,14 @@ find_first_fit (MetaWindow *window, meta_window_get_work_area_for_xinerama (window, xinerama, &work_area); - center_tile_rect_in_area (&rect, &work_area); + if (meta_prefs_get_center_new_windows ()) + center_rect_in_area (&rect, &work_area); + else + center_tile_rect_in_area (&rect, &work_area); if (meta_rectangle_contains_rect (&work_area, &rect) && - !rectangle_overlaps_some_window (&rect, windows)) + (meta_prefs_get_center_new_windows () || + !rectangle_overlaps_some_window (&rect, windows))) { *new_x = rect.x; *new_y = rect.y; @@ -874,7 +885,7 @@ meta_window_place (MetaWindow *window, /* If no placement has been done, revert to cascade to avoid * fully overlapping window (e.g. starting multiple terminals) * */ - if (x == xi->rect.x && y == xi->rect.y) + if (!meta_prefs_get_center_new_windows() && (x == xi->rect.x && y == xi->rect.y)) find_next_cascade (window, fgeom, windows, x, y, &x, &y); done_check_denied_focus: @@ -900,7 +911,7 @@ meta_window_place (MetaWindow *window, /* Try to do a first fit again, this time only taking into account the * focus window. */ - if (!found_fit) + if (!meta_prefs_get_center_new_windows() && !found_fit) { GList *focus_window_list; focus_window_list = g_list_prepend (NULL, focus_window); -- cgit v1.2.1