-
Notifications
You must be signed in to change notification settings - Fork 460
/
appIcons.js
1594 lines (1373 loc) · 57.7 KB
/
appIcons.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
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
import {
Clutter,
Gio,
GLib,
GObject,
Meta,
Mtk,
Shell,
St,
} from './dependencies/gi.js';
import {
AppDisplay,
AppFavorites,
BoxPointer,
Dash,
Main,
PopupMenu,
} from './dependencies/shell/ui.js';
import {
ParentalControlsManager,
Util,
} from './dependencies/shell/misc.js';
import {
AppIconIndicators,
DBusMenuUtils,
Docking,
Locations,
Theming,
Utils,
WindowPreview,
} from './imports.js';
import {Extension} from './dependencies/shell/extensions/extension.js';
// Use __ () and N__() for the extension gettext domain, and reuse
// the shell domain with the default _() and N_()
const {gettext: __, ngettext} = Extension;
const DBusMenu = await DBusMenuUtils.haveDBusMenu();
const tracker = Shell.WindowTracker.get_default();
const Labels = Object.freeze({
ISOLATE_MONITORS: Symbol('isolate-monitors'),
ISOLATE_WORKSPACES: Symbol('isolate-workspaces'),
URGENT_WINDOWS: Symbol('urgent-windows'),
});
const clickAction = Object.freeze({
SKIP: 0,
MINIMIZE: 1,
LAUNCH: 2,
CYCLE_WINDOWS: 3,
MINIMIZE_OR_OVERVIEW: 4,
PREVIEWS: 5,
MINIMIZE_OR_PREVIEWS: 6,
FOCUS_OR_PREVIEWS: 7,
FOCUS_OR_APP_SPREAD: 8,
FOCUS_MINIMIZE_OR_PREVIEWS: 9,
FOCUS_MINIMIZE_OR_APP_SPREAD: 10,
QUIT: 11,
});
const scrollAction = Object.freeze({
DO_NOTHING: 0,
CYCLE_WINDOWS: 1,
SWITCH_WORKSPACE: 2,
});
let recentlyClickedAppLoopId = 0;
let recentlyClickedApp = null;
let recentlyClickedAppWindows = null;
let recentlyClickedAppIndex = 0;
let recentlyClickedAppMonitor = -1;
/**
* Extend AppIcon
*
* - Apply a css class based on the number of windows of each application (#N);
* - Customized indicators for running applications in place of the default "dot" style which is hidden (#N);
* a class of the form "running#N" is applied to the AppWellIcon actor.
* like the original .running one.
* - Add a .focused style to the focused app
* - Customize click actions.
* - Update minimization animation target
* - Update menu if open on windows change
*/
const DockAbstractAppIcon = GObject.registerClass({
GTypeFlags: GObject.TypeFlags.ABSTRACT,
Properties: {
'focused': GObject.ParamSpec.boolean(
'focused', 'focused', 'focused',
GObject.ParamFlags.READWRITE,
false),
'running': GObject.ParamSpec.boolean(
'running', 'running', 'running',
GObject.ParamFlags.READWRITE,
false),
'urgent': GObject.ParamSpec.boolean(
'urgent', 'urgent', 'urgent',
GObject.ParamFlags.READWRITE,
false),
'updating': GObject.ParamSpec.boolean(
'updating', 'updating', 'updating',
GObject.ParamFlags.READWRITE,
false),
'windows-count': GObject.ParamSpec.uint(
'windows-count', 'windows-count', 'windows-count',
GObject.ParamFlags.READWRITE,
0, GLib.MAXUINT32, 0),
},
}, class DockAbstractAppIcon extends Dash.DashIcon {
// settings are required inside.
_init(app, monitorIndex, iconAnimator) {
super._init(app);
// a prefix is required to avoid conflicting with the parent class variable
this.monitorIndex = monitorIndex;
this._signalsHandler = new Utils.GlobalSignalsHandler(this);
this.iconAnimator = iconAnimator;
this._indicator = new AppIconIndicators.AppIconIndicator(this);
this._urgentWindows = new Set();
// Monitor windows-changes instead of app state.
// Keep using the same Id and function callback (that is extended)
if (this._stateChangedId > 0) {
this.app.disconnect(this._stateChangedId);
this._stateChangedId = 0;
}
this._signalsHandler.add(this.app, 'windows-changed', () => this._updateWindows());
this._signalsHandler.add(this.app, 'notify::state', () => this._updateRunningState());
this._signalsHandler.add(global.display, 'window-demands-attention', (_dpy, window) =>
this._onWindowDemandsAttention(window));
this._signalsHandler.add(global.display, 'window-marked-urgent', (_dpy, window) =>
this._onWindowDemandsAttention(window));
// In Wayland sessions, this signal is needed to track the state of windows dragged
// from one monitor to another. As this is triggered quite often (whenever a new
// window of any application opened or moved to a different desktop),
// we restrict this signal to the case when Labels.ISOLATE_MONITORS is true,
// and if there are at least 2 monitors.
if (Docking.DockManager.settings.isolateMonitors &&
Main.layoutManager.monitors.length > 1) {
this._signalsHandler.addWithLabel(Labels.ISOLATE_MONITORS,
global.display,
'window-entered-monitor',
this._onWindowEntered.bind(this));
}
this.connect('notify::running', () => {
if (this.running)
this.add_style_class_name('running');
else
this.remove_style_class_name('running');
});
this.notify('running');
this.connect('notify::focused', () => {
if (this.focused)
this.add_style_class_name('focused');
else
this.remove_style_class_name('focused');
});
this.notify('focused');
this.connect('notify::updating', () => {
if (this.updating)
this.add_style_class_name('updating');
else
this.remove_style_class_name('updating');
});
this.notify('updating');
const {notificationsMonitor} = Docking.DockManager.getDefault();
this.connect('notify::urgent', () => {
const icon = this.icon._iconBin;
this._signalsHandler.removeWithLabel(Labels.URGENT_WINDOWS);
if (this.urgent) {
if (Docking.DockManager.settings.danceUrgentApplications &&
notificationsMonitor.enabled) {
icon.set_pivot_point(0.5, 0.5);
this.iconAnimator.addAnimation(icon, 'wiggle');
}
if (this.running && !this._urgentWindows.size) {
const urgentWindows = this.getInterestingWindows();
urgentWindows.forEach(w => (w._manualUrgency = true));
this._updateUrgentWindows(urgentWindows);
}
} else {
this.iconAnimator.removeAnimation(icon, 'wiggle');
icon.rotation_angle_z = 0;
this._urgentWindows.forEach(w => delete w._manualUrgency);
this._updateUrgentWindows();
}
});
this.notify('urgent');
this._progressOverlayArea = null;
this._progress = 0;
[
'apply-custom-theme',
'running-indicator-style',
'show-icons-emblems',
'show-icons-notifications-counter',
'application-counter-overrides-notifications',
].forEach(key => {
this._signalsHandler.add(
Docking.DockManager.settings,
`changed::${key}`, () => {
this._indicator.destroy();
this._indicator = new AppIconIndicators.AppIconIndicator(this);
}
);
});
this._signalsHandler.add(notificationsMonitor, 'state-changed', () => {
this._indicator.destroy();
this._indicator = new AppIconIndicators.AppIconIndicator(this);
});
this._updateState();
this._numberOverlay();
this._previewMenuManager = null;
this._previewMenu = null;
}
_onDestroy() {
super._onDestroy();
// This is necessary due to an upstream bug
// https://bugzilla.gnome.org/show_bug.cgi?id=757556
// It can be safely removed once it get solved upstream.
this._menu?.close(false);
delete this._menu;
}
ownsWindow(window) {
return this.app === tracker.get_window_app(window);
}
_onWindowEntered(metaScreen, monitorIndex, metaWin) {
if (this.ownsWindow(metaWin))
this._updateWindows();
}
vfunc_scroll_event(scrollEvent) {
const {settings} = Docking.DockManager;
const isEnabled = settings.scrollAction === scrollAction.CYCLE_WINDOWS;
if (!isEnabled)
return Clutter.EVENT_PROPAGATE;
// We only activate windows of running applications, i.e. we never open new windows
// We check if the app is running, and that the # of windows is > 0 in
// case we use workspace isolation,
if (!this.running)
return Clutter.EVENT_PROPAGATE;
if (this._optionalScrollCycleWindowsDeadTimeId) {
return Clutter.EVENT_PROPAGATE;
} else {
this._optionalScrollCycleWindowsDeadTimeId = GLib.timeout_add(
GLib.PRIORITY_DEFAULT, 250, () => {
this._optionalScrollCycleWindowsDeadTimeId = 0;
});
}
let direction = null;
switch (scrollEvent.direction) {
case Clutter.ScrollDirection.UP:
direction = Meta.MotionDirection.UP;
break;
case Clutter.ScrollDirection.DOWN:
direction = Meta.MotionDirection.DOWN;
break;
case Clutter.ScrollDirection.SMOOTH: {
const [, dy] = Clutter.get_current_event().get_scroll_delta();
if (dy < 0)
direction = Meta.MotionDirection.UP;
else if (dy > 0)
direction = Meta.MotionDirection.DOWN;
}
break;
}
if (!Main.overview.visible) {
const reversed = direction === Meta.MotionDirection.UP;
if (this.focused && !this._urgentWindows.size) {
this._cycleThroughWindows(reversed);
} else {
// Activate the first window
const windows = this.getInterestingWindows();
if (windows.length > 0) {
const [w] = windows;
Main.activateWindow(w);
}
}
} else {
this.app.activate();
}
return Clutter.EVENT_STOP;
}
_updateWindows() {
if (this._menu && this._menu.isOpen)
this._menu.update();
this._updateState();
this.updateIconGeometry();
}
_updateState() {
this._urgentWindows.clear();
const interestingWindows = this.getInterestingWindows();
this.windowsCount = interestingWindows.length;
this._updateRunningState();
this._updateFocusState();
this._updateUrgentWindows(interestingWindows);
if (Docking.DockManager.settings.isolateWorkspaces) {
this._signalsHandler.removeWithLabel(Labels.ISOLATE_WORKSPACES);
interestingWindows.forEach(window =>
this._signalsHandler.addWithLabel(Labels.ISOLATE_WORKSPACES,
window, 'workspace-changed', () => this._updateWindows()));
}
}
_updateRunningState() {
this.running = (this.app.state === Shell.AppState.RUNNING) && this.windowsCount;
}
_updateFocusState() {
this.focused = tracker.focus_app === this.app && this.running;
}
_updateUrgentWindows(interestingWindows) {
this._signalsHandler.removeWithLabel(Labels.URGENT_WINDOWS);
this._urgentWindows.clear();
if (interestingWindows === undefined)
interestingWindows = this.getInterestingWindows();
interestingWindows.filter(isWindowUrgent).forEach(win => this._addUrgentWindow(win));
this.urgent = !!this._urgentWindows.size;
}
_onWindowDemandsAttention(window) {
if (this.ownsWindow(window) && isWindowUrgent(window))
this._addUrgentWindow(window);
}
_updateDotStyle() {
super._updateDotStyle();
const themeNode = this._dot.get_theme_node();
this._dot.translationX = themeNode.get_length('offset-x');
}
_addUrgentWindow(window) {
if (this._urgentWindows.has(window))
return;
if (window._manualUrgency && window.has_focus()) {
delete window._manualUrgency;
return;
}
this._urgentWindows.add(window);
this.urgent = true;
const onDemandsAttentionChanged = () => {
if (!isWindowUrgent(window))
this._updateUrgentWindows();
};
if (window.demandsAttention) {
this._signalsHandler.addWithLabel(Labels.URGENT_WINDOWS, window,
'notify::demands-attention', () => onDemandsAttentionChanged());
}
if (window.urgent) {
this._signalsHandler.addWithLabel(Labels.URGENT_WINDOWS, window,
'notify::urgent', () => onDemandsAttentionChanged());
}
if (window._manualUrgency) {
this._signalsHandler.addWithLabel(Labels.URGENT_WINDOWS, window,
'focus', () => {
delete window._manualUrgency;
onDemandsAttentionChanged();
});
}
}
/**
* Update target for minimization animation
*/
updateIconGeometry() {
// If (for unknown reason) the actor is not on the stage the reported size
// and position are random values, which might exceeds the integer range
// resulting in an error when assigned to the a rect. This is a more like
// a workaround to prevent flooding the system with errors.
if (!this.get_stage())
return;
const rect = new Mtk.Rectangle();
[rect.x, rect.y] = this.get_transformed_position();
[rect.width, rect.height] = this.get_transformed_size();
let windows = this.getWindows();
if (Docking.DockManager.settings.multiMonitor) {
const {monitorIndex} = this;
windows = windows.filter(w => w.get_monitor() === monitorIndex);
}
windows.forEach(w => w.set_icon_geometry(rect));
}
_updateRunningStyle() {
// The logic originally in this function has been moved to
// AppIconIndicatorBase._updateDefaultDot(). However it cannot be removed as
// it called by the parent constructor.
}
popupMenu() {
this._removeMenuTimeout();
this.fake_release();
this._draggable.fakeRelease();
if (!this._menu) {
this._menu = new DockAppIconMenu(this);
this._menu.connect('activate-window', (menu, window) => {
if (window) {
Main.activateWindow(window);
} else {
Main.overview.hide();
Main.panel.closeCalendar();
}
});
this._menu.connect('open-state-changed', (menu, isPoppedUp) => {
if (!isPoppedUp) {
this._onMenuPoppedDown();
} else {
// Setting the max-height is s useful if part of the menu is
// scrollable so the minimum height is smaller than the natural height.
const monitorIndex = Main.layoutManager.findIndexForActor(this);
const workArea = Main.layoutManager.getWorkAreaForMonitor(monitorIndex);
const position = Utils.getPosition();
const {scaleFactor} = St.ThemeContext.get_for_stage(global.stage);
const isHorizontal = position === St.Side.TOP || position === St.Side.BOTTOM;
// If horizontal also remove the height of the dash
const {dockFixed: fixedDock} = Docking.DockManager.settings;
const additionalMargin = isHorizontal && !fixedDock ? Main.overview.dash.height : 0;
const verticalMargins = this._menu.actor.margin_top + this._menu.actor.margin_bottom;
const maxMenuHeight = workArea.height - additionalMargin - verticalMargins;
// Also set a max width to the menu, so long labels (long windows title) get truncated
this._menu.actor.style = 'max-width: 400px; ' +
`max-height: ${Math.round(maxMenuHeight / scaleFactor)}px;`;
}
});
const id = Main.overview.connect('hiding', () => {
this._menu.close();
});
this._menu.actor.connect('destroy', () => {
Main.overview.disconnect(id);
});
this._menuManager.addMenu(this._menu);
}
this.emit('menu-state-changed', true);
this.set_hover(true);
this._menu.popup();
this._menuManager.ignoreRelease();
this.emit('sync-tooltip');
return false;
}
activate(button) {
const event = Clutter.get_current_event();
let modifiers = event ? event.get_state() : 0;
// Only consider SHIFT and CONTROL as modifiers (exclude SUPER, CAPS-LOCK, etc.)
modifiers &= Clutter.ModifierType.SHIFT_MASK | Clutter.ModifierType.CONTROL_MASK;
// We don't change the CTRL-click behavior: in such case we just chain
// up the parent method and return.
if (modifiers & Clutter.ModifierType.CONTROL_MASK) {
// Keep default behavior: launch new window
// By calling the parent method I make it compatible
// with other extensions tweaking ctrl + click
super.activate(button);
return;
}
// We check what type of click we have and if the modifier SHIFT is
// being used. We then define what buttonAction should be for this
// event.
let buttonAction = 0;
const {settings} = Docking.DockManager;
if (button && button === 2) {
if (modifiers & Clutter.ModifierType.SHIFT_MASK)
buttonAction = settings.shiftMiddleClickAction;
else
buttonAction = settings.middleClickAction;
} else if (button && button === 1) {
if (modifiers & Clutter.ModifierType.SHIFT_MASK)
buttonAction = settings.shiftClickAction;
else
buttonAction = settings.clickAction;
}
switch (buttonAction) {
case clickAction.FOCUS_OR_APP_SPREAD:
if (!Docking.DockManager.getDefault().appSpread.supported)
buttonAction = clickAction.FOCUS_OR_PREVIEWS;
break;
case clickAction.FOCUS_MINIMIZE_OR_APP_SPREAD:
if (!Docking.DockManager.getDefault().appSpread.supported)
buttonAction = clickAction.FOCUS_MINIMIZE_OR_PREVIEWS;
break;
}
// We check if the app is running, and that the # of windows is > 0 in
// case we use workspace isolation.
const windows = this.getInterestingWindows();
// Some action modes (e.g. MINIMIZE_OR_OVERVIEW) require overview to remain open
// This variable keeps track of this
let shouldHideOverview = true;
// We customize the action only when the application is already running
if (this.running) {
const hasUrgentWindows = !!this._urgentWindows.size;
const singleOrUrgentWindows = windows.length === 1 || hasUrgentWindows;
switch (buttonAction) {
case clickAction.MINIMIZE:
// In overview just activate the app, unless the action is explicitly
// requested with a keyboard modifier
if (!Main.overview.visible || modifiers) {
// If we have button=2 or a modifier, allow minimization even if
// the app is not focused
if (this.focused && !hasUrgentWindows || button === 2 ||
modifiers & Clutter.ModifierType.SHIFT_MASK) {
// minimize all windows on double click and always in
// the case of primary click without additional modifiers
let clickCount = 0;
if (Clutter.EventType.CLUTTER_BUTTON_PRESS)
clickCount = event.get_click_count();
const allWindows = (button === 1 && !modifiers) || clickCount > 1;
this._minimizeWindow(allWindows);
} else {
this._activateAllWindows();
}
} else {
const [w] = windows;
Main.activateWindow(w);
}
break;
case clickAction.MINIMIZE_OR_OVERVIEW:
// When a single window is present, toggle minimization
// If only one windows is present toggle minimization, but
// only when triggered with the simple click action
// (no modifiers, no middle click).
if (singleOrUrgentWindows && !modifiers && button === 1) {
const [w] = windows;
if (this.focused) {
if (buttonAction !== clickAction.FOCUS_OR_APP_SPREAD) {
// Window is raised, minimize it
this._minimizeWindow(w);
}
} else {
// Window is minimized, raise it
Main.activateWindow(w);
}
// Launch overview when multiple windows are present
// TODO: only show current app windows when gnome shell API will allow it
} else {
shouldHideOverview = false;
Main.overview.toggle();
}
break;
case clickAction.CYCLE_WINDOWS:
if (!Main.overview.visible) {
if (this.focused && !hasUrgentWindows) {
this._cycleThroughWindows();
} else {
// Activate the first window
const [w] = windows;
Main.activateWindow(w);
}
} else {
this.app.activate();
}
break;
case clickAction.FOCUS_OR_PREVIEWS:
if (this.focused && !hasUrgentWindows &&
(windows.length > 1 || modifiers || button !== 1)) {
this._windowPreviews();
} else {
// Activate the first window
const [w] = windows;
Main.activateWindow(w);
}
break;
case clickAction.FOCUS_MINIMIZE_OR_PREVIEWS:
if (this.focused && !hasUrgentWindows) {
if (windows.length > 1 || modifiers || button !== 1)
this._windowPreviews();
else if (!Main.overview.visible)
this._minimizeWindow();
} else {
// Activate the first window
const [w] = windows;
Main.activateWindow(w);
}
break;
case clickAction.LAUNCH:
this.launchNewWindow();
break;
case clickAction.PREVIEWS:
if (!Main.overview.visible) {
// If only one windows is present just switch to it,
// but only when triggered with the simple click action
// (no modifiers, no middle click).
if (singleOrUrgentWindows && !modifiers && button === 1) {
const [w] = windows;
Main.activateWindow(w);
} else {
this._windowPreviews();
}
} else {
this.app.activate();
}
break;
case clickAction.MINIMIZE_OR_PREVIEWS:
// When a single window is present, toggle minimization
// If only one windows is present toggle minimization, but only
// when triggered with the standard click action (no modifiers,
// no middle click).
if (!Main.overview.visible) {
if (singleOrUrgentWindows && !modifiers && button === 1) {
const [w] = windows;
if (this.focused) {
// Window is raised, minimize it
this._minimizeWindow(w);
} else {
// Window is minimized, raise it
Main.activateWindow(w);
}
} else {
// Launch previews when multiple windows are present
this._windowPreviews();
}
} else {
this.app.activate();
}
break;
case clickAction.FOCUS_OR_APP_SPREAD:
if (this.focused && !singleOrUrgentWindows && !modifiers && button === 1) {
shouldHideOverview = false;
Docking.DockManager.getDefault().appSpread.toggle(this.app);
} else {
// Activate the first window
Main.activateWindow(windows[0]);
}
break;
case clickAction.FOCUS_MINIMIZE_OR_APP_SPREAD:
if (this.focused && !singleOrUrgentWindows && !modifiers && button === 1) {
shouldHideOverview = false;
Docking.DockManager.getDefault().appSpread.toggle(this.app);
} else if (!this.focused) {
// Activate the first window
Main.activateWindow(windows[0]);
} else {
this._minimizeWindow();
}
break;
case clickAction.QUIT:
this.closeAllWindows();
break;
case clickAction.SKIP:
Main.activateWindow(windows[0]);
break;
}
} else {
this.launchNewWindow();
}
// Hide overview except when action mode requires it
if (shouldHideOverview)
Main.overview.hide();
}
shouldShowTooltip() {
return super.shouldShowTooltip() && !this._previewMenu?.isOpen &&
!Docking.DockManager.settings.hideTooltip;
}
_windowPreviews() {
if (!this._previewMenu) {
this._previewMenuManager = new PopupMenu.PopupMenuManager(this);
this._previewMenu = new WindowPreview.WindowPreviewMenu(this);
this._previewMenuManager.addMenu(this._previewMenu);
this._previewMenu.connect('open-state-changed', (menu, isPoppedUp) => {
if (!isPoppedUp)
this._onMenuPoppedDown();
});
const id = Main.overview.connect('hiding', () => {
this._previewMenu.close();
});
this._previewMenu.actor.connect('destroy', () => {
Main.overview.disconnect(id);
});
}
this.emit('menu-state-changed', !this._previewMenu.isOpen);
if (this._previewMenu.isOpen)
this._previewMenu.close();
else
this._previewMenu.popup();
return false;
}
// Try to do the right thing when attempting to launch a new window of an app. In
// particular, if the application doesn't allow to launch a new window, activate
// the existing window instead.
launchNewWindow() {
if (this.updating) {
const icon = Gio.Icon.new_for_string('action-unavailable-symbolic');
Main.osdWindowManager.show(-1, icon,
_('%s is updating, try again later').format(this.name),
null);
return;
}
if (this.app.state === Shell.AppState.RUNNING &&
this.app.can_open_new_window()) {
this.animateLaunch();
this.app.open_new_window(-1);
} else {
// Try to manually activate the first window. Otherwise, when the
// app is activated by switching to a different workspace, a launch
// spinning icon is shown and disappears only after a timeout.
const windows = this.getWindows();
if (windows.length > 0) {
Main.activateWindow(windows[0]);
} else {
this.app.activate();
this.animateLaunch();
}
}
}
_numberOverlay() {
// Add label for a Hot-Key visual aid
this._numberOverlayLabel = new St.Label();
this._numberOverlayBin = new St.Bin({
child: this._numberOverlayLabel,
x_align: Clutter.ActorAlign.START,
y_align: Clutter.ActorAlign.START,
x_expand: true, y_expand: true,
});
this._numberOverlayLabel.add_style_class_name('number-overlay');
this._numberOverlayOrder = -1;
this._numberOverlayBin.hide();
this._iconContainer.add_child(this._numberOverlayBin);
}
updateNumberOverlay() {
// We apply an overall scale factor that might come from a HiDPI monitor.
// Clutter dimensions are in physical pixels, but CSS measures are in logical
// pixels, so make sure to consider the scale.
const scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor;
// Set the font size to something smaller than the whole icon so it is
// still visible. The border radius is large to make the shape circular
const [minWidth_, natWidth] = this._iconContainer.get_preferred_width(-1);
const fontSize = Math.round(Math.max(12, 0.3 * natWidth) / scaleFactor);
const size = Math.round(fontSize * 1.2);
this._numberOverlayLabel.set_style(
`font-size: ${fontSize}px;` +
`border-radius: ${this.icon.iconSize}px;` +
`width: ${size}px; height: ${size}px;`
);
}
setNumberOverlay(number) {
this._numberOverlayOrder = number;
this._numberOverlayLabel.set_text(number.toString());
}
toggleNumberOverlay(activate) {
if (activate && this._numberOverlayOrder > -1) {
this.updateNumberOverlay();
this._numberOverlayBin.show();
} else {
this._numberOverlayBin.hide();
}
}
_minimizeWindow(param) {
// Param true make all app windows minimize
const windows = this.getInterestingWindows();
const currentWorkspace = global.workspace_manager.get_active_workspace();
for (let i = 0; i < windows.length; i++) {
const w = windows[i];
if (w.get_workspace() === currentWorkspace && w.showing_on_its_workspace()) {
w.minimize();
// Just minimize one window. By specification it should be the
// focused window on the current workspace.
if (!param)
break;
}
}
}
// By default only non minimized windows are activated.
// This activates all windows in the current workspace.
_activateAllWindows() {
// First activate first window so workspace is switched if needed.
// We don't do this if isolation is on!
if (!Docking.DockManager.settings.isolateWorkspaces &&
!Docking.DockManager.settings.isolateMonitors) {
if (!this.running)
this.animateLaunch();
this.app.activate();
}
// then activate all other app windows in the current workspace
const windows = this.getInterestingWindows();
const activeWorkspace = global.workspace_manager.get_active_workspace_index();
if (windows.length <= 0)
return;
for (let i = windows.length - 1; i >= 0; i--) {
if (windows[i].get_workspace()?.index() === activeWorkspace)
Main.activateWindow(windows[i]);
}
}
// This closes all windows of the app.
closeAllWindows() {
const windows = this.getInterestingWindows();
const time = global.get_current_time();
windows.forEach(w => w.delete(time));
}
_cycleThroughWindows(reversed) {
// Store for a little amount of time last clicked app and its windows
// since the order changes upon window interaction
const MEMORY_TIME = 3000;
const appWindows = this.getInterestingWindows();
if (appWindows.length < 1)
return;
if (recentlyClickedAppLoopId > 0)
GLib.source_remove(recentlyClickedAppLoopId);
recentlyClickedAppLoopId = GLib.timeout_add(
GLib.PRIORITY_DEFAULT, MEMORY_TIME, this._resetRecentlyClickedApp);
// If there isn't already a list of windows for the current app,
// or the stored list is outdated, use the current windows list.
const monitorIsolation = Docking.DockManager.settings.isolateMonitors;
if (!recentlyClickedApp ||
recentlyClickedApp.get_id() !== this.app.get_id() ||
recentlyClickedAppWindows.length !== appWindows.length ||
(recentlyClickedAppMonitor !== this.monitorIndex && monitorIsolation)) {
recentlyClickedApp = this.app;
recentlyClickedAppWindows = appWindows;
recentlyClickedAppMonitor = this.monitorIndex;
recentlyClickedAppIndex = 0;
}
if (reversed) {
recentlyClickedAppIndex--;
if (recentlyClickedAppIndex < 0)
recentlyClickedAppIndex = recentlyClickedAppWindows.length - 1;
} else {
recentlyClickedAppIndex++;
}
const index = recentlyClickedAppIndex % recentlyClickedAppWindows.length;
const window = recentlyClickedAppWindows[index];
Main.activateWindow(window);
}
_resetRecentlyClickedApp() {
if (recentlyClickedAppLoopId > 0)
GLib.source_remove(recentlyClickedAppLoopId);
recentlyClickedAppLoopId = 0;
recentlyClickedApp = null;
recentlyClickedAppWindows = null;
recentlyClickedAppIndex = 0;
recentlyClickedAppMonitor = -1;
return false;
}
getWindows() {
return this.app.get_windows();
}
// Filter out unnecessary windows, for instance
// nautilus desktop window.
getInterestingWindows() {
const interestingWindows = getInterestingWindows(this.getWindows(),
this.monitorIndex);
if (!this._urgentWindows.size)
return interestingWindows;
return [...new Set([...this._urgentWindows, ...interestingWindows])];
}
getSnapName() {
return this.app.appInfo?.get_string('X-SnapInstanceName');
}
});
const DockAppIcon = GObject.registerClass({
}, class DockAppIcon extends DockAbstractAppIcon {
_init(app, monitorIndex, iconAnimator) {
super._init(app, monitorIndex, iconAnimator);
this._signalsHandler.add(tracker, 'notify::focus-app', () => this._updateFocusState());
}
});
const DockLocationAppIcon = GObject.registerClass({
}, class DockLocationAppIcon extends DockAbstractAppIcon {
_init(app, monitorIndex, iconAnimator) {
if (!(app.appInfo instanceof Locations.LocationAppInfo))
throw new Error('Provided application %s is not a Location'.format(app));
super._init(app, monitorIndex, iconAnimator);
if (Docking.DockManager.settings.isolateLocations) {
this._signalsHandler.add(tracker, 'notify::focus-app', () => this._updateFocusState());
} else {
this._signalsHandler.add(global.display, 'notify::focus-window',
() => this._updateFocusState());
}
this._signalsHandler.add(this.app, 'notify::icon', () => this.icon.update());
}
get location() {
return this.app.location;
}
_updateFocusState() {
if (Docking.DockManager.settings.isolateLocations) {
super._updateFocusState();
return;
}
this.focused = this.app.isFocused && this.running;
}
});
/**
* @param app
* @param monitorIndex
* @param iconAnimator
*/
export function makeAppIcon(app, monitorIndex, iconAnimator) {
if (app.appInfo instanceof Locations.LocationAppInfo)
return new DockLocationAppIcon(app, monitorIndex, iconAnimator);
return new DockAppIcon(app, monitorIndex, iconAnimator);
}
/**