2008-12-01 14:51:43 -05:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
2008-11-21 09:02:09 -05:00
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
2009-09-15 13:09:51 -04:00
|
|
|
const Lang = imports.lang;
|
2008-11-21 16:34:10 -05:00
|
|
|
const Meta = imports.gi.Meta;
|
2010-02-10 17:26:24 -05:00
|
|
|
const St = imports.gi.St;
|
2008-11-21 09:02:09 -05:00
|
|
|
|
2009-04-13 10:55:41 -04:00
|
|
|
const AltTab = imports.ui.altTab;
|
2010-02-12 17:52:15 -05:00
|
|
|
const WorkspaceSwitcherPopup = imports.ui.workspaceSwitcherPopup;
|
2008-11-21 09:02:09 -05:00
|
|
|
const Main = imports.ui.main;
|
2009-02-10 11:12:58 -05:00
|
|
|
const Tweener = imports.ui.tweener;
|
2008-11-21 09:02:09 -05:00
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
const WINDOW_ANIMATION_TIME = 0.25;
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2008-11-21 10:10:11 -05:00
|
|
|
function WindowManager() {
|
|
|
|
this._init();
|
2008-11-21 09:02:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
WindowManager.prototype = {
|
2008-12-01 14:51:43 -05:00
|
|
|
_init : function() {
|
2010-03-15 22:06:58 -04:00
|
|
|
this._shellwm = global.window_manager;
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2010-03-15 22:06:58 -04:00
|
|
|
this._keyBindingHandlers = [];
|
2008-12-28 23:44:03 -05:00
|
|
|
this._minimizing = [];
|
|
|
|
this._maximizing = [];
|
|
|
|
this._unmaximizing = [];
|
|
|
|
this._mapping = [];
|
|
|
|
this._destroying = [];
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
this._switchData = null;
|
2010-03-15 22:06:58 -04:00
|
|
|
this._shellwm.connect('kill-switch-workspace', Lang.bind(this, this._switchWorkspaceDone));
|
2010-06-16 17:28:57 -04:00
|
|
|
this._shellwm.connect('kill-window-effects', Lang.bind(this, function (shellwm, actor) {
|
|
|
|
this._minimizeWindowDone(shellwm, actor);
|
|
|
|
this._maximizeWindowDone(shellwm, actor);
|
|
|
|
this._unmaximizeWindowDone(shellwm, actor);
|
|
|
|
this._mapWindowDone(shellwm, actor);
|
|
|
|
this._destroyWindowDone(shellwm, actor);
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._shellwm.connect('switch-workspace', Lang.bind(this, this._switchWorkspace));
|
2010-03-15 22:06:58 -04:00
|
|
|
this._shellwm.connect('minimize', Lang.bind(this, this._minimizeWindow));
|
|
|
|
this._shellwm.connect('maximize', Lang.bind(this, this._maximizeWindow));
|
|
|
|
this._shellwm.connect('unmaximize', Lang.bind(this, this._unmaximizeWindow));
|
|
|
|
this._shellwm.connect('map', Lang.bind(this, this._mapWindow));
|
|
|
|
this._shellwm.connect('destroy', Lang.bind(this, this._destroyWindow));
|
2010-02-12 17:52:15 -05:00
|
|
|
|
|
|
|
this._workspaceSwitcherPopup = null;
|
2010-03-15 22:06:58 -04:00
|
|
|
this.setKeybindingHandler('switch_to_workspace_left', Lang.bind(this, this._showWorkspaceSwitcher));
|
|
|
|
this.setKeybindingHandler('switch_to_workspace_right', Lang.bind(this, this._showWorkspaceSwitcher));
|
|
|
|
this.setKeybindingHandler('switch_to_workspace_up', Lang.bind(this, this._showWorkspaceSwitcher));
|
|
|
|
this.setKeybindingHandler('switch_to_workspace_down', Lang.bind(this, this._showWorkspaceSwitcher));
|
|
|
|
this.setKeybindingHandler('switch_windows', Lang.bind(this, this._startAppSwitcher));
|
|
|
|
},
|
|
|
|
|
|
|
|
setKeybindingHandler: function(keybinding, handler){
|
|
|
|
if (this._keyBindingHandlers[keybinding])
|
|
|
|
this._shellwm.disconnect(this._keyBindingHandlers[keybinding]);
|
|
|
|
else
|
|
|
|
this._shellwm.takeover_keybinding(keybinding);
|
2010-02-12 17:52:15 -05:00
|
|
|
|
2010-03-15 22:06:58 -04:00
|
|
|
this._keyBindingHandlers[keybinding] =
|
|
|
|
this._shellwm.connect('keybinding::' + keybinding, handler);
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-02-03 13:25:34 -05:00
|
|
|
_shouldAnimate : function(actor) {
|
2009-08-11 07:46:10 -04:00
|
|
|
if (Main.overview.visible)
|
2009-02-03 13:25:34 -05:00
|
|
|
return false;
|
|
|
|
if (actor && (actor.get_window_type() != Meta.CompWindowType.NORMAL))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
},
|
2008-12-28 23:44:03 -05:00
|
|
|
|
2009-02-05 19:57:54 -05:00
|
|
|
_removeEffect : function(list, actor) {
|
|
|
|
let idx = list.indexOf(actor);
|
|
|
|
if (idx != -1) {
|
|
|
|
list.splice(idx, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_minimizeWindow : function(shellwm, actor) {
|
2009-02-03 13:25:34 -05:00
|
|
|
if (!this._shouldAnimate(actor)) {
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_minimize(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
actor.set_scale(1.0, 1.0);
|
|
|
|
actor.move_anchor_point_from_gravity(Clutter.Gravity.CENTER);
|
|
|
|
|
|
|
|
/* scale window down to 0x0.
|
|
|
|
* maybe TODO: get icon geometry passed through and move the window towards it?
|
|
|
|
*/
|
|
|
|
this._minimizing.push(actor);
|
2010-02-05 07:50:11 -05:00
|
|
|
|
|
|
|
let primary = global.get_primary_monitor();
|
2010-02-10 17:26:24 -05:00
|
|
|
let xDest = primary.x;
|
|
|
|
if (St.Widget.get_default_direction() == St.TextDirection.RTL)
|
|
|
|
xDest += primary.width;
|
2010-02-05 07:50:11 -05:00
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
Tweener.addTween(actor,
|
|
|
|
{ scale_x: 0.0,
|
|
|
|
scale_y: 0.0,
|
2010-02-10 17:26:24 -05:00
|
|
|
x: xDest,
|
2010-02-05 07:50:11 -05:00
|
|
|
y: 0,
|
2008-12-28 23:44:03 -05:00
|
|
|
time: WINDOW_ANIMATION_TIME,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad',
|
2008-12-28 23:44:03 -05:00
|
|
|
onComplete: this._minimizeWindowDone,
|
|
|
|
onCompleteScope: this,
|
2009-09-15 13:09:51 -04:00
|
|
|
onCompleteParams: [shellwm, actor],
|
2009-02-05 19:57:54 -05:00
|
|
|
onOverwrite: this._minimizeWindowOverwritten,
|
|
|
|
onOverwriteScope: this,
|
2009-09-15 13:09:51 -04:00
|
|
|
onOverwriteParams: [shellwm, actor]
|
2008-12-28 23:44:03 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_minimizeWindowDone : function(shellwm, actor) {
|
2009-02-05 19:57:54 -05:00
|
|
|
if (this._removeEffect(this._minimizing, actor)) {
|
2008-12-28 23:44:03 -05:00
|
|
|
Tweener.removeTweens(actor);
|
|
|
|
actor.set_scale(1.0, 1.0);
|
|
|
|
actor.move_anchor_point_from_gravity(Clutter.Gravity.NORTH_WEST);
|
2009-02-05 19:57:54 -05:00
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_minimize(actor);
|
2009-02-05 19:57:54 -05:00
|
|
|
}
|
|
|
|
},
|
2008-12-28 23:44:03 -05:00
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_minimizeWindowOverwritten : function(shellwm, actor) {
|
2009-02-05 19:57:54 -05:00
|
|
|
if (this._removeEffect(this._minimizing, actor)) {
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_minimize(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
},
|
2009-02-05 19:57:54 -05:00
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_maximizeWindow : function(shellwm, actor, targetX, targetY, targetWidth, targetHeight) {
|
|
|
|
shellwm.completed_maximize(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_maximizeWindowDone : function(shellwm, actor) {
|
2009-02-05 19:57:54 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_maximizeWindowOverwrite : function(shellwm, actor) {
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_unmaximizeWindow : function(shellwm, actor, targetX, targetY, targetWidth, targetHeight) {
|
|
|
|
shellwm.completed_unmaximize(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_unmaximizeWindowDone : function(shellwm, actor) {
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_mapWindow : function(shellwm, actor) {
|
2009-02-03 13:25:34 -05:00
|
|
|
if (!this._shouldAnimate(actor)) {
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_map(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-02 13:44:05 -04:00
|
|
|
actor.opacity = 0;
|
2008-12-28 23:44:03 -05:00
|
|
|
actor.show();
|
2010-04-02 14:30:10 -04:00
|
|
|
|
|
|
|
/* Fade window in */
|
2008-12-28 23:44:03 -05:00
|
|
|
this._mapping.push(actor);
|
|
|
|
Tweener.addTween(actor,
|
2010-04-02 13:44:05 -04:00
|
|
|
{ opacity: 255,
|
2008-12-28 23:44:03 -05:00
|
|
|
time: WINDOW_ANIMATION_TIME,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad',
|
2008-12-28 23:44:03 -05:00
|
|
|
onComplete: this._mapWindowDone,
|
|
|
|
onCompleteScope: this,
|
2009-09-15 13:09:51 -04:00
|
|
|
onCompleteParams: [shellwm, actor],
|
2009-02-05 19:57:54 -05:00
|
|
|
onOverwrite: this._mapWindowOverwrite,
|
|
|
|
onOverwriteScope: this,
|
2009-09-15 13:09:51 -04:00
|
|
|
onOverwriteParams: [shellwm, actor]
|
2008-12-28 23:44:03 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_mapWindowDone : function(shellwm, actor) {
|
2009-02-05 19:57:54 -05:00
|
|
|
if (this._removeEffect(this._mapping, actor)) {
|
2008-12-28 23:44:03 -05:00
|
|
|
Tweener.removeTweens(actor);
|
2010-04-02 14:30:10 -04:00
|
|
|
actor.opacity = 255;
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_map(actor);
|
2009-02-05 19:57:54 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_mapWindowOverwrite : function(shellwm, actor) {
|
2009-02-05 19:57:54 -05:00
|
|
|
if (this._removeEffect(this._mapping, actor)) {
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_map(actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_destroyWindow : function(shellwm, actor) {
|
2009-09-26 17:32:22 -04:00
|
|
|
shellwm.completed_destroy(actor);
|
2008-12-01 14:51:43 -05:00
|
|
|
},
|
2008-12-28 23:44:03 -05:00
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_destroyWindowDone : function(shellwm, actor) {
|
2008-12-28 23:44:03 -05:00
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_switchWorkspace : function(shellwm, from, to, direction) {
|
2009-02-03 13:25:34 -05:00
|
|
|
if (!this._shouldAnimate()) {
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_switch_workspace();
|
2008-12-04 10:16:16 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-06-16 17:28:57 -04:00
|
|
|
let windows = global.get_windows();
|
2009-09-15 13:09:51 -04:00
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
/* @direction is the direction that the "camera" moves, so the
|
|
|
|
* screen contents have to move one screen's worth in the
|
|
|
|
* opposite direction.
|
|
|
|
*/
|
|
|
|
let xDest = 0, yDest = 0;
|
|
|
|
|
|
|
|
if (direction == Meta.MotionDirection.UP ||
|
2008-11-21 16:34:10 -05:00
|
|
|
direction == Meta.MotionDirection.UP_LEFT ||
|
|
|
|
direction == Meta.MotionDirection.UP_RIGHT)
|
2009-09-11 17:23:23 -04:00
|
|
|
yDest = global.screen_height;
|
2008-12-01 14:51:43 -05:00
|
|
|
else if (direction == Meta.MotionDirection.DOWN ||
|
2008-11-21 16:34:10 -05:00
|
|
|
direction == Meta.MotionDirection.DOWN_LEFT ||
|
|
|
|
direction == Meta.MotionDirection.DOWN_RIGHT)
|
2009-09-11 17:23:23 -04:00
|
|
|
yDest = -global.screen_height;
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
if (direction == Meta.MotionDirection.LEFT ||
|
2008-11-21 16:34:10 -05:00
|
|
|
direction == Meta.MotionDirection.UP_LEFT ||
|
|
|
|
direction == Meta.MotionDirection.DOWN_LEFT)
|
2009-09-11 17:23:23 -04:00
|
|
|
xDest = global.screen_width;
|
2008-12-01 14:51:43 -05:00
|
|
|
else if (direction == Meta.MotionDirection.RIGHT ||
|
|
|
|
direction == Meta.MotionDirection.UP_RIGHT ||
|
|
|
|
direction == Meta.MotionDirection.DOWN_RIGHT)
|
2009-09-11 17:23:23 -04:00
|
|
|
xDest = -global.screen_width;
|
2008-12-01 14:51:43 -05:00
|
|
|
|
|
|
|
let switchData = {};
|
|
|
|
this._switchData = switchData;
|
|
|
|
switchData.inGroup = new Clutter.Group();
|
|
|
|
switchData.outGroup = new Clutter.Group();
|
|
|
|
switchData.windows = [];
|
|
|
|
|
2009-09-11 17:23:23 -04:00
|
|
|
let wgroup = global.window_group;
|
2008-12-01 14:51:43 -05:00
|
|
|
wgroup.add_actor(switchData.inGroup);
|
|
|
|
wgroup.add_actor(switchData.outGroup);
|
|
|
|
|
|
|
|
for (let i = 0; i < windows.length; i++) {
|
|
|
|
let window = windows[i];
|
2009-05-11 13:06:42 -04:00
|
|
|
|
|
|
|
if (!window.meta_window.showing_on_its_workspace())
|
|
|
|
continue;
|
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
if (window.get_workspace() == from) {
|
|
|
|
switchData.windows.push({ window: window,
|
|
|
|
parent: window.get_parent() });
|
|
|
|
window.reparent(switchData.outGroup);
|
|
|
|
} else if (window.get_workspace() == to) {
|
|
|
|
switchData.windows.push({ window: window,
|
|
|
|
parent: window.get_parent() });
|
|
|
|
window.reparent(switchData.inGroup);
|
|
|
|
window.show_all();
|
|
|
|
}
|
2008-11-21 16:34:10 -05:00
|
|
|
}
|
|
|
|
|
2008-12-01 14:51:43 -05:00
|
|
|
switchData.inGroup.set_position(-xDest, -yDest);
|
|
|
|
switchData.inGroup.raise_top();
|
|
|
|
|
|
|
|
Tweener.addTween(switchData.outGroup,
|
|
|
|
{ x: xDest,
|
|
|
|
y: yDest,
|
2009-05-13 15:24:32 -04:00
|
|
|
time: WINDOW_ANIMATION_TIME,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad',
|
2009-01-08 18:34:19 -05:00
|
|
|
onComplete: this._switchWorkspaceDone,
|
2009-09-15 13:09:51 -04:00
|
|
|
onCompleteScope: this,
|
|
|
|
onCompleteParams: [shellwm]
|
2008-12-01 14:51:43 -05:00
|
|
|
});
|
|
|
|
Tweener.addTween(switchData.inGroup,
|
|
|
|
{ x: 0,
|
|
|
|
y: 0,
|
2009-05-13 15:24:32 -04:00
|
|
|
time: WINDOW_ANIMATION_TIME,
|
2010-05-13 15:46:04 -04:00
|
|
|
transition: 'easeOutQuad'
|
2008-12-01 14:51:43 -05:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
_switchWorkspaceDone : function(shellwm) {
|
2008-12-01 14:51:43 -05:00
|
|
|
let switchData = this._switchData;
|
|
|
|
if (!switchData)
|
|
|
|
return;
|
|
|
|
this._switchData = null;
|
|
|
|
|
|
|
|
for (let i = 0; i < switchData.windows.length; i++) {
|
|
|
|
let w = switchData.windows[i];
|
|
|
|
if (w.window.get_parent() == switchData.outGroup) {
|
|
|
|
w.window.reparent(w.parent);
|
|
|
|
w.window.hide();
|
|
|
|
} else
|
|
|
|
w.window.reparent(w.parent);
|
|
|
|
}
|
|
|
|
Tweener.removeTweens(switchData.inGroup);
|
|
|
|
Tweener.removeTweens(switchData.outGroup);
|
|
|
|
switchData.inGroup.destroy();
|
|
|
|
switchData.outGroup.destroy();
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2009-09-15 13:09:51 -04:00
|
|
|
shellwm.completed_switch_workspace();
|
2009-04-13 10:55:41 -04:00
|
|
|
},
|
|
|
|
|
2009-09-15 11:11:32 -04:00
|
|
|
_startAppSwitcher : function(shellwm, binding, window, backwards) {
|
2010-02-12 17:52:15 -05:00
|
|
|
/* prevent a corner case where both popups show up at once */
|
|
|
|
if (this._workspaceSwitcherPopup != null)
|
|
|
|
this._workspaceSwitcherPopup.actor.hide();
|
|
|
|
|
2009-09-15 11:11:32 -04:00
|
|
|
let tabPopup = new AltTab.AltTabPopup();
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2009-10-01 05:23:00 -04:00
|
|
|
if (!tabPopup.show(backwards))
|
2009-09-15 11:11:32 -04:00
|
|
|
tabPopup.destroy();
|
2010-02-12 17:52:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_showWorkspaceSwitcher : function(shellwm, binding, window, backwards) {
|
|
|
|
/* We don't support this kind of layout */
|
2010-05-13 15:46:04 -04:00
|
|
|
if (binding == 'switch_to_workspace_up' || binding == 'switch_to_workspace_down')
|
2010-02-12 17:52:15 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (global.screen.n_workspaces == 1)
|
|
|
|
return;
|
|
|
|
|
2010-03-18 14:53:58 -04:00
|
|
|
if (this._workspaceSwitcherPopup == null)
|
2010-02-12 17:52:15 -05:00
|
|
|
this._workspaceSwitcherPopup = new WorkspaceSwitcherPopup.WorkspaceSwitcherPopup();
|
|
|
|
|
2010-05-13 15:46:04 -04:00
|
|
|
if (binding == 'switch_to_workspace_left') {
|
2010-03-16 22:08:52 -04:00
|
|
|
this.actionMoveWorkspaceLeft();
|
2010-02-12 17:52:15 -05:00
|
|
|
}
|
|
|
|
|
2010-05-13 15:46:04 -04:00
|
|
|
if (binding == 'switch_to_workspace_right') {
|
2010-03-16 22:08:52 -04:00
|
|
|
this.actionMoveWorkspaceRight();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
actionMoveWorkspaceLeft: function() {
|
|
|
|
let activeWorkspaceIndex = global.screen.get_active_workspace_index();
|
|
|
|
if (activeWorkspaceIndex > 0) {
|
|
|
|
global.screen.get_workspace_by_index(activeWorkspaceIndex - 1).activate(global.get_current_time());
|
2010-03-18 14:53:58 -04:00
|
|
|
if (!Main.overview.visible)
|
2010-03-16 22:08:52 -04:00
|
|
|
this._workspaceSwitcherPopup.display(WorkspaceSwitcherPopup.LEFT, activeWorkspaceIndex - 1);
|
2010-03-18 14:53:58 -04:00
|
|
|
} else if (!Main.overview.visible) {
|
2010-03-16 22:08:52 -04:00
|
|
|
this._workspaceSwitcherPopup.display(WorkspaceSwitcherPopup.LEFT, activeWorkspaceIndex);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
actionMoveWorkspaceRight: function() {
|
|
|
|
let activeWorkspaceIndex = global.screen.get_active_workspace_index();
|
|
|
|
if (activeWorkspaceIndex < global.screen.n_workspaces - 1) {
|
|
|
|
global.screen.get_workspace_by_index(activeWorkspaceIndex + 1).activate(global.get_current_time());
|
2010-03-18 14:53:58 -04:00
|
|
|
if (!Main.overview.visible)
|
2010-02-12 17:52:15 -05:00
|
|
|
this._workspaceSwitcherPopup.display(WorkspaceSwitcherPopup.RIGHT, activeWorkspaceIndex + 1);
|
2010-03-18 14:53:58 -04:00
|
|
|
} else if (!Main.overview.visible) {
|
2010-03-16 22:08:52 -04:00
|
|
|
this._workspaceSwitcherPopup.display(WorkspaceSwitcherPopup.RIGHT, activeWorkspaceIndex);
|
2010-02-12 17:52:15 -05:00
|
|
|
}
|
2009-09-15 11:11:32 -04:00
|
|
|
}
|
2008-11-21 09:02:09 -05:00
|
|
|
};
|