2013-02-14 14:41:38 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2013-05-28 21:10:58 -04:00
|
|
|
const GObject = imports.gi.GObject;
|
2013-02-14 14:41:38 -05:00
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const Lang = imports.lang;
|
2013-01-24 06:14:19 -05:00
|
|
|
const Meta = imports.gi.Meta;
|
2013-02-14 14:41:38 -05:00
|
|
|
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
|
|
|
|
2013-02-25 18:05:45 -05:00
|
|
|
const Dash = imports.ui.dash;
|
2013-02-14 14:41:38 -05:00
|
|
|
const Main = imports.ui.main;
|
2013-02-18 22:35:04 -05:00
|
|
|
const Params = imports.misc.params;
|
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-25 18:05:45 -05:00
|
|
|
const WorkspaceThumbnail = imports.ui.workspaceThumbnail;
|
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;
|
2014-08-30 20:18:51 -04:00
|
|
|
this._translationX = undefined;
|
2013-02-14 14:41:38 -05:00
|
|
|
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 availWidth = Math.round(box.x2 - box.x1);
|
|
|
|
let availHeight = Math.round(box.y2 - box.y1);
|
2013-10-11 22:36:49 -04:00
|
|
|
let [, natWidth] = child.get_preferred_width(availHeight);
|
2013-02-14 14:41:38 -05:00
|
|
|
|
2013-09-18 19:48:22 -04:00
|
|
|
// Align the actor inside the clipped box, as the actor's alignment
|
|
|
|
// flags only determine what to do if the allocated box is bigger
|
|
|
|
// than the actor's box.
|
2013-02-15 20:43:01 -05:00
|
|
|
let realDirection = getRtlSlideDirection(this._direction, child);
|
2014-10-10 04:58:42 -04:00
|
|
|
let alignX = (realDirection == SlideDirection.LEFT) ? (availWidth - natWidth)
|
|
|
|
: (availWidth - natWidth * this._slideX);
|
2013-02-14 14:41:38 -05:00
|
|
|
|
2013-09-18 19:42:41 -04:00
|
|
|
let actorBox = new Clutter.ActorBox();
|
2013-09-18 19:59:02 -04:00
|
|
|
actorBox.x1 = box.x1 + alignX + this._translationX;
|
2013-11-02 20:06:29 -04:00
|
|
|
actorBox.x2 = actorBox.x1 + (child.x_expand ? availWidth : natWidth);
|
2013-10-21 17:51:50 -04:00
|
|
|
actorBox.y1 = box.y1;
|
2013-10-11 22:36:49 -04:00
|
|
|
actorBox.y2 = actorBox.y1 + availHeight;
|
2013-02-14 14:41:38 -05:00
|
|
|
|
|
|
|
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;
|
2013-09-18 19:59:02 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
set translationX(value) {
|
|
|
|
this._translationX = value;
|
|
|
|
this.layout_changed();
|
|
|
|
},
|
|
|
|
|
|
|
|
get translationX() {
|
|
|
|
return this._translationX;
|
|
|
|
},
|
2013-02-14 14:41:38 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
const SlidingControl = new Lang.Class({
|
|
|
|
Name: 'SlidingControl',
|
|
|
|
|
2013-02-18 22:35:04 -05:00
|
|
|
_init: function(params) {
|
|
|
|
params = Params.parse(params, { slideDirection: SlideDirection.LEFT });
|
|
|
|
|
2013-09-18 19:06:56 -04:00
|
|
|
this._visible = true;
|
|
|
|
this._inDrag = false;
|
2013-02-14 14:41:38 -05:00
|
|
|
|
|
|
|
this.layout = new SlideLayout();
|
2013-02-18 22:35:04 -05:00
|
|
|
this.layout.slideDirection = params.slideDirection;
|
2013-02-14 14:41:38 -05:00
|
|
|
this.actor = new St.Widget({ layout_manager: this.layout,
|
2013-02-21 10:44:32 -05:00
|
|
|
style_class: 'overview-controls',
|
2013-02-14 14:41:38 -05:00
|
|
|
clip_to_allocation: true });
|
|
|
|
|
2013-09-18 19:13:35 -04:00
|
|
|
Main.overview.connect('hiding', Lang.bind(this, this._onOverviewHiding));
|
2013-02-14 14:41:38 -05:00
|
|
|
|
|
|
|
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));
|
2013-02-18 22:34:27 -05:00
|
|
|
|
|
|
|
Main.overview.connect('window-drag-begin', Lang.bind(this, this._onWindowDragBegin));
|
|
|
|
Main.overview.connect('window-drag-cancelled', Lang.bind(this, this._onWindowDragEnd));
|
|
|
|
Main.overview.connect('window-drag-end', Lang.bind(this, this._onWindowDragEnd));
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
_getSlide: function() {
|
2013-02-14 14:41:38 -05:00
|
|
|
throw new Error('getSlide() must be overridden');
|
|
|
|
},
|
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
_updateSlide: function() {
|
|
|
|
Tweener.addTween(this.layout, { slideX: this._getSlide(),
|
2013-02-14 14:41:38 -05:00
|
|
|
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
|
|
|
},
|
|
|
|
|
2013-02-18 01:25:54 -05:00
|
|
|
_updateTranslation: function() {
|
2013-02-15 20:50:26 -05:00
|
|
|
let translationStart = 0;
|
|
|
|
let translationEnd = 0;
|
|
|
|
let translation = this._getTranslation();
|
|
|
|
|
2014-08-30 20:20:43 -04:00
|
|
|
let shouldShow = (this._getSlide() > 0);
|
|
|
|
if (shouldShow) {
|
2013-02-15 20:50:26 -05:00
|
|
|
translationStart = translation;
|
|
|
|
} else {
|
|
|
|
translationEnd = translation;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:59:02 -04:00
|
|
|
if (this.layout.translationX == translationEnd)
|
2013-02-18 14:17:29 -05:00
|
|
|
return;
|
|
|
|
|
2013-09-18 19:59:02 -04:00
|
|
|
this.layout.translationX = translationStart;
|
|
|
|
Tweener.addTween(this.layout, { translationX: translationEnd,
|
|
|
|
time: SIDE_CONTROLS_ANIMATION_TIME,
|
|
|
|
transition: 'easeOutQuad' });
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
2013-09-18 19:13:35 -04:00
|
|
|
_onOverviewHiding: function() {
|
2014-08-30 21:30:48 -04:00
|
|
|
// We need to explicitly slideOut since showing pages
|
|
|
|
// doesn't imply sliding out, instead, hiding the overview does.
|
2013-09-18 19:13:35 -04:00
|
|
|
this.slideOut();
|
|
|
|
},
|
|
|
|
|
2013-02-18 22:34:27 -05:00
|
|
|
_onWindowDragBegin: function() {
|
|
|
|
this._onDragBegin();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onWindowDragEnd: function() {
|
|
|
|
this._onDragEnd();
|
|
|
|
},
|
|
|
|
|
2013-02-14 14:41:38 -05:00
|
|
|
_onDragBegin: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
this._inDrag = true;
|
2014-08-30 20:20:43 -04:00
|
|
|
this._updateTranslation();
|
2013-09-18 19:22:54 -04:00
|
|
|
this._updateSlide();
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onDragEnd: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
this._inDrag = false;
|
2013-09-18 19:22:54 -04:00
|
|
|
this._updateSlide();
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
2013-02-18 22:34:27 -05:00
|
|
|
fadeIn: function() {
|
|
|
|
Tweener.addTween(this.actor, { opacity: 255,
|
|
|
|
time: SIDE_CONTROLS_ANIMATION_TIME / 2,
|
|
|
|
transition: 'easeInQuad'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
fadeHalf: function() {
|
|
|
|
Tweener.addTween(this.actor, { opacity: 128,
|
|
|
|
time: SIDE_CONTROLS_ANIMATION_TIME / 2,
|
|
|
|
transition: 'easeOutQuad'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-02-14 14:41:38 -05:00
|
|
|
slideIn: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
this._visible = true;
|
2013-09-26 16:20:06 -04:00
|
|
|
// we will update slideX and the translation from pageEmpty
|
2013-02-14 14:41:38 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
slideOut: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
this._visible = false;
|
2013-02-18 01:25:54 -05:00
|
|
|
this._updateTranslation();
|
2013-09-26 16:20:06 -04:00
|
|
|
// we will update slideX from pageEmpty
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
2013-09-26 16:20:06 -04:00
|
|
|
|
|
|
|
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
|
2013-09-18 19:22:54 -04:00
|
|
|
this.layout.slideX = this._getSlide();
|
2013-09-26 16:20:06 -04:00
|
|
|
this._updateTranslation();
|
|
|
|
}
|
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) {
|
2013-02-18 22:35:04 -05:00
|
|
|
this.parent({ slideDirection: SlideDirection.RIGHT });
|
2012-12-11 17:26:09 -05:00
|
|
|
|
|
|
|
this._thumbnailsBox = thumbnailsBox;
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
Main.layoutManager.connect('monitors-changed', Lang.bind(this, this._updateSlide));
|
|
|
|
this.actor.connect('notify::hover', Lang.bind(this, this._updateSlide));
|
2011-10-22 10:48:01 -04:00
|
|
|
global.window_manager.connect('switch-workspace', Lang.bind(this, this._updateSlide));
|
2013-05-28 21:10:58 -04:00
|
|
|
this._thumbnailsBox.actor.bind_property('visible', this.actor, 'visible', GObject.BindingFlags.SYNC_CREATE);
|
2012-12-11 17:26:09 -05:00
|
|
|
},
|
|
|
|
|
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
|
2011-10-22 10:48:01 -04:00
|
|
|
// actually used, e.g. there are windows on any non-active workspace
|
|
|
|
let alwaysZoomOut = this.actor.hover ||
|
|
|
|
this._inDrag ||
|
|
|
|
!Meta.prefs_get_dynamic_workspaces() ||
|
|
|
|
global.screen.n_workspaces > 2 ||
|
|
|
|
global.screen.get_active_workspace_index() != 0;
|
2012-12-11 17:26:09 -05:00
|
|
|
|
|
|
|
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;
|
|
|
|
},
|
|
|
|
|
2013-04-20 12:29:58 -04:00
|
|
|
getNonExpandedWidth: function() {
|
|
|
|
let child = this.actor.get_first_child();
|
|
|
|
return child.get_theme_node().get_length('visible-width');
|
|
|
|
},
|
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
_getSlide: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
if (!this._visible)
|
2013-02-15 20:50:26 -05:00
|
|
|
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];
|
|
|
|
|
2013-04-20 12:29:58 -04:00
|
|
|
return this.getNonExpandedWidth() / expandedWidth;
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
getVisibleWidth: function() {
|
|
|
|
let alwaysZoomOut = this._getAlwaysZoomOut();
|
|
|
|
if (alwaysZoomOut)
|
|
|
|
return this.parent();
|
2013-04-20 12:29:58 -04:00
|
|
|
else
|
|
|
|
return this.getNonExpandedWidth();
|
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) {
|
2013-02-18 22:35:04 -05:00
|
|
|
this.parent({ slideDirection: SlideDirection.LEFT });
|
2013-01-23 23:11:23 -05:00
|
|
|
|
2013-02-15 18:26:24 -05:00
|
|
|
this._dash = dash;
|
2013-01-23 23:11:23 -05:00
|
|
|
|
2013-10-30 18:32:26 -04:00
|
|
|
// SlideLayout reads the actor's expand flags to decide
|
|
|
|
// whether to allocate the natural size to its child, or the whole
|
|
|
|
// available allocation
|
|
|
|
this._dash.actor.x_expand = true;
|
|
|
|
|
2013-09-18 19:40:38 -04:00
|
|
|
this.actor.x_expand = true;
|
2013-02-25 18:05:45 -05:00
|
|
|
this.actor.x_align = Clutter.ActorAlign.START;
|
|
|
|
this.actor.y_expand = true;
|
|
|
|
|
2013-02-15 18:26:24 -05:00
|
|
|
this.actor.add_actor(this._dash.actor);
|
2013-01-23 23:11:23 -05:00
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
this._dash.connect('icon-size-changed', Lang.bind(this, this._updateSlide));
|
2013-01-23 23:11:23 -05:00
|
|
|
},
|
|
|
|
|
2013-09-18 19:22:54 -04:00
|
|
|
_getSlide: function() {
|
2013-09-18 19:06:56 -04:00
|
|
|
if (this._visible || this._inDrag)
|
2013-01-23 23:11:23 -05:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2013-02-18 22:34:27 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onWindowDragBegin: function() {
|
|
|
|
this.fadeHalf();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onWindowDragEnd: function() {
|
|
|
|
this.fadeIn();
|
2013-01-23 23:11:23 -05:00
|
|
|
}
|
|
|
|
});
|
2013-02-15 18:25:36 -05:00
|
|
|
|
2013-02-21 12:48:09 -05:00
|
|
|
const DashSpacer = new Lang.Class({
|
|
|
|
Name: 'DashSpacer',
|
|
|
|
Extends: St.Widget,
|
|
|
|
|
|
|
|
_init: function(params) {
|
|
|
|
this.parent(params);
|
|
|
|
|
|
|
|
this._bindConstraint = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
setDashActor: function(dashActor) {
|
|
|
|
if (this._bindConstraint) {
|
|
|
|
this.remove_constraint(this._bindConstraint);
|
|
|
|
this._bindConstraint = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dashActor) {
|
|
|
|
this._bindConstraint = new Clutter.BindConstraint({ source: dashActor,
|
|
|
|
coordinate: Clutter.BindCoordinate.SIZE });
|
|
|
|
this.add_constraint(this._bindConstraint);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
vfunc_get_preferred_width: function(forHeight) {
|
|
|
|
let box = this.get_allocation_box();
|
|
|
|
let minWidth = this.parent(forHeight)[0];
|
|
|
|
let natWidth = box.x2 - box.x1;
|
|
|
|
return [minWidth, natWidth];
|
|
|
|
},
|
|
|
|
|
|
|
|
vfunc_get_preferred_height: function(forWidth) {
|
|
|
|
let box = this.get_allocation_box();
|
|
|
|
let minHeight = this.parent(forWidth)[0];
|
|
|
|
let natHeight = box.y2 - box.y1;
|
|
|
|
return [minHeight, natHeight];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-09-13 03:34:13 -04:00
|
|
|
const ControlsLayout = new Lang.Class({
|
|
|
|
Name: 'ControlsLayout',
|
|
|
|
Extends: Clutter.BinLayout,
|
|
|
|
Signals: { 'allocation-changed': { flags: GObject.SignalFlags.RUN_LAST } },
|
|
|
|
|
|
|
|
vfunc_allocate: function(container, box, flags) {
|
|
|
|
this.parent(container, box, flags);
|
|
|
|
this.emit('allocation-changed');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-02-15 18:25:36 -05:00
|
|
|
const ControlsManager = new Lang.Class({
|
|
|
|
Name: 'ControlsManager',
|
|
|
|
|
2013-02-25 18:05:45 -05:00
|
|
|
_init: function(searchEntry) {
|
|
|
|
this.dash = new Dash.Dash();
|
|
|
|
this._dashSlider = new DashSlider(this.dash);
|
|
|
|
this._dashSpacer = new DashSpacer();
|
|
|
|
this._dashSpacer.setDashActor(this._dashSlider.actor);
|
|
|
|
|
|
|
|
this._thumbnailsBox = new WorkspaceThumbnail.ThumbnailsBox();
|
|
|
|
this._thumbnailsSlider = new ThumbnailsSlider(this._thumbnailsBox);
|
2013-02-15 18:25:36 -05:00
|
|
|
|
2013-02-25 18:05:45 -05:00
|
|
|
this.viewSelector = new ViewSelector.ViewSelector(searchEntry,
|
|
|
|
this.dash.showAppsButton);
|
|
|
|
this.viewSelector.connect('page-changed', Lang.bind(this, this._setVisibility));
|
|
|
|
this.viewSelector.connect('page-empty', Lang.bind(this, this._onPageEmpty));
|
2013-02-15 18:25:36 -05:00
|
|
|
|
2013-09-13 03:34:13 -04:00
|
|
|
let layout = new ControlsLayout();
|
|
|
|
this.actor = new St.Widget({ layout_manager: layout,
|
2013-05-18 14:59:57 -04:00
|
|
|
reactive: true,
|
2013-02-25 18:05:45 -05:00
|
|
|
x_expand: true, y_expand: true,
|
|
|
|
clip_to_allocation: true });
|
|
|
|
this._group = new St.BoxLayout({ name: 'overview-group',
|
|
|
|
x_expand: true, y_expand: true });
|
|
|
|
this.actor.add_actor(this._group);
|
|
|
|
|
|
|
|
this.actor.add_actor(this._dashSlider.actor);
|
|
|
|
|
|
|
|
this._group.add_actor(this._dashSpacer);
|
|
|
|
this._group.add(this.viewSelector.actor, { x_fill: true,
|
|
|
|
expand: true });
|
|
|
|
this._group.add_actor(this._thumbnailsSlider.actor);
|
2013-02-17 23:45:24 -05:00
|
|
|
|
2013-09-13 03:34:13 -04:00
|
|
|
layout.connect('allocation-changed', Lang.bind(this, this._updateWorkspacesGeometry));
|
2013-02-25 18:11:59 -05:00
|
|
|
|
2013-02-21 12:48:09 -05:00
|
|
|
Main.overview.connect('showing', Lang.bind(this, this._updateSpacerVisibility));
|
2013-02-17 23:45:24 -05:00
|
|
|
Main.overview.connect('item-drag-begin', Lang.bind(this,
|
|
|
|
function() {
|
2013-02-25 18:05:45 -05:00
|
|
|
let activePage = this.viewSelector.getActivePage();
|
2013-02-17 23:45:24 -05:00
|
|
|
if (activePage != ViewSelector.ViewPage.WINDOWS)
|
2013-02-25 18:05:45 -05:00
|
|
|
this.viewSelector.fadeHalf();
|
2013-02-17 23:45:24 -05:00
|
|
|
}));
|
|
|
|
Main.overview.connect('item-drag-end', Lang.bind(this,
|
|
|
|
function() {
|
2013-02-25 18:05:45 -05:00
|
|
|
this.viewSelector.fadeIn();
|
2013-02-17 23:45:24 -05:00
|
|
|
}));
|
|
|
|
Main.overview.connect('item-drag-cancelled', Lang.bind(this,
|
|
|
|
function() {
|
2013-02-25 18:05:45 -05:00
|
|
|
this.viewSelector.fadeIn();
|
2013-02-17 23:45:24 -05:00
|
|
|
}));
|
2013-02-15 18:25:36 -05:00
|
|
|
},
|
|
|
|
|
2013-02-25 18:11:59 -05:00
|
|
|
_updateWorkspacesGeometry: function() {
|
|
|
|
let [x, y] = this.actor.get_transformed_position();
|
|
|
|
let [width, height] = this.actor.get_transformed_size();
|
|
|
|
let geometry = { x: x, y: y, width: width, height: height };
|
|
|
|
|
|
|
|
let spacing = this.actor.get_theme_node().get_length('spacing');
|
|
|
|
let dashWidth = this._dashSlider.getVisibleWidth() + spacing;
|
|
|
|
let thumbnailsWidth = this._thumbnailsSlider.getNonExpandedWidth() + spacing;
|
|
|
|
|
|
|
|
geometry.width -= dashWidth;
|
|
|
|
geometry.width -= thumbnailsWidth;
|
|
|
|
|
|
|
|
if (this.actor.get_text_direction() == Clutter.TextDirection.LTR)
|
|
|
|
geometry.x += dashWidth;
|
|
|
|
else
|
|
|
|
geometry.x += thumbnailsWidth;
|
|
|
|
|
2013-02-25 18:25:27 -05:00
|
|
|
this.viewSelector.setWorkspacesFullGeometry(geometry);
|
2013-02-25 18:11:59 -05:00
|
|
|
},
|
|
|
|
|
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;
|
|
|
|
|
2013-02-25 18:05:45 -05:00
|
|
|
let activePage = this.viewSelector.getActivePage();
|
2013-02-15 18:25:36 -05:00
|
|
|
let dashVisible = (activePage == ViewSelector.ViewPage.WINDOWS ||
|
|
|
|
activePage == ViewSelector.ViewPage.APPS);
|
2013-09-26 16:20:06 -04:00
|
|
|
let thumbnailsVisible = (activePage == ViewSelector.ViewPage.WINDOWS);
|
|
|
|
|
|
|
|
if (dashVisible)
|
|
|
|
this._dashSlider.slideIn();
|
|
|
|
else
|
2013-02-15 18:25:36 -05:00
|
|
|
this._dashSlider.slideOut();
|
|
|
|
|
2013-09-26 16:20:06 -04:00
|
|
|
if (thumbnailsVisible)
|
|
|
|
this._thumbnailsSlider.slideIn();
|
|
|
|
else
|
2013-02-15 18:25:36 -05:00
|
|
|
this._thumbnailsSlider.slideOut();
|
2013-02-15 20:50:26 -05:00
|
|
|
},
|
|
|
|
|
2013-02-21 12:48:09 -05:00
|
|
|
_updateSpacerVisibility: function() {
|
|
|
|
if (Main.overview.animationInProgress && !Main.overview.visibleTarget)
|
|
|
|
return;
|
|
|
|
|
2013-02-25 18:05:45 -05:00
|
|
|
let activePage = this.viewSelector.getActivePage();
|
|
|
|
this._dashSpacer.visible = (activePage == ViewSelector.ViewPage.WINDOWS);
|
2013-02-21 12:48:09 -05:00
|
|
|
},
|
|
|
|
|
2013-02-15 20:50:26 -05:00
|
|
|
_onPageEmpty: function() {
|
2013-09-26 16:20:06 -04:00
|
|
|
this._dashSlider.pageEmpty();
|
|
|
|
this._thumbnailsSlider.pageEmpty();
|
2013-02-21 12:48:09 -05:00
|
|
|
|
|
|
|
this._updateSpacerVisibility();
|
2013-02-15 18:25:36 -05:00
|
|
|
}
|
|
|
|
});
|