2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2010-06-22 17:02:26 -04:00
|
|
|
|
2010-10-07 14:15:51 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2012-08-26 09:49:18 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
2011-02-08 14:53:43 -05:00
|
|
|
const Gtk = imports.gi.Gtk;
|
2011-06-09 11:50:24 -04:00
|
|
|
const Lang = imports.lang;
|
|
|
|
const Shell = imports.gi.Shell;
|
2011-08-22 17:19:13 -04:00
|
|
|
const Signals = imports.signals;
|
2010-06-22 17:02:26 -04:00
|
|
|
const St = imports.gi.St;
|
2012-02-27 11:31:10 -05:00
|
|
|
const Atk = imports.gi.Atk;
|
2011-02-08 14:53:43 -05:00
|
|
|
|
2010-06-22 17:02:26 -04:00
|
|
|
const Main = imports.ui.main;
|
2011-06-09 11:50:24 -04:00
|
|
|
const Params = imports.misc.params;
|
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
|
2017-07-18 13:41:25 -04:00
|
|
|
var ButtonBox = new Lang.Class({
|
2011-11-20 09:38:48 -05:00
|
|
|
Name: 'ButtonBox',
|
2018-07-06 04:48:15 -04:00
|
|
|
Extends: St.Widget,
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(params) {
|
2011-06-09 11:50:24 -04:00
|
|
|
params = Params.parse(params, { style_class: 'panel-button' }, true);
|
2018-07-06 04:48:15 -04:00
|
|
|
|
|
|
|
this.parent(params);
|
|
|
|
|
|
|
|
this.actor = this;
|
|
|
|
this._delegate = this;
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2012-09-04 12:27:50 -04:00
|
|
|
this.container = new St.Bin({ y_fill: true,
|
|
|
|
x_fill: true,
|
|
|
|
child: this.actor });
|
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
this.connect('style-changed', this._onStyleChanged.bind(this));
|
2018-08-28 21:37:27 -04:00
|
|
|
this.connect('destroy', this._onDestroy.bind(this));
|
|
|
|
|
2011-06-09 11:50:24 -04:00
|
|
|
this._minHPadding = this._natHPadding = 0.0;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onStyleChanged(actor) {
|
2011-06-09 11:50:24 -04:00
|
|
|
let themeNode = actor.get_theme_node();
|
|
|
|
|
|
|
|
this._minHPadding = themeNode.get_length('-minimum-hpadding');
|
|
|
|
this._natHPadding = themeNode.get_length('-natural-hpadding');
|
|
|
|
},
|
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
vfunc_get_preferred_width(forHeight) {
|
|
|
|
let child = this.get_first_child();
|
|
|
|
let minimumSize, naturalSize;
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
if (child)
|
|
|
|
[minimumSize, naturalSize] = child.get_preferred_width(-1);
|
|
|
|
else
|
|
|
|
minimumSize = naturalSize = 0;
|
|
|
|
|
|
|
|
minimumSize += 2 * this._minHPadding;
|
|
|
|
naturalSize += 2 * this._natHPadding;
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
return [minimumSize, naturalSize];
|
2011-06-09 11:50:24 -04:00
|
|
|
},
|
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
vfunc_get_preferred_height(forWidth) {
|
|
|
|
let child = this.get_first_child();
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
if (child)
|
|
|
|
return child.get_preferred_height(-1);
|
|
|
|
|
|
|
|
return [0, 0];
|
2011-06-09 11:50:24 -04:00
|
|
|
},
|
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
vfunc_allocate(box, flags) {
|
|
|
|
this.set_allocation(box, flags);
|
|
|
|
|
|
|
|
let child = this.get_first_child();
|
2014-06-08 15:18:49 -04:00
|
|
|
if (!child)
|
2011-06-09 11:50:24 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
let [minWidth, natWidth] = child.get_preferred_width(-1);
|
|
|
|
|
|
|
|
let availWidth = box.x2 - box.x1;
|
|
|
|
let availHeight = box.y2 - box.y1;
|
|
|
|
|
|
|
|
let childBox = new Clutter.ActorBox();
|
|
|
|
if (natWidth + 2 * this._natHPadding <= availWidth) {
|
|
|
|
childBox.x1 = this._natHPadding;
|
|
|
|
childBox.x2 = availWidth - this._natHPadding;
|
|
|
|
} else {
|
|
|
|
childBox.x1 = this._minHPadding;
|
|
|
|
childBox.x2 = availWidth - this._minHPadding;
|
|
|
|
}
|
|
|
|
|
2013-08-03 08:30:46 -04:00
|
|
|
childBox.y1 = 0;
|
|
|
|
childBox.y2 = availHeight;
|
2011-06-09 11:50:24 -04:00
|
|
|
|
|
|
|
child.allocate(childBox, flags);
|
|
|
|
},
|
2018-08-28 21:37:27 -04:00
|
|
|
|
|
|
|
_onDestroy() {
|
|
|
|
this.container.child = null;
|
|
|
|
this.container.destroy();
|
|
|
|
},
|
2011-11-20 09:38:48 -05:00
|
|
|
});
|
2010-06-22 17:02:26 -04:00
|
|
|
|
2017-07-18 13:41:25 -04:00
|
|
|
var Button = new Lang.Class({
|
2011-11-20 09:38:48 -05:00
|
|
|
Name: 'PanelMenuButton',
|
|
|
|
Extends: ButtonBox,
|
2018-07-06 04:48:15 -04:00
|
|
|
Signals: {'menu-set': {} },
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(menuAlignment, nameText, dontCreateMenu) {
|
2011-11-20 09:38:48 -05:00
|
|
|
this.parent({ reactive: true,
|
|
|
|
can_focus: true,
|
2012-02-27 11:31:10 -05:00
|
|
|
track_hover: true,
|
2013-08-13 07:56:43 -04:00
|
|
|
accessible_name: nameText ? nameText : "",
|
2012-02-27 11:31:10 -05:00
|
|
|
accessible_role: Atk.Role.MENU });
|
2011-06-09 11:50:24 -04:00
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
this.connect('event', this._onEvent.bind(this));
|
|
|
|
this.connect('notify::visible', this._onVisibilityChanged.bind(this));
|
2011-05-15 12:55:23 -04:00
|
|
|
|
|
|
|
if (dontCreateMenu)
|
2012-12-04 14:52:34 -05:00
|
|
|
this.menu = new PopupMenu.PopupDummyMenu(this.actor);
|
2011-05-15 12:55:23 -04:00
|
|
|
else
|
|
|
|
this.setMenu(new PopupMenu.PopupMenu(this.actor, menuAlignment, St.Side.TOP, 0));
|
2012-01-05 13:00:06 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
setSensitive(sensitive) {
|
2018-07-06 04:48:15 -04:00
|
|
|
this.reactive = sensitive;
|
|
|
|
this.can_focus = sensitive;
|
|
|
|
this.track_hover = sensitive;
|
2012-09-01 17:44:46 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
setMenu(menu) {
|
2011-05-15 12:55:23 -04:00
|
|
|
if (this.menu)
|
|
|
|
this.menu.destroy();
|
|
|
|
|
|
|
|
this.menu = menu;
|
|
|
|
if (this.menu) {
|
|
|
|
this.menu.actor.add_style_class_name('panel-menu');
|
2017-12-01 19:27:35 -05:00
|
|
|
this.menu.connect('open-state-changed', this._onOpenStateChanged.bind(this));
|
|
|
|
this.menu.actor.connect('key-press-event', this._onMenuKeyPress.bind(this));
|
2011-05-15 12:55:23 -04:00
|
|
|
|
|
|
|
Main.uiGroup.add_actor(this.menu.actor);
|
|
|
|
this.menu.actor.hide();
|
|
|
|
}
|
2015-04-28 05:05:58 -04:00
|
|
|
this.emit('menu-set');
|
2010-06-22 17:02:26 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onEvent(actor, event) {
|
2014-07-22 06:28:00 -04:00
|
|
|
if (this.menu &&
|
|
|
|
(event.type() == Clutter.EventType.TOUCH_BEGIN ||
|
|
|
|
event.type() == Clutter.EventType.BUTTON_PRESS))
|
|
|
|
this.menu.toggle();
|
2011-05-15 12:55:23 -04:00
|
|
|
|
2013-11-29 13:17:34 -05:00
|
|
|
return Clutter.EVENT_PROPAGATE;
|
2010-06-22 17:02:26 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onVisibilityChanged() {
|
2013-07-03 09:55:35 -04:00
|
|
|
if (!this.menu)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!this.actor.visible)
|
|
|
|
this.menu.close();
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onMenuKeyPress(actor, event) {
|
2013-05-03 21:33:05 -04:00
|
|
|
if (global.focus_manager.navigate_from_event(event))
|
2013-11-29 13:17:34 -05:00
|
|
|
return Clutter.EVENT_STOP;
|
2013-05-03 21:33:05 -04:00
|
|
|
|
2011-02-08 14:53:43 -05:00
|
|
|
let symbol = event.get_key_symbol();
|
|
|
|
if (symbol == Clutter.KEY_Left || symbol == Clutter.KEY_Right) {
|
2012-08-15 12:22:01 -04:00
|
|
|
let group = global.focus_manager.get_group(this.actor);
|
2011-02-08 14:53:43 -05:00
|
|
|
if (group) {
|
|
|
|
let direction = (symbol == Clutter.KEY_Left) ? Gtk.DirectionType.LEFT : Gtk.DirectionType.RIGHT;
|
|
|
|
group.navigate_focus(this.actor, direction, false);
|
2013-11-29 13:17:34 -05:00
|
|
|
return Clutter.EVENT_STOP;
|
2011-02-08 14:53:43 -05:00
|
|
|
}
|
|
|
|
}
|
2013-11-29 13:17:34 -05:00
|
|
|
return Clutter.EVENT_PROPAGATE;
|
2011-02-08 14:53:43 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onOpenStateChanged(menu, open) {
|
2010-11-03 13:30:08 -04:00
|
|
|
if (open)
|
2011-02-08 13:46:05 -05:00
|
|
|
this.actor.add_style_pseudo_class('active');
|
2010-11-03 13:30:08 -04:00
|
|
|
else
|
2011-02-08 13:46:05 -05:00
|
|
|
this.actor.remove_style_pseudo_class('active');
|
2012-02-28 13:09:56 -05:00
|
|
|
|
|
|
|
// Setting the max-height won't do any good if the minimum height of the
|
|
|
|
// menu is higher then the screen; it's useful if part of the menu is
|
|
|
|
// scrollable so the minimum height is smaller than the natural height
|
2013-01-28 00:09:12 -05:00
|
|
|
let workArea = Main.layoutManager.getWorkAreaForMonitor(Main.layoutManager.primaryIndex);
|
2017-04-06 21:17:12 -04:00
|
|
|
let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor;
|
2015-02-13 14:52:11 -05:00
|
|
|
let verticalMargins = this.menu.actor.margin_top + this.menu.actor.margin_bottom;
|
2017-04-06 21:17:12 -04:00
|
|
|
|
|
|
|
// The workarea and margin dimensions are in physical pixels, but CSS
|
|
|
|
// measures are in logical pixels, so make sure to consider the scale
|
|
|
|
// factor when computing max-height
|
|
|
|
let maxHeight = Math.round((workArea.height - verticalMargins) / scaleFactor);
|
|
|
|
this.menu.actor.style = ('max-height: %spx;').format(maxHeight);
|
2011-08-22 17:19:13 -04:00
|
|
|
},
|
|
|
|
|
2018-07-06 04:48:15 -04:00
|
|
|
_onDestroy() {
|
2018-08-28 21:37:27 -04:00
|
|
|
this.parent();
|
|
|
|
|
2012-10-26 06:34:45 -04:00
|
|
|
if (this.menu)
|
|
|
|
this.menu.destroy();
|
2010-06-22 17:02:26 -04:00
|
|
|
}
|
2011-11-20 09:38:48 -05:00
|
|
|
});
|
2010-06-22 17:06:17 -04:00
|
|
|
|
2013-06-06 17:27:25 -04:00
|
|
|
/* SystemIndicator:
|
2010-06-22 17:06:17 -04:00
|
|
|
*
|
2013-06-06 17:27:25 -04:00
|
|
|
* This class manages one system indicator, which are the icons
|
|
|
|
* that you see at the top right. A system indicator is composed
|
|
|
|
* of an icon and a menu section, which will be composed into the
|
|
|
|
* aggregate menu.
|
2010-06-22 17:06:17 -04:00
|
|
|
*/
|
2017-07-18 13:41:25 -04:00
|
|
|
var SystemIndicator = new Lang.Class({
|
2013-06-06 17:27:25 -04:00
|
|
|
Name: 'SystemIndicator',
|
2010-06-22 17:06:17 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2013-06-06 17:27:32 -04:00
|
|
|
this.indicators = new St.BoxLayout({ style_class: 'panel-status-indicators-box',
|
|
|
|
reactive: true });
|
2013-07-15 19:46:25 -04:00
|
|
|
this.indicators.hide();
|
2013-06-06 17:27:32 -04:00
|
|
|
this.menu = new PopupMenu.PopupMenuSection();
|
2012-12-20 20:25:54 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_syncIndicatorsVisible() {
|
2017-10-30 20:38:18 -04:00
|
|
|
this.indicators.visible = this.indicators.get_children().some(a => a.visible);
|
2013-07-15 19:46:25 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_addIndicator() {
|
2013-07-19 06:05:47 -04:00
|
|
|
let icon = new St.Icon({ style_class: 'system-status-icon' });
|
2013-06-06 17:27:25 -04:00
|
|
|
this.indicators.add_actor(icon);
|
2017-12-01 19:27:35 -05:00
|
|
|
icon.connect('notify::visible', this._syncIndicatorsVisible.bind(this));
|
2013-07-15 19:46:25 -04:00
|
|
|
this._syncIndicatorsVisible();
|
2012-08-26 09:49:18 -04:00
|
|
|
return icon;
|
2010-06-22 17:06:17 -04:00
|
|
|
}
|
2011-11-20 09:38:48 -05:00
|
|
|
});
|
2013-06-06 17:27:32 -04:00
|
|
|
Signals.addSignalMethods(SystemIndicator.prototype);
|