2013-02-14 14:41:38 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const Lang = imports.lang;
|
|
|
|
const St = imports.gi.St;
|
2013-02-17 13:51:51 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
2013-02-14 14:41:38 -05:00
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
2012-12-11 17:26:09 -05:00
|
|
|
const Tweener = imports.ui.tweener;
|
2013-02-15 18:25:36 -05:00
|
|
|
const ViewSelector = imports.ui.viewSelector;
|
2013-02-14 14:41:38 -05:00
|
|
|
|
2013-02-18 00:17:56 -05:00
|
|
|
const SIDE_CONTROLS_ANIMATION_TIME = 0.16;
|
2013-02-14 14:41:38 -05:00
|
|
|
|
2013-02-15 20:43:01 -05:00
|
|
|
function getRtlSlideDirection(direction, actor) {
|
|
|
|
let rtl = (actor.text_direction == Clutter.TextDirection.RTL);
|
|
|
|
if (rtl)
|
|
|
|
direction = (direction == SlideDirection.LEFT) ?
|
|
|
|
SlideDirection.RIGHT : SlideDirection.LEFT;
|
|
|
|
|
|
|
|
return direction;
|
|
|
|
};
|
|
|
|
|
2013-02-14 14:41:38 -05:00
|
|
|
const SlideDirection = {
|
|
|
|
LEFT: 0,
|
|
|
|
RIGHT: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
const SlideLayout = new Lang.Class({
|
|
|
|
Name: 'SlideLayout',
|
|
|
|
Extends: Clutter.FixedLayout,
|
|
|
|
|
|
|
|
_init: function(params) {
|
|
|
|
this._slideX = 1;
|
|
|
|
this._direction = SlideDirection.LEFT;
|
|
|
|
|
|
|
|
this.parent(params);
|
|
|
|
},
|
|
|
|
|
|
|
|
vfunc_get_preferred_width: function(container, forHeight) {
|
|
|
|
let child = container.get_first_child();
|
|
|
|
|
|
|
|
let [minWidth, natWidth] = child.get_preferred_width(forHeight);
|
|
|
|
|
|
|
|
minWidth *= this._slideX;
|
|
|
|
natWidth *= this._slideX;
|
|
|
|
|
|
|
|
return [minWidth, natWidth];
|
|
|
|
},
|
|
|
|
|
|
|
|
vfunc_allocate: function(container, box, flags) {
|
|
|
|
let child = container.get_first_child();
|
|
|
|
|
|
|
|
let [, , natWidth, natHeight] = child.get_preferred_size();
|
|
|
|
let availWidth = Math.round(box.x2 - box.x1);
|
|
|
|
let availHeight = Math.round(box.y2 - box.y1);
|
|
|
|
|
2013-02-15 20:43:01 -05:00
|
|
|
let realDirection = getRtlSlideDirection(this._direction, child);
|
2013-02-14 14:41:38 -05:00
|
|
|
let translationX = (realDirection == SlideDirection.LEFT) ?
|
|
|
|
(availWidth - natWidth) : (natWidth - availWidth);
|
|
|
|
|
|
|
|
let actorBox = new Clutter.ActorBox({ x1: translationX,
|
|
|
|
y1: 0,
|
|
|
|
x2: child.x_expand ? availWidth : natWidth,
|
|
|
|
y2: child.y_expand ? availHeight : natHeight });
|
|
|
|
|
|
|
|
child.allocate(actorBox, flags);
|
|
|
|
},
|
|
|
|
|
|
|
|
set slideX(value) {
|
|
|
|
this._slideX = value;
|
|
|
|
this.layout_changed();
|
|
|
|
},
|
|
|
|
|
|
|
|
get slideX() {
|
|
|
|
return this._slideX;
|
|
|
|
},
|
|
|
|
|
|
|
|
set slideDirection(direction) {
|
|
|
|
this._direction = direction;
|
|
|
|
this.layout_changed();
|
|
|
|
},
|
|
|
|
|
|
|
|
get slideDirection() {
|
|
|
|
return this._direction;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const SlidingControl = new Lang.Class({
|
|
|
|
Name: 'SlidingControl',
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
this.visible = true;
|
|
|
|
this.inDrag = false;
|
|
|
|
|
|
|
|
this.layout = new SlideLayout();
|
|
|
|
this.actor = new St.Widget({ layout_manager: this.layout,
|
|
|
|
clip_to_allocation: true });
|
|
|
|
|
|
|
|
Main.overview.connect('showing', Lang.bind(this, this._onOverviewShowing));
|
|
|
|
|
|
|
|
Main.overview.connect('item-drag-begin', Lang.bind(this, this._onDragBegin));
|
|
|
|
Main.overview.connect('item-drag-end', Lang.bind(this, this._onDragEnd));
|
|
|
|
Main.overview.connect('item-drag-cancelled', Lang.bind(this, this._onDragEnd));
|
|
|
|
Main.overview.connect('window-drag-begin', Lang.bind(this, this._onDragBegin));
|
|
|
|
Main.overview.connect('window-drag-cancelled', Lang.bind(this, this._onDragEnd));
|
|
|
|
Main.overview.connect('window-drag-end', Lang.bind(this, this._onDragEnd));
|
|
|
|
},
|
|
|
|
|
|
|
|
getSlide: function() {
|
|
|
|
throw new Error('getSlide() must be overridden');
|
|
|
|
},
|
|
|
|
|
|
|
|
updateSlide: function() {
|
|
|
|
Tweener.addTween(this.layout, { slideX: this.getSlide(),
|
|
|
|
time: SIDE_CONTROLS_ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad' });
|
|
|
|
},
|
|
|
|
|
2013-02-15 20:50:26 -05:00
|
|
|
getVisibleWidth: function() {
|
|
|
|
let child = this.actor.get_first_child();
|
|
|
|
let [, , natWidth, ] = child.get_preferred_size();
|
|
|
|
return natWidth;
|
|
|
|
},
|
|
|
|
|
|
|
|
_getTranslation: function() {
|
|
|
|
let child = this.actor.get_first_child();
|
|
|
|
let direction = getRtlSlideDirection(this.layout.slideDirection, child);
|
|
|
|
let visibleWidth = this.getVisibleWidth();
|
|
|
|
|
|
|
|
if (direction == SlideDirection.LEFT)
|
2013-02-18 01:24:40 -05:00
|
|
|
return - visibleWidth;
|
2013-02-15 20:50:26 -05:00
|
|
|
else
|
2013-02-18 01:24:40 -05:00
|
|
|
return visibleWidth;
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateTranslation: function(slidingIn) {
|
|
|
|
let translationStart = 0;
|
|
|
|
let translationEnd = 0;
|
|
|
|
let translation = this._getTranslation();
|
|
|
|
|
|
|
|
if (slidingIn) {
|
|
|
|
translationStart = translation;
|
|
|
|
} else {
|
|
|
|
translationEnd = translation;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.actor.translation_x = translationStart;
|
|
|
|
Tweener.addTween(this.actor, { translation_x: translationEnd,
|
|
|
|
time: SIDE_CONTROLS_ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-02-14 14:41:38 -05:00
|
|
|
_onOverviewShowing: function() {
|
|
|
|
// reset any translation and make sure the actor is visible when
|
|
|
|
// entering the overview
|
|
|
|
this.visible = true;
|
|
|
|
this.layout.slideX = this.getSlide();
|
2013-02-16 11:57:58 -05:00
|
|
|
this.actor.translation_x = 0;
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onDragBegin: function() {
|
|
|
|
this.inDrag = true;
|
2013-02-17 15:44:33 -05:00
|
|
|
this.actor.translation_x = 0;
|
2013-02-14 14:41:38 -05:00
|
|
|
this.updateSlide();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDragEnd: function() {
|
|
|
|
this.inDrag = false;
|
|
|
|
this.updateSlide();
|
|
|
|
},
|
|
|
|
|
|
|
|
slideIn: function() {
|
2013-02-15 20:50:26 -05:00
|
|
|
this._updateTranslation(true);
|
2013-02-14 14:41:38 -05:00
|
|
|
this.visible = true;
|
2013-02-15 20:50:26 -05:00
|
|
|
// we will update slideX from pageEmpty
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
slideOut: function() {
|
|
|
|
this.visible = false;
|
2013-02-15 20:50:26 -05:00
|
|
|
this._updateTranslation(false);
|
|
|
|
// we will update slideX from pageEmpty
|
|
|
|
},
|
|
|
|
|
|
|
|
pageEmpty: function() {
|
|
|
|
// When pageEmpty is received, there's no visible view in the
|
|
|
|
// selector; this means we can now safely set the full slide for
|
|
|
|
// the next page, since slideIn or slideOut might have been called,
|
|
|
|
// changing the visiblity
|
|
|
|
this.layout.slideX = this.getSlide();
|
2013-02-14 14:41:38 -05:00
|
|
|
}
|
|
|
|
});
|
2012-12-11 17:26:09 -05:00
|
|
|
|
|
|
|
const ThumbnailsSlider = new Lang.Class({
|
|
|
|
Name: 'ThumbnailsSlider',
|
|
|
|
Extends: SlidingControl,
|
|
|
|
|
|
|
|
_init: function(thumbnailsBox) {
|
|
|
|
this.parent();
|
|
|
|
|
|
|
|
this.layout.slideDirection = SlideDirection.RIGHT;
|
|
|
|
|
|
|
|
this._thumbnailsBox = thumbnailsBox;
|
|
|
|
|
|
|
|
// SlideLayout reads the actor's expand flags to decide
|
|
|
|
// whether to allocate the natural size to its child, or the whole
|
|
|
|
// available allocation
|
|
|
|
this._thumbnailsBox.actor.y_expand = true;
|
|
|
|
|
|
|
|
this.actor.request_mode = Clutter.RequestMode.WIDTH_FOR_HEIGHT;
|
|
|
|
this.actor.reactive = true;
|
|
|
|
this.actor.track_hover = true;
|
|
|
|
this.actor.add_actor(this._thumbnailsBox.actor);
|
|
|
|
|
|
|
|
Main.layoutManager.connect('monitors-changed', Lang.bind(this, this.updateSlide));
|
|
|
|
this.actor.connect('notify::hover', Lang.bind(this, this.updateSlide));
|
|
|
|
},
|
|
|
|
|
2013-02-15 20:50:26 -05:00
|
|
|
_getAlwaysZoomOut: function() {
|
2012-12-11 17:26:09 -05:00
|
|
|
// Always show the pager when hover, during a drag, or if workspaces are
|
|
|
|
// actually used, e.g. there are windows on more than one
|
|
|
|
let alwaysZoomOut = this.actor.hover || this.inDrag || global.screen.n_workspaces > 2;
|
|
|
|
|
|
|
|
if (!alwaysZoomOut) {
|
|
|
|
let monitors = Main.layoutManager.monitors;
|
|
|
|
let primary = Main.layoutManager.primaryMonitor;
|
|
|
|
|
|
|
|
/* Look for any monitor to the right of the primary, if there is
|
|
|
|
* one, we always keep zoom out, otherwise its hard to reach
|
|
|
|
* the thumbnail area without passing into the next monitor. */
|
|
|
|
for (let i = 0; i < monitors.length; i++) {
|
|
|
|
if (monitors[i].x >= primary.x + primary.width) {
|
|
|
|
alwaysZoomOut = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-15 20:50:26 -05:00
|
|
|
return alwaysZoomOut;
|
|
|
|
},
|
|
|
|
|
|
|
|
getSlide: function() {
|
|
|
|
if (!this.visible)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
let alwaysZoomOut = this._getAlwaysZoomOut();
|
2012-12-11 17:26:09 -05:00
|
|
|
if (alwaysZoomOut)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
let child = this.actor.get_first_child();
|
|
|
|
let preferredHeight = child.get_preferred_height(-1)[1];
|
|
|
|
let expandedWidth = child.get_preferred_width(preferredHeight)[1];
|
|
|
|
let visibleWidth = child.get_theme_node().get_length('visible-width');
|
|
|
|
|
|
|
|
return visibleWidth / expandedWidth;
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
getVisibleWidth: function() {
|
|
|
|
let alwaysZoomOut = this._getAlwaysZoomOut();
|
|
|
|
if (alwaysZoomOut)
|
|
|
|
return this.parent();
|
|
|
|
|
|
|
|
let child = this.actor.get_first_child();
|
|
|
|
return child.get_theme_node().get_length('visible-width');
|
2012-12-11 17:26:09 -05:00
|
|
|
}
|
|
|
|
});
|
2013-01-23 23:11:23 -05:00
|
|
|
|
|
|
|
const DashSlider = new Lang.Class({
|
|
|
|
Name: 'DashSlider',
|
|
|
|
Extends: SlidingControl,
|
|
|
|
|
|
|
|
_init: function(dash) {
|
|
|
|
this.parent();
|
|
|
|
|
|
|
|
this.layout.slideDirection = SlideDirection.LEFT;
|
|
|
|
|
2013-02-15 18:26:24 -05:00
|
|
|
this._dash = dash;
|
2013-01-23 23:11:23 -05:00
|
|
|
|
|
|
|
// SlideLayout reads the actor's expand flags to decide
|
|
|
|
// whether to allocate the natural size to its child, or the whole
|
|
|
|
// available allocation
|
2013-02-15 18:26:24 -05:00
|
|
|
this._dash.actor.x_expand = true;
|
|
|
|
this._dash.actor.y_expand = true;
|
|
|
|
this.actor.add_actor(this._dash.actor);
|
2013-01-23 23:11:23 -05:00
|
|
|
|
2013-02-15 18:26:24 -05:00
|
|
|
this._dash.connect('icon-size-changed', Lang.bind(this, this.updateSlide));
|
2013-01-23 23:11:23 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
getSlide: function() {
|
|
|
|
if (this.visible || this.inDrag)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
});
|
2013-02-15 18:25:36 -05:00
|
|
|
|
2013-02-16 15:36:57 -05:00
|
|
|
const SlidingControlContainer = new Lang.Class({
|
|
|
|
Name: 'SlidingControlContainer',
|
|
|
|
Extends: St.Widget,
|
|
|
|
|
|
|
|
_init: function(child, entryBin) {
|
|
|
|
this._layout = new Clutter.BoxLayout({ vertical: true });
|
|
|
|
this.parent({ layout_manager: this._layout });
|
|
|
|
|
|
|
|
child.x_expand = true;
|
|
|
|
this.add_actor(child);
|
|
|
|
|
2013-02-17 13:51:51 -05:00
|
|
|
let entryClone = new Shell.GenericContainer();
|
|
|
|
entryClone.connect('get-preferred-height', function(actor, forWidth, alloc) {
|
|
|
|
[alloc.min_size, alloc.natural_size] = [entryBin.height, entryBin.height];
|
|
|
|
});
|
2013-02-16 15:36:57 -05:00
|
|
|
this.add_actor(entryClone);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-02-15 18:25:36 -05:00
|
|
|
const ControlsManager = new Lang.Class({
|
|
|
|
Name: 'ControlsManager',
|
|
|
|
|
2013-02-16 15:36:57 -05:00
|
|
|
_init: function(dash, thumbnails, viewSelector, entryBin) {
|
2013-02-15 18:25:36 -05:00
|
|
|
this._dashSlider = new DashSlider(dash);
|
2013-02-16 15:36:57 -05:00
|
|
|
this.dashActor = new SlidingControlContainer(this._dashSlider.actor, entryBin);
|
2013-02-15 18:25:36 -05:00
|
|
|
|
|
|
|
this._thumbnailsSlider = new ThumbnailsSlider(thumbnails);
|
2013-02-16 15:36:57 -05:00
|
|
|
this.thumbnailsActor = new SlidingControlContainer(this._thumbnailsSlider.actor, entryBin);
|
2013-02-15 18:25:36 -05:00
|
|
|
|
|
|
|
this._viewSelector = viewSelector;
|
|
|
|
this._viewSelector.connect('page-changed', Lang.bind(this, this._setVisibility));
|
2013-02-15 20:50:26 -05:00
|
|
|
this._viewSelector.connect('page-empty', Lang.bind(this, this._onPageEmpty));
|
2013-02-15 18:25:36 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_setVisibility: function() {
|
|
|
|
// Ignore the case when we're leaving the overview, since
|
|
|
|
// actors will be made visible again when entering the overview
|
|
|
|
// next time, and animating them while doing so is just
|
|
|
|
// unnecessary noise
|
2013-02-16 12:45:10 -05:00
|
|
|
if (!Main.overview.visible ||
|
|
|
|
(Main.overview.animationInProgress && !Main.overview.visibleTarget))
|
2013-02-15 18:25:36 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
let activePage = this._viewSelector.getActivePage();
|
|
|
|
let dashVisible = (activePage == ViewSelector.ViewPage.WINDOWS ||
|
|
|
|
activePage == ViewSelector.ViewPage.APPS);
|
|
|
|
let thumbnailsVisible = (activePage == ViewSelector.ViewPage.WINDOWS);
|
|
|
|
|
|
|
|
if (dashVisible)
|
|
|
|
this._dashSlider.slideIn();
|
|
|
|
else
|
|
|
|
this._dashSlider.slideOut();
|
|
|
|
|
|
|
|
if (thumbnailsVisible)
|
|
|
|
this._thumbnailsSlider.slideIn();
|
|
|
|
else
|
|
|
|
this._thumbnailsSlider.slideOut();
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onPageEmpty: function() {
|
|
|
|
this._dashSlider.pageEmpty();
|
|
|
|
this._thumbnailsSlider.pageEmpty();
|
2013-02-15 18:25:36 -05:00
|
|
|
}
|
|
|
|
});
|