forked from ubuntu/gnome-shell-extension-appindicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappIndicator.js
718 lines (601 loc) · 24.8 KB
/
appIndicator.js
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
// 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 Clutter = imports.gi.Clutter
const Cogl = imports.gi.Cogl
const GdkPixbuf = imports.gi.GdkPixbuf
const Gio = imports.gi.Gio
const GLib = imports.gi.GLib
const GObject = imports.gi.GObject
const Gtk = imports.gi.Gtk
const St = imports.gi.St
const Shell = imports.gi.Shell
const Extension = imports.misc.extensionUtils.getCurrentExtension();
const Signals = imports.signals
const DBusMenu = Extension.imports.dbusMenu;
const IconCache = Extension.imports.iconCache;
const Util = Extension.imports.util;
const Interfaces = Extension.imports.interfaces;
const MAX_UPDATE_FREQUENCY = 100; // In ms
const SNICategory = {
APPLICATION: 'ApplicationStatus',
COMMUNICATIONS: 'Communications',
SYSTEM: 'SystemServices',
HARDWARE: 'Hardware'
};
var SNIStatus = {
PASSIVE: 'Passive',
ACTIVE: 'Active',
NEEDS_ATTENTION: 'NeedsAttention'
};
const SNIconType = {
NORMAL: 0,
ATTENTION: 1,
OVERLAY: 2,
};
/**
* the AppIndicator class serves as a generic container for indicator information and functions common
* for every displaying implementation (IndicatorMessageSource and IndicatorStatusIcon)
*/
var AppIndicator = class AppIndicators_AppIndicator {
constructor(bus_name, object) {
this.busName = bus_name
this._uniqueId = bus_name + object
this._accumuledSignals = new Set();
let interface_info = Gio.DBusInterfaceInfo.new_for_xml(Interfaces.StatusNotifierItem)
//HACK: we cannot use Gio.DBusProxy.makeProxyWrapper because we need
// to specify G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES
this._cancellable = new Gio.Cancellable();
this._proxy = new Gio.DBusProxy({ g_connection: Gio.DBus.session,
g_interface_name: interface_info.name,
g_interface_info: interface_info,
g_name: bus_name,
g_object_path: object,
g_flags: Gio.DBusProxyFlags.GET_INVALIDATED_PROPERTIES })
this._proxy.init_async(GLib.PRIORITY_DEFAULT, this._cancellable, ((initable, result) => {
try {
initable.init_finish(result);
this._checkIfReady();
if (!this.isReady && !this.menuPath) {
let checks = 0;
this._delayCheck = GLib.timeout_add_seconds(
GLib.PRIORITY_DEFAULT_IDLE, 1, () => {
Util.refreshPropertyOnProxy(this._proxy, 'Menu');
return !this.isReady && ++checks < 3;
});
}
} catch(e) {
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED))
Util.Logger.warn(`While intializing proxy for ${bus_name} ${object}: ${e}`);
}
}))
Util.connectSmart(this._proxy, 'g-properties-changed', this, '_onPropertiesChanged')
Util.connectSmart(this._proxy, 'g-signal', this, this._onProxySignal)
Util.connectSmart(this._proxy, 'notify::g-name-owner', this, '_nameOwnerChanged')
}
_checkIfReady() {
let wasReady = this.isReady;
let isReady = false;
if (this._proxy.g_name_owner && this.menuPath)
isReady = true;
this.isReady = isReady;
this._setupProxyPropertyList();
if (this.isReady && !wasReady) {
if (this._delayCheck) {
GLib.Source.remove(this._delayCheck);
delete this._delayCheck;
}
this.emit('ready');
return true;
}
return false;
}
_nameOwnerChanged() {
if (!this._proxy.g_name_owner)
this._checkIfReady();
}
_addExtraProperty(name) {
if (this._proxyPropertyList.includes(name))
return;
if (!(name in this._proxy)) {
Object.defineProperty(this._proxy, name, {
configurable: false,
enumerable: true,
get: () => {
const v = this._proxy.get_cached_property(name);
return v ? v.deep_unpack() : null;
}
});
}
this._proxyPropertyList.push(name);
}
_setupProxyPropertyList() {
let interfaceProps = this._proxy.g_interface_info.properties;
this._proxyPropertyList =
(this._proxy.get_cached_property_names() || []).filter(p =>
interfaceProps.some(propinfo => propinfo.name == p));
if (this._proxyPropertyList.length) {
this._addExtraProperty('XAyatanaLabel');
this._addExtraProperty('XAyatanaLabelGuide');
this._addExtraProperty('XAyatanaOrderingIndex');
}
}
// The Author of the spec didn't like the PropertiesChanged signal, so he invented his own
_translateNewSignals(signal) {
let prop = null;
if (signal.startsWith('New'))
prop = signal.substr(3)
else if (signal.startsWith('XAyatanaNew'))
prop = 'XAyatana' + signal.substr(11)
if (!prop)
return;
[prop, `${prop}Name`, `${prop}Pixmap`].filter(p =>
this._proxyPropertyList.includes(p)).forEach(p =>
Util.refreshPropertyOnProxy(this._proxy, p, {
skipEqualtyCheck: p.endsWith('Pixmap'),
})
);
}
_onProxySignal(_proxy, _sender, signal, _params) {
this._accumuledSignals.add(signal);
if (this._signalsAccumulatorId)
return;
this._signalsAccumulatorId = GLib.timeout_add(
GLib.PRIORITY_DEFAULT_IDLE, MAX_UPDATE_FREQUENCY, () => {
this._accumuledSignals.forEach((s) => this._translateNewSignals(s));
this._accumuledSignals.clear();
delete this._signalsAccumulatorId;
});
}
//public property getters
get title() {
return this._proxy.Title;
}
get id() {
return this._proxy.Id;
}
get uniqueId() {
return this._uniqueId;
}
get status() {
return this._proxy.Status;
}
get label() {
return this._proxy.XAyatanaLabel;
}
get menuPath() {
if (this._proxy.Menu == '/NO_DBUSMENU')
return null;
return this._proxy.Menu || '/MenuBar';
}
get attentionIcon() {
return [
this._proxy.AttentionIconName,
this._proxy.AttentionIconPixmap,
this._proxy.IconThemePath
]
}
get icon() {
return [
this._proxy.IconName,
this._proxy.IconPixmap,
this._proxy.IconThemePath
]
}
get overlayIcon() {
return [
this._proxy.OverlayIconName,
this._proxy.OverlayIconPixmap,
this._proxy.IconThemePath
]
}
_onPropertiesChanged(proxy, changed, invalidated) {
let props = Object.keys(changed.unpack());
let signalsToEmit = new Set();
props.forEach((property) => {
// some property changes require updates on our part,
// a few need to be passed down to the displaying code
// all these can mean that the icon has to be changed
if (property == 'Status' ||
property.startsWith('Icon') ||
property.startsWith('AttentionIcon')) {
signalsToEmit.add('icon')
}
// same for overlays
if (property.startsWith('OverlayIcon'))
signalsToEmit.add('overlay-icon')
// this may make all of our icons invalid
if (property == 'IconThemePath') {
signalsToEmit.add('icon')
signalsToEmit.add('overlay-icon')
}
// the label will be handled elsewhere
if (property == 'XAyatanaLabel')
signalsToEmit.add('label')
if (property == 'Menu') {
if (!this._checkIfReady() && this.isReady)
signalsToEmit.add('menu')
}
// status updates may cause the indicator to be hidden
if (property == 'Status')
signalsToEmit.add('status')
});
signalsToEmit.forEach(s => this.emit(s));
}
reset() {
this.emit('reset');
}
destroy() {
this.emit('destroy')
this.disconnectAll()
this._cancellable.cancel();
Util.cancelRefreshPropertyOnProxy(this._proxy);
delete this._cancellable;
delete this._proxy
if (this._signalsAccumulatorId) {
GLib.Source.remove(this._signalsAccumulatorId);
delete this._signalsAccumulatorId;
}
if (this._delayCheck) {
GLib.Source.remove(this._delayCheck);
delete this._delayCheck;
}
}
open() {
// we can't use WindowID because we're not able to get the x11 window id from a MetaWindow
// nor can we call any X11 functions. Luckily, the Activate method usually works fine.
// parameters are "an hint to the item where to show eventual windows" [sic]
// ... and don't seem to have any effect.
this._proxy.ActivateRemote(0, 0)
}
secondaryActivate() {
this._proxy.SecondaryActivateRemote(0, 0)
}
scroll(dx, dy) {
if (dx != 0)
this._proxy.ScrollRemote(Math.floor(dx), 'horizontal')
if (dy != 0)
this._proxy.ScrollRemote(Math.floor(dy), 'vertical')
}
};
Signals.addSignalMethods(AppIndicator.prototype);
var IconActor = GObject.registerClass(
class AppIndicators_IconActor extends St.Icon {
_init(indicator, icon_size) {
super._init({
reactive: true,
style_class: 'system-status-icon',
fallback_icon_name: 'image-loading-symbolic',
});
this.name = this.constructor.name;
this.add_style_class_name('appindicator-icon');
this.set_style('padding:0');
let themeContext = St.ThemeContext.get_for_stage(global.stage);
this.height = icon_size * themeContext.scale_factor;
this._indicator = indicator
this._iconSize = icon_size
this._iconCache = new IconCache.IconCache()
this._cancellable = new Gio.Cancellable();
this._loadingIcons = new Set();
Util.connectSmart(this._indicator, 'icon', this, '_updateIcon')
Util.connectSmart(this._indicator, 'overlay-icon', this, '_updateOverlayIcon')
Util.connectSmart(this._indicator, 'reset', this, '_invalidateIcon')
Util.connectSmart(this, 'scroll-event', this, '_handleScrollEvent')
Util.connectSmart(themeContext, 'notify::scale-factor', this, (tc) => {
this.height = icon_size * tc.scale_factor;
this._invalidateIcon();
});
Util.connectSmart(this._indicator, 'ready', this, () => {
this._updateIconClass();
this._invalidateIcon();
})
Util.connectSmart(Gtk.IconTheme.get_default(), 'changed', this, '_invalidateIcon')
if (indicator.isReady)
this._invalidateIcon()
this.connect('destroy', () => {
this._iconCache.destroy();
this._cancellable.cancel();
if (this._callbackIdle) {
GLib.source_remove(this._callbackIdle);
delete this._callbackIdle;
}
});
}
_updateIconClass() {
this.add_style_class_name(
`appindicator-icon-${this._indicator.id.toLowerCase().replace(/_|\s/g, '-')}`);
}
// Will look the icon up in the cache, if it's found
// it will return it. Otherwise, it will create it and cache it.
_cacheOrCreateIconByName(iconSize, iconName, themePath, callback) {
let {scale_factor} = St.ThemeContext.get_for_stage(global.stage);
let id = `${iconName}@${iconSize * scale_factor}${themePath || ''}`;
let gicon = this._iconCache.get(id);
if (gicon) {
callback(gicon);
return;
}
if (this._loadingIcons.has(id)) {
Util.Logger.debug(`${this._indicator.id}, Icon ${id} Is still loading, ignoring the request`);
return;
} else if (this._loadingIcons.size > 0) {
this._cancellable.cancel();
this._cancellable = new Gio.Cancellable();
this._loadingIcons.clear();
}
this._loadingIcons.add(id);
let path = this._getIconInfo(iconName, themePath, iconSize, scale_factor);
this._createIconByName(path, (gicon) => {
this._loadingIcons.delete(id);
if (gicon)
gicon = this._iconCache.add(id, gicon);
callback(gicon);
});
}
_createIconByPath(path, width, height, callback) {
let file = Gio.File.new_for_path(path);
file.read_async(GLib.PRIORITY_DEFAULT, this._cancellable, (file, res) => {
try {
let inputStream = file.read_finish(res);
GdkPixbuf.Pixbuf.new_from_stream_at_scale_async(
inputStream, height, width, true, this._cancellable, (_p, res) => {
try {
callback(GdkPixbuf.Pixbuf.new_from_stream_finish(res));
this.icon_size = width > 0 ? width : this._iconSize;
} catch (e) {
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) {
Util.Logger.warn(`${this._indicator.id}, Impossible to create image from path '${path}': ${e}`);
callback(null);
}
}
});
} catch (e) {
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) {
Util.Logger.warn(`${this._indicator.id}, Impossible to read image from path '${path}': ${e}`);
callback(null);
}
}
});
}
_createIconByName(path, callback) {
if (!path) {
if (this._callbackIdle)
return;
this._callbackIdle = GLib.idle_add(GLib.PRIORITY_DEFAULT_IDLE, () => {
delete this._callbackIdle;
callback(null);
return false;
});
return;
} else if (this._callbackIdle) {
GLib.source_remove(this._callbackIdle);
delete this._callbackIdle;
}
GdkPixbuf.Pixbuf.get_file_info_async(path, this._cancellable, (_p, res) => {
try {
let [format, width, height] = GdkPixbuf.Pixbuf.get_file_info_finish(res);
if (!format) {
Util.Logger.critical(`${this._indicator.id}, Invalid image format: ${path}`);
callback(null);
return;
}
if (width >= height * 1.5) {
/* Hello indicator-multiload! */
this._createIconByPath(path, width, -1, callback);
} else {
callback(new Gio.FileIcon({
file: Gio.File.new_for_path(path)
}));
this.icon_size = this._iconSize;
}
} catch (e) {
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) {
Util.Logger.warn(`${this._indicator.id}, Impossible to read image info from path '${path}': ${e}`);
callback(null);
}
}
});
}
_getIconInfo(name, themePath, size, scale) {
let path = null;
if (name && name[0] == "/") {
//HACK: icon is a path name. This is not specified by the api but at least inidcator-sensors uses it.
path = name;
} else if (name) {
// we manually look up the icon instead of letting st.icon do it for us
// this allows us to sneak in an indicator provided search path and to avoid ugly upscaled icons
// indicator-application looks up a special "panel" variant, we just replicate that here
name = name + "-panel";
// icon info as returned by the lookup
let iconInfo = null;
// we try to avoid messing with the default icon theme, so we'll create a new one if needed
let icon_theme = null;
if (themePath) {
icon_theme = new Gtk.IconTheme();
Gtk.IconTheme.get_default().get_search_path().forEach((path) => {
icon_theme.append_search_path(path);
});
icon_theme.append_search_path(themePath);
icon_theme.set_screen(imports.gi.Gdk.Screen.get_default());
} else {
icon_theme = Gtk.IconTheme.get_default();
}
if (icon_theme) {
// try to look up the icon in the icon theme
iconInfo = icon_theme.lookup_icon_for_scale(name, size, scale,
Gtk.IconLookupFlags.GENERIC_FALLBACK);
// no icon? that's bad!
if (iconInfo === null) {
let msg = `${this._indicator.id}, Impossible to lookup icon for '${name}' in`;
Util.Logger.warn(`${msg} ${themePath ? `path ${themePath}` : 'default theme'}`);
} else { // we have an icon
// get the icon path
path = iconInfo.get_filename();
}
}
}
return path;
}
argbToRgba(src) {
let dest = new Uint8Array(src.length);
for (let i = 0; i < src.length; i += 4) {
let srcAlpha = src[i]
dest[i] = src[i + 1]; /* red */
dest[i + 1] = src[i + 2]; /* green */
dest[i + 2] = src[i + 3]; /* blue */
dest[i + 3] = srcAlpha; /* alpha */
}
return dest;
}
_createIconFromPixmap(iconSize, iconPixmapArray, snIconType) {
let {scale_factor} = St.ThemeContext.get_for_stage(global.stage);
iconSize = iconSize * scale_factor
// the pixmap actually is an array of pixmaps with different sizes
// we use the one that is smaller or equal the iconSize
// maybe it's empty? that's bad.
if (!iconPixmapArray || iconPixmapArray.length < 1)
return null
let sortedIconPixmapArray = iconPixmapArray.sort((pixmapA, pixmapB) => {
// we sort smallest to biggest
let areaA = pixmapA[0] * pixmapA[1]
let areaB = pixmapB[0] * pixmapB[1]
return areaA - areaB
})
let qualifiedIconPixmapArray = sortedIconPixmapArray.filter((pixmap) => {
// we prefer any pixmap that is equal or bigger than our requested size
return pixmap[0] >= iconSize && pixmap[1] >= iconSize;
})
let iconPixmap = qualifiedIconPixmapArray.length > 0 ? qualifiedIconPixmapArray[0] : sortedIconPixmapArray.pop()
let [ width, height, bytes ] = iconPixmap
let rowstride = width * 4 // hopefully this is correct
try {
return GdkPixbuf.Pixbuf.new_from_bytes(
this.argbToRgba(bytes),
GdkPixbuf.Colorspace.RGB, true,
8, width, height, rowstride);
} catch (e) {
// the image data was probably bogus. We don't really know why, but it _does_ happen.
Util.Logger.warn(`${this._indicator.id}, Impossible to create image from data: ${e}`)
return null
}
}
// The .inUse flag will be set to true if the used gicon matches the cached
// one (as in some cases it may be equal, but not the same object).
// So when it's not need anymore we make sure to check the .inUse property
// and set it to false so that it can be picked up by the garbage collector.
_setGicon(iconType, gicon) {
if (iconType != SNIconType.OVERLAY) {
if (gicon) {
this.gicon = new Gio.EmblemedIcon({ gicon });
if (!(gicon instanceof GdkPixbuf.Pixbuf))
gicon.inUse = (this.gicon.get_icon() == gicon);
} else {
this.gicon = null;
Util.Logger.critical(`unable to update icon for ${this._indicator.id}`);
}
} else {
if (gicon) {
this._emblem = new Gio.Emblem({ icon: gicon });
if (!(gicon instanceof GdkPixbuf.Pixbuf))
gicon.inUse = true;
} else {
this._emblem = null;
Util.Logger.debug(`unable to update icon emblem for ${this._indicator.id}`);
}
}
if (this.gicon) {
if (!this.gicon.get_emblems().some(e => e.equal(this._emblem))) {
this.gicon.clear_emblems();
if (this._emblem)
this.gicon.add_emblem(this._emblem);
}
}
}
_updateIconByType(iconType, iconSize) {
let icon;
switch (iconType) {
case SNIconType.ATTENTION:
icon = this._indicator.attentionIcon;
break;
case SNIconType.NORMAL:
icon = this._indicator.icon;
break;
case SNIconType.OVERLAY:
icon = this._indicator.overlayIcon;
break;
}
let [name, pixmap, theme] = icon;
if (name && name.length) {
this._cacheOrCreateIconByName(iconSize, name, theme, (gicon) => {
if (!gicon && pixmap) {
gicon = this._createIconFromPixmap(iconSize,
pixmap, iconType);
}
this._setGicon(iconType, gicon);
});
} else if (pixmap) {
let gicon = this._createIconFromPixmap(iconSize,
pixmap, iconType);
this._setGicon(iconType, gicon);
}
}
// updates the base icon
_updateIcon() {
if (this.gicon instanceof Gio.EmblemedIcon) {
let { gicon } = this.gicon;
if (gicon.inUse)
gicon.inUse = false
}
// we might need to use the AttentionIcon*, which have precedence over the normal icons
let iconType = this._indicator.status == SNIStatus.NEEDS_ATTENTION ?
SNIconType.ATTENTION : SNIconType.NORMAL;
this._updateIconByType(iconType, this._iconSize);
}
_updateOverlayIcon() {
if (this._emblem) {
let { icon } = this._emblem;
if (icon.inUse)
icon.inUse = false;
}
// KDE hardcodes the overlay icon size to 10px (normal icon size 16px)
// we approximate that ratio for other sizes, too.
// our algorithms will always pick a smaller one instead of stretching it.
let iconSize = Math.floor(this._iconSize / 1.6)
this._updateIconByType(SNIconType.OVERLAY, iconSize);
}
_handleScrollEvent(actor, event) {
if (actor != this)
return Clutter.EVENT_PROPAGATE
if (event.get_source() != this)
return Clutter.EVENT_PROPAGATE
if (event.type() != Clutter.EventType.SCROLL)
return Clutter.EVENT_PROPAGATE
// Since Clutter 1.10, clutter will always send a smooth scrolling event
// with explicit deltas, no matter what input device is used
// In fact, for every scroll there will be a smooth and non-smooth scroll
// event, and we can choose which one we interpret.
if (event.get_scroll_direction() == Clutter.ScrollDirection.SMOOTH) {
let [ dx, dy ] = event.get_scroll_delta()
this._indicator.scroll(dx, dy)
}
return Clutter.EVENT_STOP
}
// called when the icon theme changes
_invalidateIcon() {
this._iconCache.clear()
this._updateIcon()
this._updateOverlayIcon()
}
});