[gnome-shell/wip/rewindow: 16/20] workspace: Don't relayout windows when zooming workspace thumbnails
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/rewindow: 16/20] workspace: Don't relayout windows when zooming workspace thumbnails
- Date: Wed, 22 Aug 2012 03:35:18 +0000 (UTC)
commit fa78ce6576edae789c6571eb0d6e8b43f6baa478
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Wed Aug 8 16:47:05 2012 -0300
workspace: Don't relayout windows when zooming workspace thumbnails
It looks ugly and busy to have windows shuffle around when I just wanted
to look at my workspaces.
https://bugzilla.gnome.org/show_bug.cgi?id=582650
js/ui/workspace.js | 31 +++++++++++++++++++++++++++++--
1 files changed, 29 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/workspace.js b/js/ui/workspace.js
index a576311..fa4aa7a 100644
--- a/js/ui/workspace.js
+++ b/js/ui/workspace.js
@@ -949,6 +949,8 @@ const Workspace = new Lang.Class({
this._positionWindowsFlags = 0;
this._positionWindowsId = 0;
+
+ this._currentLayout = null;
},
setGeometry: function(x, y, width, height) {
@@ -996,6 +998,8 @@ const Workspace = new Lang.Class({
this._reservedSlot = clone;
else
this._reservedSlot = null;
+
+ this._currentLayout = null;
this.positionWindows(WindowPositionFlags.ANIMATE);
},
@@ -1224,6 +1228,7 @@ const Workspace = new Lang.Class({
this._cursorX = x;
this._cursorY = y;
+ this._currentLayout = null;
this._repositionWindowsId = Mainloop.timeout_add(750,
Lang.bind(this, this._delayedWindowRepositioning));
},
@@ -1276,6 +1281,7 @@ const Workspace = new Lang.Class({
clone.actor.set_position (this._x, this._y);
}
+ this._currentLayout = null;
this.positionWindows(WindowPositionFlags.ANIMATE);
},
@@ -1313,6 +1319,8 @@ const Workspace = new Lang.Class({
// Animate the full-screen to Overview transition.
zoomToOverview : function() {
+ this._currentLayout = null;
+
// Position and scale the windows.
if (Main.overview.animationInProgress)
this.positionWindows(WindowPositionFlags.ANIMATE | WindowPositionFlags.INITIAL);
@@ -1517,7 +1525,7 @@ const Workspace = new Lang.Class({
let strategyClass = numRows > 2 ? GridLayoutStrategy : UnalignedLayoutStrategy;
let strategy = new strategyClass(this._monitor, rowSpacing, columnSpacing, bottomPadding);
- let layout = { strategy: strategy, numRows: numRows, numColumns: numColumns };
+ let layout = { area: area, strategy: strategy, numRows: numRows, numColumns: numColumns };
strategy.computeLayout(windows, layout);
strategy.computeScaleAndRatio(layout, area);
@@ -1531,6 +1539,16 @@ const Workspace = new Lang.Class({
return lastLayout;
},
+ _rectEqual: function(one, two) {
+ if (one == two)
+ return true;
+
+ return (one.x == two.x &&
+ one.y == two.y &&
+ one.width == two.width &&
+ one.height == two.height);
+ },
+
_computeAllWindowSlots: function(windows) {
let totalWindows = windows.length;
let node = this.actor.get_theme_node();
@@ -1558,9 +1576,18 @@ const Workspace = new Lang.Class({
area.y += closeButtonHeight;
area.height -= closeButtonHeight;
- let layout = this._computeLayout(windows, area, rowSpacing, columnSpacing, captionHeight);
+ if (!this._currentLayout) {
+ this._currentLayout = this._computeLayout(windows, area, rowSpacing, columnSpacing, captionHeight);
+ }
+
+ let layout = this._currentLayout;
let strategy = layout.strategy;
+ if (!this._rectEqual(area, layout.area)) {
+ strategy.computeScaleAndRatio(layout, area);
+ layout.area = area;
+ }
+
return strategy.computeWindowSlots(layout, area);
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]