1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
|
// This file is part of the AppIndicator/KStatusNotifierItem GNOME Shell extension
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
const Atk = imports.gi.Atk
const Clutter = imports.gi.Clutter
const Gio = imports.gi.Gio
const GLib = imports.gi.GLib
const GdkPixbuf = imports.gi.GdkPixbuf
const PopupMenu = imports.ui.popupMenu
const Signals = imports.signals
const St = imports.gi.St
const Extension = imports.misc.extensionUtils.getCurrentExtension()
const DBusInterfaces = Extension.imports.interfaces
const Util = Extension.imports.util
//////////////////////////////////////////////////////////////////////////
// PART ONE: "ViewModel" backend implementation.
// Both code and design are inspired by libdbusmenu
//////////////////////////////////////////////////////////////////////////
/**
* Saves menu property values and handles type checking and defaults
*/
var PropertyStore = class AppIndicators_PropertyStore {
constructor(initial_properties) {
this._props = new Map();
if (initial_properties) {
for (let i in initial_properties) {
this.set(i, initial_properties[i])
}
}
}
set(name, value) {
if (name in PropertyStore.MandatedTypes && value && !value.is_of_type(PropertyStore.MandatedTypes[name]))
Util.Logger.warn("Cannot set property "+name+": type mismatch!")
else if (value)
this._props.set(name, value);
else
this._props.delete(name);
}
get(name) {
let prop = this._props.get(name);
if (prop)
return prop;
else if (name in PropertyStore.DefaultValues)
return PropertyStore.DefaultValues[name]
else
return null
}
};
// we list all the properties we know and use here, so we won' have to deal with unexpected type mismatches
PropertyStore.MandatedTypes = {
'visible' : GLib.VariantType.new("b"),
'enabled' : GLib.VariantType.new("b"),
'label' : GLib.VariantType.new("s"),
'type' : GLib.VariantType.new("s"),
'children-display' : GLib.VariantType.new("s"),
'icon-name' : GLib.VariantType.new("s"),
'icon-data' : GLib.VariantType.new("ay"),
'toggle-type' : GLib.VariantType.new("s"),
'toggle-state' : GLib.VariantType.new("i")
}
PropertyStore.DefaultValues = {
'visible': GLib.Variant.new_boolean(true),
'enabled': GLib.Variant.new_boolean(true),
'label' : GLib.Variant.new_string(''),
'type' : GLib.Variant.new_string("standard")
// elements not in here must return null
}
/**
* Represents a single menu item
*/
var DbusMenuItem = class AppIndicators_DbusMenuItem {
// will steal the properties object
constructor(client, id, properties, children_ids) {
this._client = client
this._id = id
this._propStore = new PropertyStore(properties)
this._children_ids = children_ids
}
property_get(prop_name) {
let prop = this.property_get_variant(prop_name)
return prop ? prop.get_string()[0] : null
}
property_get_variant(prop_name) {
return this._propStore.get(prop_name)
}
property_get_bool(prop_name) {
let prop = this.property_get_variant(prop_name)
return prop ? prop.get_boolean() : false
}
property_get_int(prop_name) {
let prop = this.property_get_variant(prop_name)
return prop ? prop.get_int32() : 0
}
property_set(prop, value) {
this._propStore.set(prop, value)
this.emit('property-changed', prop, this.property_get_variant(prop))
}
get_children_ids() {
return this._children_ids.concat() // clone it!
}
add_child(pos, child_id) {
this._children_ids.splice(pos, 0, child_id)
this.emit('child-added', this._client.get_item(child_id), pos)
}
remove_child(child_id) {
// find it
let pos = -1
for (let i = 0; i < this._children_ids.length; ++i) {
if (this._children_ids[i] == child_id) {
pos = i
break
}
}
if (pos < 0) {
Util.Logger.critical("Trying to remove child which doesn't exist")
} else {
this._children_ids.splice(pos, 1)
this.emit('child-removed', this._client.get_item(child_id))
}
}
move_child(child_id, newpos) {
// find the old position
let oldpos = -1
for (let i = 0; i < this._children_ids.length; ++i) {
if (this._children_ids[i] == child_id) {
oldpos = i
break
}
}
if (oldpos < 0) {
Util.Logger.critical("tried to move child which wasn't in the list")
return
}
if (oldpos != newpos) {
this._children_ids.splice(oldpos, 1)
this._children_ids.splice(newpos, 0, child_id)
this.emit('child-moved', oldpos, newpos, this._client.get_item(child_id))
}
}
get_children() {
return this._children_ids.map(el => this._client.get_item(el));
}
handle_event(event, data, timestamp) {
if (!data)
data = GLib.Variant.new_int32(0)
this._client.send_event(this._id, event, data, timestamp)
}
get_id() {
return this._id
}
send_about_to_show() {
this._client.send_about_to_show(this._id)
}
}
Signals.addSignalMethods(DbusMenuItem.prototype)
const BusClientProxy = Gio.DBusProxy.makeProxyWrapper(DBusInterfaces.DBusMenu);
/**
* The client does the heavy lifting of actually reading layouts and distributing events
*/
var DBusClient = class AppIndicators_DBusClient {
constructor(busName, busPath) {
this._cancellable = new Gio.Cancellable();
this._proxy = new BusClientProxy(Gio.DBus.session,
busName,
busPath,
this._clientReady.bind(this),
this._cancellable)
this._items = new Map([
[
0,
new DbusMenuItem(this, 0, {
'children-display': GLib.Variant.new_string('submenu'),
}, []),
]
]);
// will be set to true if a layout update is requested while one is already in progress
// then the handler that completes the layout update will request another update
this._flagLayoutUpdateRequired = false
this._flagLayoutUpdateInProgress = false
// property requests are queued
this._propertiesRequestedFor = new Set(/* ids */);
Util.connectSmart(this._proxy, 'notify::g-name-owner', this, () => {
if (this.isReady)
this._requestLayoutUpdate();
});
}
get isReady() {
return !!this._proxy.g_name_owner;
}
get_root() {
return this._items.get(0);
}
_requestLayoutUpdate() {
if (this._flagLayoutUpdateInProgress)
this._flagLayoutUpdateRequired = true
else
this._beginLayoutUpdate()
}
_requestProperties(id) {
// if we don't have any requests queued, we'll need to add one
if (!this._propertiesRequestId) {
this._propertiesRequestId = GLib.idle_add(
GLib.PRIORITY_DEFAULT_IDLE, () => this._beginRequestProperties())
}
this._propertiesRequestedFor.add(id);
}
_beginRequestProperties() {
this._proxy.GetGroupPropertiesRemote(
Array.from(this._propertiesRequestedFor),
[],
this._cancellable,
this._endRequestProperties.bind(this))
this._propertiesRequestedFor.clear();
delete this._propertiesRequestId;
return false
}
_endRequestProperties(result, error) {
if (error) {
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
Util.Logger.warn(`Could not retrieve properties: ${error}`);
return
}
// for some funny reason, the result array is hidden in an array
result[0].forEach(([id, properties]) => {
let item = this._items.get(id);
if (!item)
return
for (let prop in properties)
item.property_set(prop, properties[prop])
});
}
// Traverses the list of cached menu items and removes everyone that is not in the list
// so we don't keep alive unused items
_gcItems() {
let tag = new Date().getTime()
let toTraverse = [ 0 ]
while (toTraverse.length > 0) {
let item = this.get_item(toTraverse.shift())
item._dbusClientGcTag = tag
Array.prototype.push.apply(toTraverse, item.get_children_ids())
}
this._items.forEach((i, id) => {
if (i._dbusClientGcTag != tag)
this._items.delete(id);
});
}
// the original implementation will only request partial layouts if somehow possible
// we try to save us from multiple kinds of race conditions by always requesting a full layout
_beginLayoutUpdate() {
// we only read the type property, because if the type changes after reading all properties,
// the view would have to replace the item completely which we try to avoid
this._proxy.GetLayoutRemote(0, -1,
[ 'type', 'children-display' ],
this._cancellable,
this._endLayoutUpdate.bind(this))
this._flagLayoutUpdateRequired = false
this._flagLayoutUpdateInProgress = true
}
_endLayoutUpdate(result, error) {
if (error) {
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
Util.Logger.warn(`While reading menu layout on proxy ${this._proxy.g_name_owner}: ${error}`);
return
}
let [ revision, root ] = result
this._doLayoutUpdate(root)
this._gcItems()
if (this._flagLayoutUpdateRequired)
this._beginLayoutUpdate()
else
this._flagLayoutUpdateInProgress = false
}
_doLayoutUpdate(item) {
let [ id, properties, children ] = item
let childrenUnpacked = children.map(c => c.deep_unpack())
let childrenIds = childrenUnpacked.map(c => c[0])
// make sure all our children exist
childrenUnpacked.forEach(c => this._doLayoutUpdate(c));
// make sure we exist
const menuItem = this._items.get(id);
if (menuItem) {
// we do, update our properties if necessary
for (let prop in properties) {
menuItem.property_set(prop, properties[prop])
}
// make sure our children are all at the right place, and exist
let oldChildrenIds = menuItem.get_children_ids()
for (let i = 0; i < childrenIds.length; ++i) {
// try to recycle an old child
let oldChild = -1
for (let j = 0; j < oldChildrenIds.length; ++j) {
if (oldChildrenIds[j] == childrenIds[i]) {
oldChild = oldChildrenIds.splice(j, 1)[0]
break
}
}
if (oldChild < 0) {
// no old child found, so create a new one!
menuItem.add_child(i, childrenIds[i])
} else {
// old child found, reuse it!
menuItem.move_child(childrenIds[i], i)
}
}
// remove any old children that weren't reused
oldChildrenIds.forEach(child_id => menuItem.remove_child(child_id));
} else {
// we don't, so let's create us
this._items.set(id, new DbusMenuItem(this, id, properties, childrenIds));
this._requestProperties(id)
}
return id
}
_clientReady(result, error) {
if (error) {
if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
Util.Logger.warn(`Could not initialize menu proxy: ${error}`);
return;
}
this._requestLayoutUpdate()
// listen for updated layouts and properties
this._proxy.connectSignal("LayoutUpdated", this._onLayoutUpdated.bind(this))
this._proxy.connectSignal("ItemsPropertiesUpdated", this._onPropertiesUpdated.bind(this))
}
get_item(id) {
let item = this._items.get(id);
if (!item)
Util.Logger.warn(`trying to retrieve item for non-existing id ${id} !?`);
return item || null;
}
// we don't need to cache and burst-send that since it will not happen that frequently
send_about_to_show(id) {
/* Some indicators (you, dropbox!) don't use the right signature
* and don't return a boolean, so we need to support both cases */
let connection = this._proxy.get_connection();
connection.call(this._proxy.get_name(), this._proxy.get_object_path(),
this._proxy.get_interface_name(), 'AboutToShow',
new GLib.Variant("(i)", [id]), null,
Gio.DBusCallFlags.NONE, -1, null, (proxy, res) => {
try {
let ret = proxy.call_finish(res);
if ((ret.is_of_type(new GLib.VariantType('(b)')) &&
ret.get_child_value(0).get_boolean()) ||
ret.is_of_type(new GLib.VariantType('()'))) {
this._requestLayoutUpdate();
}
} catch (e) {
Util.Logger.warn("Impossible to send about-to-show to menu: " + e);
}
});
}
send_event(id, event, params, timestamp) {
if (!this._proxy)
return
this._proxy.EventRemote(id, event, params, timestamp, this._cancellable,
() => { /* we don't care */ })
}
_onLayoutUpdated() {
this._requestLayoutUpdate()
}
_onPropertiesUpdated(proxy, name, [changed, removed]) {
changed.forEach(([id, props]) => {
let item = this._items.get(id);
if (!item)
return
for (let prop in props)
item.property_set(prop, props[prop])
});
removed.forEach(([id, propNames]) => {
let item = this._items.get(id);
if (!item)
return
propNames.forEach(propName => item.property_set(propName, null));
});
}
destroy() {
this.emit('destroy')
if (this._propertiesRequestId) {
GLib.Source.remove(this._propertiesRequestId);
delete this._propertiesRequestId;
}
this._cancellable.cancel();
Signals._disconnectAll.apply(this._proxy)
this._proxy = null
}
}
Signals.addSignalMethods(DBusClient.prototype)
//////////////////////////////////////////////////////////////////////////
// PART TWO: "View" frontend implementation.
//////////////////////////////////////////////////////////////////////////
// https://bugzilla.gnome.org/show_bug.cgi?id=731514
// GNOME 3.10 and 3.12 can't open a nested submenu.
// Patches have been written, but it's not clear when (if?) they will be applied.
// We also don't know whether they will be backported to 3.10, so we will work around
// it in the meantime. Offending versions can be clearly identified:
const NEED_NESTED_SUBMENU_FIX = '_setOpenedSubMenu' in PopupMenu.PopupMenu.prototype
/**
* Creates new wrapper menu items and injects methods for managing them at runtime.
*
* Many functions in this object will be bound to the created item and executed as event
* handlers, so any `this` will refer to a menu item create in createItem
*/
const MenuItemFactory = {
createItem: function(client, dbusItem) {
// first, decide whether it's a submenu or not
if (dbusItem.property_get("children-display") == "submenu")
var shellItem = new PopupMenu.PopupSubMenuMenuItem("FIXME")
else if (dbusItem.property_get("type") == "separator")
var shellItem = new PopupMenu.PopupSeparatorMenuItem('')
else
var shellItem = new PopupMenu.PopupMenuItem("FIXME")
shellItem._dbusItem = dbusItem
shellItem._dbusClient = client
if (shellItem instanceof PopupMenu.PopupMenuItem) {
shellItem._icon = new St.Icon({ style_class: 'popup-menu-icon', x_align: St.Align.END })
shellItem.add_child(shellItem._icon);
shellItem.label.x_expand = true;
}
// initialize our state
MenuItemFactory._updateLabel.call(shellItem)
MenuItemFactory._updateOrnament.call(shellItem)
MenuItemFactory._updateImage.call(shellItem)
MenuItemFactory._updateVisible.call(shellItem)
MenuItemFactory._updateSensitive.call(shellItem)
// initially create children
if (shellItem instanceof PopupMenu.PopupSubMenuMenuItem) {
let children = dbusItem.get_children()
for (let i = 0; i < children.length; ++i) {
shellItem.menu.addMenuItem(MenuItemFactory.createItem(client, children[i]))
}
}
// now, connect various events
Util.connectSmart(dbusItem, 'property-changed', shellItem, MenuItemFactory._onPropertyChanged)
Util.connectSmart(dbusItem, 'child-added', shellItem, MenuItemFactory._onChildAdded)
Util.connectSmart(dbusItem, 'child-removed', shellItem, MenuItemFactory._onChildRemoved)
Util.connectSmart(dbusItem, 'child-moved', shellItem, MenuItemFactory._onChildMoved)
Util.connectSmart(shellItem, 'activate', shellItem, MenuItemFactory._onActivate)
if (shellItem.menu)
Util.connectSmart(shellItem.menu, "open-state-changed", shellItem, MenuItemFactory._onOpenStateChanged)
return shellItem
},
_onOpenStateChanged(menu, open) {
if (open) {
if (NEED_NESTED_SUBMENU_FIX) {
// close our own submenus
if (menu._openedSubMenu)
menu._openedSubMenu.close(false)
// register ourselves and close sibling submenus
if (menu._parent._openedSubMenu && menu._parent._openedSubMenu !== menu)
menu._parent._openedSubMenu.close(true)
menu._parent._openedSubMenu = menu
}
this._dbusItem.handle_event("opened", null, 0)
this._dbusItem.send_about_to_show()
} else {
if (NEED_NESTED_SUBMENU_FIX) {
// close our own submenus
if (menu._openedSubMenu)
menu._openedSubMenu.close(false)
}
this._dbusItem.handle_event("closed", null, 0)
}
},
_onActivate() {
this._dbusItem.handle_event("clicked", GLib.Variant.new("i", 0), 0)
},
_onPropertyChanged(dbusItem, prop, value) {
if (prop == "toggle-type" || prop == "toggle-state")
MenuItemFactory._updateOrnament.call(this)
else if (prop == "label")
MenuItemFactory._updateLabel.call(this)
else if (prop == "enabled")
MenuItemFactory._updateSensitive.call(this)
else if (prop == "visible")
MenuItemFactory._updateVisible.call(this)
else if (prop == "icon-name" || prop == "icon-data")
MenuItemFactory._updateImage.call(this)
else if (prop == "type" || prop == "children-display")
MenuItemFactory._replaceSelf.call(this)
//else
// Util.Logger.debug("Unhandled property change: "+prop)
},
_onChildAdded(dbusItem, child, position) {
if (!(this instanceof PopupMenu.PopupSubMenuMenuItem)) {
Util.Logger.warn("Tried to add a child to non-submenu item. Better recreate it as whole")
MenuItemFactory._replaceSelf.call(this)
} else {
this.menu.addMenuItem(MenuItemFactory.createItem(this._dbusClient, child), position)
}
},
_onChildRemoved(dbusItem, child) {
if (!(this instanceof PopupMenu.PopupSubMenuMenuItem)) {
Util.Logger.warn("Tried to remove a child from non-submenu item. Better recreate it as whole")
MenuItemFactory._replaceSelf.call(this)
} else {
// find it!
this.menu._getMenuItems().forEach((item) => {
if (item._dbusItem == child)
item.destroy()
})
}
},
_onChildMoved(dbusItem, child, oldpos, newpos) {
if (!(this instanceof PopupMenu.PopupSubMenuMenuItem)) {
Util.Logger.warn("Tried to move a child in non-submenu item. Better recreate it as whole")
MenuItemFactory._replaceSelf.call(this)
} else {
MenuUtils.moveItemInMenu(this.menu, child, newpos)
}
},
_updateLabel() {
let label = this._dbusItem.property_get("label").replace(/_([^_])/, "$1")
if (this.label) // especially on GS3.8, the separator item might not even have a hidden label
this.label.set_text(label)
},
_updateOrnament() {
if (!this.setOrnament) return // separators and alike might not have gotten the polyfill
if (this._dbusItem.property_get("toggle-type") == "checkmark" && this._dbusItem.property_get_int("toggle-state"))
this.setOrnament(PopupMenu.Ornament.CHECK)
else if (this._dbusItem.property_get("toggle-type") == "radio" && this._dbusItem.property_get_int("toggle-state"))
this.setOrnament(PopupMenu.Ornament.DOT)
else
this.setOrnament(PopupMenu.Ornament.NONE)
},
_updateImage() {
if (!this._icon) return // might be missing on submenus / separators
let iconName = this._dbusItem.property_get("icon-name")
let iconData = this._dbusItem.property_get_variant("icon-data")
if (iconName)
this._icon.icon_name = iconName
else if (iconData)
this._icon.gicon = GdkPixbuf.Pixbuf.new_from_stream(Gio.MemoryInputStream.new_from_bytes(iconData.get_data_as_bytes()), null)
},
_updateVisible() {
this.visible = this._dbusItem.property_get_bool("visible")
},
_updateSensitive() {
this.setSensitive(this._dbusItem.property_get_bool("enabled"))
},
_replaceSelf(newSelf) {
// create our new self if needed
if (!newSelf)
newSelf = MenuItemFactory.createItem(this._dbusClient, this._dbusItem)
// first, we need to find our old position
let pos = -1
let family = this._parent._getMenuItems()
for (let i = 0; i < family.length; ++i) {
if (family[i] === this)
pos = i
}
if (pos < 0)
throw new Error("DBusMenu: can't replace non existing menu item")
// add our new self while we're still alive
this._parent.addMenuItem(newSelf, pos)
// now destroy our old self
this.destroy()
}
}
/**
* Utility functions not necessarily belonging into the item factory
*/
const MenuUtils = {
moveItemInMenu(menu, dbusItem, newpos) {
//HACK: we're really getting into the internals of the PopupMenu implementation
// First, find our wrapper. Children tend to lie. We do not trust the old positioning.
let family = menu._getMenuItems()
for (let i = 0; i < family.length; ++i) {
if (family[i]._dbusItem == dbusItem) {
// now, remove it
menu.box.remove_child(family[i])
// and add it again somewhere else
if (newpos < family.length && family[newpos] != family[i])
menu.box.insert_child_below(family[i], family[newpos])
else
menu.box.add(family[i])
// skip the rest
return
}
}
}
}
/**
* Processes DBus events, creates the menu items and handles the actions
*
* Something like a mini-god-object
*/
var Client = class AppIndicators_Client {
constructor(busName, path) {
this._busName = busName
this._busPath = path
this._client = new DBusClient(busName, path)
this._rootMenu = null // the shell menu
this._rootItem = null // the DbusMenuItem for the root
}
get isReady() {
return this._client.isReady;
}
// this will attach the client to an already existing menu that will be used as the root menu.
// it will also connect the client to be automatically destroyed when the menu dies.
attachToMenu(menu) {
this._rootMenu = menu
this._rootItem = this._client.get_root()
// cleanup: remove existing children (just in case)
this._rootMenu.removeAll()
if (NEED_NESTED_SUBMENU_FIX)
menu._setOpenedSubMenu = this._setOpenedSubmenu.bind(this)
// connect handlers
Util.connectSmart(menu, 'open-state-changed', this, '_onMenuOpened')
Util.connectSmart(menu, 'destroy', this, 'destroy')
Util.connectSmart(this._rootItem, 'child-added', this, '_onRootChildAdded')
Util.connectSmart(this._rootItem, 'child-removed', this, '_onRootChildRemoved')
Util.connectSmart(this._rootItem, 'child-moved', this, '_onRootChildMoved')
// Dropbox requires us to call AboutToShow(0) first
this._rootItem.send_about_to_show()
// fill the menu for the first time
this._rootItem.get_children().forEach(child =>
this._rootMenu.addMenuItem(MenuItemFactory.createItem(this, child))
);
}
_setOpenedSubmenu(submenu) {
if (!submenu)
return
if (submenu._parent != this._rootMenu)
return
if (submenu === this._openedSubMenu)
return
if (this._openedSubMenu && this._openedSubMenu.isOpen)
this._openedSubMenu.close(true)
this._openedSubMenu = submenu
}
_onRootChildAdded(dbusItem, child, position) {
this._rootMenu.addMenuItem(MenuItemFactory.createItem(this, child), position)
}
_onRootChildRemoved(dbusItem, child) {
// children like to play hide and seek
// but we know how to find it for sure!
this._rootMenu._getMenuItems().forEach((item) => {
if (item._dbusItem == child)
item.destroy()
})
}
_onRootChildMoved(dbusItem, child, oldpos, newpos) {
MenuUtils.moveItemInMenu(this._rootMenu, dbusItem, newpos)
}
_onMenuOpened(menu, state) {
if (!this._rootItem) return
if (state) {
if (this._openedSubMenu && this._openedSubMenu.isOpen)
this._openedSubMenu.close()
this._rootItem.handle_event("opened", null, 0)
this._rootItem.send_about_to_show()
} else {
this._rootItem.handle_event("closed", null, 0)
}
}
destroy() {
this.emit('destroy')
if (this._client)
this._client.destroy()
this._client = null
this._rootItem = null
this._rootMenu = null
}
}
Signals.addSignalMethods(Client.prototype)
|