-
Notifications
You must be signed in to change notification settings - Fork 774
/
Copy pathapplet.js
1317 lines (1144 loc) · 44.9 KB
/
applet.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
const St = imports.gi.St;
const Lang = imports.lang;
const Tooltips = imports.ui.tooltips;
const PopupMenu = imports.ui.popupMenu;
const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio;
const Main = imports.ui.main;
const DND = imports.ui.dnd;
const Clutter = imports.gi.Clutter;
const AppletManager = imports.ui.appletManager;
const Util = imports.misc.util;
const Pango = imports.gi.Pango;
const Mainloop = imports.mainloop;
const Flashspot = imports.ui.flashspot;
const ModalDialog = imports.ui.modalDialog;
const Signals = imports.signals;
const Gettext = imports.gettext;
const Cinnamon = imports.gi.Cinnamon;
const SignalManager = imports.misc.signalManager;
var AllowedLayout = { // the panel layout that an applet is suitable for
VERTICAL: 'vertical',
HORIZONTAL: 'horizontal',
BOTH: 'both'
};
/**
* #MenuItem
* @short_description: Deprecated. Use #PopupMenu.PopupIconMenuItem instead.
*/
var MenuItem = class MenuItem extends PopupMenu.PopupIconMenuItem {
_init(label, icon, callback) {
super._init(label, icon, St.IconType.SYMBOLIC);
this.connect('activate', callback);
}
}
/**
* #AppletContextMenu
* @short_description: Applet right-click menu
*
* A context menu (right-click menu) to be used by an applet
*
* Inherits: PopupMenu.PopupMenu
*/
var AppletContextMenu = class AppletContextMenu extends PopupMenu.PopupMenu {
_init(launcher, orientation) {
super._init(launcher.actor, orientation);
Main.uiGroup.add_actor(this.actor);
this.actor.hide();
this.connect("open-state-changed", Lang.bind(this, this._onOpenStateChanged, launcher.actor));
launcher.connect("orientation-changed", Lang.bind(this, function(a, orientation) {
this.setArrowSide(orientation);
}));
}
_onOpenStateChanged(menu, open, sourceActor) {
sourceActor.change_style_pseudo_class("checked", open);
}
}
/**
* #AppletPopupMenu:
* @short_description: Applet left-click menu
*
* A popupmenu menu (left-click menu) to be used by an applet
*
* Inherits: PopupMenu.PopupMenu
*/
var AppletPopupMenu = class AppletPopupMenu extends PopupMenu.PopupMenu {
/**
* _init:
* @launcher (Applet.Applet): The applet that contains the context menu
* @orientation (St.Side): The orientation of the applet
*
* Constructor function
*/
_init(launcher, orientation) {
super._init(launcher.actor, orientation);
Main.uiGroup.add_actor(this.actor);
this.actor.hide();
this.launcher = launcher;
if (launcher instanceof Applet) {
this.connect("open-state-changed", Lang.bind(this, this._onOpenStateChanged, launcher));
launcher.connect("orientation-changed", Lang.bind(this, this._onOrientationChanged));
} else if (launcher._applet) {
launcher._applet.connect("orientation-changed", Lang.bind(this, this._onOrientationChanged));
}
}
_onOrientationChanged(a, orientation) {
this.setArrowSide(orientation);
}
_onOpenStateChanged(menu, open, sourceActor) {
if (!sourceActor._applet_context_menu.isOpen)
sourceActor.actor.change_style_pseudo_class("checked", open);
}
}
/**
* #Applet
* @short_description: Base applet class
*
* @actor (St.BoxLayout): Actor of the applet
* @instance_id (int): Instance id of the applet
* @_uuid (string): UUID of the applet. This is set by appletManager *after*
* the applet is loaded.
* @_panelLocation (St.BoxLayout): Panel sector containing the applet. This is
* set by appletManager *after* the applet is loaded.
* @panel (Panel.Panel): The panel object containing the applet. This is set by
* appletManager *after* the applet is loaded.
* @_meta (JSON): The metadata of the applet. This is set by appletManager
* *after* the applet is loaded.
* @_order (int): The order of the applet within a panel location This is set
* by appletManager *after* the applet is loaded.
* @_draggable (Dnd._Draggable): The draggable object of the applet
* @_applet_tooltip (Tooltips.PanelItemTooltip): The tooltip of the applet
* @_menuManager (PopupMenu.PopupMenuManager): The menu manager of the applet
* @_applet_context_menu (Applet.AppletContextMenu): The context menu of the applet
* @_applet_tooltip_text (string): Text of the tooltip
* @_allowedLayout (Applet.AllowedLayout): The allowed layout of the applet. This
* determines the type of panel an applet is allowed in. By default this is set
* to Applet.AllowedLayout.HORIZONTAL
*
* Base applet class that other applets can inherit
*/
var Applet = class Applet {
/**
* _init:
* @orientation (St.Side): orientation of the applet; Orientation of panel containing the actor
* @panelHeight (int): height of the panel containing the applet
* @instance_id (int): instance id of the applet
*/
constructor() {
return this._init.apply(this, arguments);
}
_init(orientation, panel_height, instance_id) {
this.actor = new St.BoxLayout({ style_class: 'applet-box',
reactive: true,
track_hover: true });
this._allowedLayout = AllowedLayout.HORIZONTAL;
this.setOrientationInternal(orientation);
this._applet_tooltip = new Tooltips.PanelItemTooltip(this, "", orientation);
this.actor.connect('button-press-event', Lang.bind(this, this._onButtonPressEvent));
this._menuManager = new PopupMenu.PopupMenuManager(this);
this._applet_context_menu = new AppletContextMenu(this, orientation);
this._menuManager.addMenu(this._applet_context_menu);
this.actor._applet = this; // Backlink to get the applet from its actor
// (handy when we want to know stuff about a particular applet within the panel)
this.actor._delegate = this;
this.panel = null;
this._order = 0; // Defined in gsettings, this is the order of the applet within a panel location.
// This value is set by Cinnamon when loading/listening_to gsettings.
this._newOrder = null; // Used when moving an applet
this._panelLocation = null; // Backlink to the panel location our applet is in, set by Cinnamon.
this.locationLabel = 'right';
this._newPanelId = null; // Used when moving an applet
this._newPanelLocation = null; // Used when moving an applet
this._applet_enabled = true; // Whether the applet is enabled or not (if not it hides in the panel as if it wasn't there)
this._orientation = orientation; // orientation of the panel the applet is on St.Side.TOP BOTTOM LEFT RIGHT
this._lastIconType = St.IconType.FULLCOLOR;
this._iconSize = null;
this.instance_id = instance_id; // Needed by appletSettings
this._uuid = null; // Defined in gsettings, set by Cinnamon.
this._meta = null; // set by appletManager
this._dragging = false;
this._draggable = DND.makeDraggable(this.actor);
this._draggable.connect('drag-begin', Lang.bind(this, this._onDragBegin));
this._draggable.connect('drag-cancelled', Lang.bind(this, this._onDragCancelled));
this._draggable.connect('drag-end', Lang.bind(this, this._onDragEnd));
this._applet_tooltip_text = "";
this.context_menu_item_remove = null;
this.context_menu_separator = null;
this._setAppletReactivity();
this._panelEditModeChangedId = global.settings.connect('changed::panel-edit-mode', Lang.bind(this, function() {
this._setAppletReactivity();
}));
// FIXME: Cinnamon should be providing a sandbox environment for extensions, and not depend on data passed
// from the extension for basic state that we are already keeping track of in appletManager. Since applets
// need icon sizes available immediately in their constructor, this has to stay for now.
if (instance_id) {
this._getPanelInfo(instance_id);
} else {
setTimeout(() => this._getPanelInfo(), 0);
}
}
_addStyleClass(className){
this.actor.add_style_class_name(className);
}
_getPanelInfo(instance_id) {
if (!instance_id) instance_id = this.instance_id;
let appletDefinition = AppletManager.getAppletDefinition({applet_id: instance_id});
if (appletDefinition) {
const panelIndex = Main.panelManager.panels.findIndex( panel => {
return panel && (panel.panelId === appletDefinition.panelId);
});
if (panelIndex > -1) {
let panel = Main.panelManager.panels[panelIndex];
this.locationLabel = appletDefinition.location_label;
this.panel = panel;
this._uuid = appletDefinition.uuid;
} else {
global.logWarning(`[Applet] No panel found for ${instance_id}`);
}
} else {
throw new Error(`[Applet] Unable to find definition for applet ${instance_id}`);
}
}
/* FIXME: This makes no sense - inhibit flag should = panel edit mode, right?
* Needs fixed in dnd.js also, it expects this backwards logic right now
*/
_setAppletReactivity() {
this._draggable.inhibit = !global.settings.get_boolean('panel-edit-mode');
}
_onDragBegin() {
this._dragging = true;
this._applet_tooltip.hide();
this._applet_tooltip.preventShow = true;
Main.panelManager.resetPanelDND();
}
_onDragEnd() {
this._dragging = false;
this._applet_tooltip.preventShow = false;
}
_onDragCancelled() {
this._dragging = false;
this._applet_tooltip.preventShow = false;
}
getDragActor() {
let clone = new Clutter.Clone({ source: this.actor });
clone.width = this.actor.width;
clone.height = this.actor.height;
return clone;
}
// Returns the original actor that should align with the actor
// we show as the item is being dragged.
getDragActorSource() {
return this.actor;
}
_onButtonPressEvent (actor, event) {
if (!this._applet_enabled) {
return false;
}
let button = event.get_button();
if (button < 3) {
if (!this._draggable.inhibit) {
return false;
} else {
if (this._applet_context_menu.isOpen) {
this._applet_context_menu.toggle();
}
}
}
if (button === 1) {
this.on_applet_clicked(event);
} else if (button === 2) {
this.on_applet_middle_clicked(event);
} else if (button === 3) {
if (this._applet_context_menu._getMenuItems().length > 0) {
this._applet_context_menu.toggle();
}
}
return true;
}
/**
* set_applet_tooltip:
* @text (string): the tooltip text to be set
* @use_markup (boolean): parse the text as markup if true
*
* Sets the tooltip of the applet
*/
set_applet_tooltip (text, use_markup=false) {
if (text != this._applet_tooltip_text) {
this._applet_tooltip_text = text;
if (use_markup) {
this._applet_tooltip.set_markup(text);
} else {
this._applet_tooltip.set_text(text);
}
}
if (text === "") {
this._applet_tooltip.hide();
}
}
/**
* set_applet_enabled:
* @enabled (boolean): whether this applet is enabled or not
*
* Sets whether the applet is enabled or not. A disabled applet sets its
* padding to 0px and doesn't react to clicks
*/
set_applet_enabled (enabled) {
if (enabled != this._applet_enabled) {
this._applet_enabled = enabled;
this.actor.visible = enabled;
}
}
/**
* on_applet_clicked:
* @event (Clutter.Event): the event object
*
* This function is called when the applet is clicked.
*
* This is meant to be overridden in individual applets.
*/
on_applet_clicked(event) {
// Implemented by Applets
}
/**
* on_applet_middle_clicked:
* @event (Clutter.Event): the event object
*
* This function is called when the applet is clicked with the middle mouse button.
*
* This is meant to be overridden in individual applets.
*/
on_applet_middle_clicked(event) {
// Implemented by Applets
}
/**
* on_applet_instances_changed:
* @instance (Applet) the instance that was changed
*
* This function is called when an applet *of the same uuid* is added or
* removed from the panels. It is intended to assist in delegation of
* responsibilities between duplicate applet instances.
*
* Applets should not create any references to @instance, since that
* could impede garbage collection.
*
* This is meant to be overridden in individual applets
*/
on_applet_instances_changed() {
}
on_applet_added_to_panel_internal(userEnabled) {
if (userEnabled) {
Mainloop.timeout_add(300, Lang.bind(this, function() {
let [x, y] = this.actor.get_transformed_position();
let [w, h] = this.actor.get_transformed_size();
let flashspot = new Flashspot.Flashspot({ x : x, y : y, width: w, height: h});
flashspot.fire();
return false;
}));
}
this._panelSizeChangeId = this.panel.connect('size-changed', () => this.on_panel_height_changed_internal());
this._panelIconSizeChangeId = this.panel.connect('icon-size-changed', () => this.on_panel_icon_size_changed_internal());
this.on_applet_added_to_panel(userEnabled);
Main.AppletManager.callAppletInstancesChanged(this._uuid, this);
}
/**
* on_applet_added_to_panel:
*
* This function is called by appletManager when the applet is added to the panel.
*
* This is meant to be overridden in individual applets.
*/
on_applet_added_to_panel(userEnabled) {
}
/**
* on_applet_removed_from_panel:
*
* This function is called by appletManager when the applet is removed from the panel.
*
* This is meant to be overridden in individual applets.
*/
on_applet_removed_from_panel(deleteConfig) {
}
/**
* on_applet_reloaded:
*
* This function is called by appletManager when the applet is reloaded.
*
* This is meant to be overridden in individual applets.
*/
on_applet_reloaded(deleteConfig) {
}
// should only be called by appletManager
_onAppletRemovedFromPanel(deleteConfig) {
global.settings.disconnect(this._panelEditModeChangedId);
this.panel.disconnect(this._panelSizeChangeId);
this.panel.disconnect(this._panelIconSizeChangeId);
this.on_applet_removed_from_panel(deleteConfig);
Main.AppletManager.callAppletInstancesChanged(this._uuid, this);
}
/**
* setOrientationInternal:
* @orientation (St.Side): the orientation
*
* Sets the orientation of the St.BoxLayout.
*
*/
setOrientationInternal (orientation) {
if (orientation == St.Side.LEFT || orientation == St.Side.RIGHT) {
this.actor.add_style_class_name('vertical');
this.actor.set_important(true);
this.actor.set_vertical(true);
this.actor.set_x_expand(true);
} else {
this.actor.remove_style_class_name('vertical');
this.actor.set_vertical(false);
}
}
/**
* setOrientation:
* @orientation (St.Side): the orientation
*
* Sets the orientation of the applet.
*
* This function should only be called by appletManager
*/
setOrientation (orientation) {
this._orientation = orientation;
this.setOrientationInternal(orientation);
this.on_orientation_changed(orientation);
this.emit("orientation-changed", orientation);
this.finalizeContextMenu();
if (typeof this.set_applet_label === 'function' && this._applet_label instanceof St.Label) {
this.set_applet_label(this._applet_label.get_text());
}
// FIXME: This function will be called from AppletManager before the panel is
// assigned. When the panel orientation changes, it becomes unavailable,
// so we need to check for this.panel here.
if (this.panel) this.on_panel_icon_size_changed_internal();
}
/**
* setAllowedLayout:
* @layout (AllowedLayout): the allowed layout
*
* Sets the layout allowed by the applet. Possible values are
* AllowedLayout.HORIZONTAL, AllowedLayout.VERTICAL, and
* AllowedLayout.BOTH.
*/
setAllowedLayout (layout) {
this._allowedLayout = layout;
}
/**
* getAllowedLayout:
*
* Retrieves the type of layout an applet is allowed to have.
*
* Returns (Applet.AllowedLayout): The allowed layout of the applet
*/
getAllowedLayout() {
return this._allowedLayout;
}
/**
* on_orientation_changed:
* @orientation (St.Side): new orientation of the applet
*
* This function is called when the applet is changes orientation.
*
* This is meant to be overridden in individual applets.
*/
on_orientation_changed(orientation) {
// Implemented by Applets
}
getPanelIconSize(iconType = St.IconType.FULLCOLOR) {
// If no panel, then the panel probably was added with pre-existing applet
// definitions associated to it. This means there's no zone config, so return early.
if (!this.panel) return;
this._lastIconType = iconType;
this._iconSize = this.panel.getPanelZoneIconSize(this.locationLabel, iconType);
return this._iconSize;
}
/**
* on_panel_height_changed_internal:
*
* This function is called when the panel containing the applet changes height
*/
on_panel_height_changed_internal() {
this.on_panel_height_changed();
}
/**
* on_panel_height_changed:
*
* This function is called when the panel containing the applet changes height
*
* This is meant to be overridden in individual applets.
*/
on_panel_height_changed() {
// Implemented byApplets
}
on_panel_icon_size_changed_internal() {
let size = this.panel.getPanelZoneIconSize(this.locationLabel, this._lastIconType);
if (!this._iconSize || this._iconSize !== size) {
this._iconSize = size;
if (this._applet_icon) {
this._applet_icon.set_icon_size(size);
}
this.on_panel_icon_size_changed(size);
}
}
/**
* on_panel_icon_size_changed:
* @size (number): new icon size
*
* This function is called when the icon size preference for the panel zone
* containing this applet is changed.
*
* This is meant to be overridden in individual applets.
*/
on_panel_icon_size_changed() {
// Implemented byApplets
}
confirmRemoveApplet (event) {
if (Clutter.ModifierType.CONTROL_MASK & Cinnamon.get_event_state(event)) {
AppletManager._removeAppletFromPanel(this._uuid, this.instance_id);
} else {
let dialog = new ModalDialog.ConfirmDialog(
_("Are you sure you want to remove '%s'?").format(this._(this._meta.name)),
() => AppletManager._removeAppletFromPanel(this._uuid, this.instance_id)
);
dialog.open();
}
}
finalizeContextMenu () {
// Add default context menus if we're in panel edit mode, ensure their removal if we're not
let items = this._applet_context_menu._getMenuItems();
if (this.context_menu_item_remove == null) {
this.context_menu_item_remove = new PopupMenu.PopupIconMenuItem(_("Remove '%s'")
.format(this._(this._meta.name)),
"edit-delete",
St.IconType.SYMBOLIC);
this.context_menu_item_remove.connect('activate', (actor, event) => this.confirmRemoveApplet(event));
}
if (this.context_menu_item_about == null) {
this.context_menu_item_about = new PopupMenu.PopupIconMenuItem(_("About..."),
"dialog-question",
St.IconType.SYMBOLIC);
this.context_menu_item_about.connect('activate', Lang.bind(this, this.openAbout));
}
if (this.context_menu_separator == null && this._applet_context_menu._getMenuItems().length > 0) {
this.context_menu_separator = new PopupMenu.PopupSeparatorMenuItem();
this._applet_context_menu.addMenuItem(this.context_menu_separator);
}
if (items.indexOf(this.context_menu_item_about) == -1) {
this._applet_context_menu.addMenuItem(this.context_menu_item_about);
}
if (!this._meta["hide-configuration"] && GLib.file_test(this._meta["path"] + "/settings-schema.json", GLib.FileTest.EXISTS)) {
if (this.context_menu_item_configure == null) {
this.context_menu_item_configure = new PopupMenu.PopupIconMenuItem(_("Configure..."),
"system-run",
St.IconType.SYMBOLIC);
this.context_menu_item_configure.connect('activate', Lang.bind(this, this.configureApplet));
}
if (items.indexOf(this.context_menu_item_configure) == -1) {
this._applet_context_menu.addMenuItem(this.context_menu_item_configure);
}
}
if (items.indexOf(this.context_menu_item_remove) == -1) {
this._applet_context_menu.addMenuItem(this.context_menu_item_remove);
}
}
// translation
_(str) {
// look into the text domain first
let translated = Gettext.dgettext(this._uuid, str);
// if it looks translated, return the translation of the domain
if (translated !== str)
return translated;
// else, use the default cinnamon domain
return _(str);
}
/**
* highlight:
* @highlight (boolean): whether to turn on or off
*
* Turns on/off the highlight of the applet
*/
highlight(highlight) {
this.actor.change_style_pseudo_class("highlight", highlight);
}
openAbout() {
Util.spawnCommandLine("xlet-about-dialog applets " + this._uuid);
}
configureApplet(tab=0) {
Util.spawnCommandLine("xlet-settings applet " + this._uuid + " -i " + this.instance_id + " -t " + tab);
}
get _panelHeight() {
return this.panel.height;
}
get _scaleMode() {
global.logWarning(`[Applet/${this._uuid}] Use of scaleMode is deprecated.`);
return true;
}
};
Signals.addSignalMethods(Applet.prototype);
/**
* #IconApplet:
* @short_description: Applet with icon
*
* @_applet_icon (St.Icon): Actor of the icon
*
* Applet that contains an icon
*
* Inherits: Applet.Applet
*/
var IconApplet = class IconApplet extends Applet {
/**
* _init:
* @orientation (St.Side): orientation of the applet; Orientation of panel containing the actor
* @panelHeight (int): height of the panel containing the applet
* @instance_id (int): instance id of the applet
*/
_init(orientation, panel_height, instance_id) {
super._init(orientation, panel_height, instance_id);
this._applet_icon_box = new St.Bin(); // https://developer.gnome.org/st/stable/StBin.htm
this._applet_icon_box.set_fill(true,true);
this._applet_icon_box.set_alignment(St.Align.MIDDLE,St.Align.MIDDLE);
this.actor.add(this._applet_icon_box);
}
/**
* set_applet_icon_name:
* @icon_name (string): Name of the icon
*
* Sets the icon of the applet to @icon_name.
*
* The icon will be full color
*/
set_applet_icon_name (icon_name) {
this._ensureIcon();
this._applet_icon.set_icon_name(icon_name);
this._applet_icon.set_icon_type(St.IconType.FULLCOLOR);
this._setStyle();
}
/**
* set_applet_icon_symbolic_name:
* @icon_name (string): Name of the icon
*
* Sets the icon of the applet to @icon_name.
*
* The icon will be symbolic
*/
set_applet_icon_symbolic_name (icon_name) {
this._ensureIcon();
this._applet_icon.set_icon_name(icon_name);
this._applet_icon.set_icon_type(St.IconType.SYMBOLIC);
this._setStyle();
}
/**
* set_applet_icon_path:
* @icon_path (string): path of the icon
*
* Sets the icon of the applet to the image file at @icon_path
*
* The icon will be full color
*/
set_applet_icon_path (icon_path) {
this._ensureIcon();
try {
let file = Gio.file_new_for_path(icon_path);
this._applet_icon.set_gicon(new Gio.FileIcon({ file: file }));
this._applet_icon.set_icon_type(St.IconType.FULLCOLOR);
this._setStyle();
} catch (e) {
global.log(e);
}
}
/**
* set_applet_icon_symbolic_path:
* @icon_path (string): path of the icon
*
* Sets the icon of the applet to the image file at @icon_path
*
* The icon will be symbolic
*/
set_applet_icon_symbolic_path(icon_path) {
this._ensureIcon();
try {
let file = Gio.file_new_for_path(icon_path);
this._applet_icon.set_gicon(new Gio.FileIcon({ file: file }));
this._applet_icon.set_icon_type(St.IconType.SYMBOLIC);
this._setStyle();
} catch (e) {
global.log(e);
}
}
_ensureIcon() {
if (!this._applet_icon || !(this._applet_icon instanceof St.Icon))
this._applet_icon = new St.Icon({ reactive: true, track_hover: true, style_class: 'applet-icon'});
this._applet_icon_box.set_child(this._applet_icon);
}
_setStyle() {
let icon_type = this._applet_icon.get_icon_type();
if (icon_type === St.IconType.FULLCOLOR) {
this._applet_icon.set_icon_size(this.getPanelIconSize(St.IconType.FULLCOLOR));
this._applet_icon.set_style_class_name('applet-icon');
} else {
this._applet_icon.set_icon_size(this.getPanelIconSize(St.IconType.SYMBOLIC));
this._applet_icon.set_style_class_name('system-status-icon');
}
}
on_panel_height_changed_internal() {
if (this._applet_icon)
this._setStyle();
this.on_panel_height_changed();
}
}
/**
* #TextApplet:
* @short_description: Applet with label
* @_applet_label (St.Label): Label of the applet
*
* Applet that displays a text
*
* Inherits: Applet.Applet
*/
var TextApplet = class TextApplet extends Applet {
/**
* _init:
* @orientation (St.Side): orientation of the applet; Orientation of panel containing the actor
* @panelHeight (int): height of the panel containing the applet
* @instance_id (int): instance id of the applet
*
* Note that suitability for display in a vertical panel is handled by having applets declare
* they work OK, handled elsewhere
*/
_init(orientation, panel_height, instance_id) {
super._init(orientation, panel_height, instance_id);
this._applet_label = new St.Label({ reactive: true,
track_hover: true,
style_class: 'applet-label'});
this._applet_label.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
this._layoutBin = new St.Bin();
this._layoutBin.set_child(this._applet_label);
this.actor.add(this._layoutBin, { y_align: St.Align.MIDDLE,
y_fill: false });
this.actor.set_label_actor(this._applet_label);
}
/**
* set_applet_label:
* @text (string): text to be displayed at the label
*
* Sets the text of the actor to @text
*/
set_applet_label (text) {
this._applet_label.set_text(text);
}
on_applet_added_to_panel() {
}
}
/**
* #TextIconApplet:
* @short_description: Applet with icon and label
* @_applet_label (St.Label): Label of the applet
*
* Applet that displays an icon and a text. The icon is on the left of the text
*
* Inherits: Applet.IconApplet
* Note that suitability for display in a vertical panel is handled by having applets declare
* they work OK, handled elsewhere
*/
var TextIconApplet = class TextIconApplet extends IconApplet {
/**
* _init:
* @orientation (St.Side): orientation of the applet; Orientation of panel containing the actor
* @panelHeight (int): height of the panel containing the applet
* @instance_id (int): instance id of the applet
*/
_init(orientation, panel_height, instance_id) {
super._init(orientation, panel_height, instance_id);
this._applet_label = new St.Label({ reactive: true,
track_hover: true,
style_class: 'applet-label'});
this._applet_label.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
this._layoutBin = new St.Bin();
this._layoutBin.set_child(this._applet_label);
this.actor.add(this._layoutBin, { y_align: St.Align.MIDDLE,
y_fill: false });
this.actor.set_label_actor(this._applet_label);
this.show_label_in_vertical_panels = true;
}
/**
* set_show_label_in_vertical_panels:
* @show (boolean): whether to show the label in vertical panels
*
* Sets whether to show the label in vertical panels
*/
set_show_label_in_vertical_panels (show) {
this.show_label_in_vertical_panels = show;
}
/**
* set_applet_label:
* @text (string): text to be displayed at the label
*
* Sets the text of the actor to @text
*/
set_applet_label (text) {
this._applet_label.set_text(text);
if ((this._orientation == St.Side.LEFT || this._orientation == St.Side.RIGHT) && (this.show_label_in_vertical_panels == false)) {
// Hide the label in vertical panel for applets which don't support it
this.hide_applet_label(true);
}
else {
if (text == "") {
// Hide empty labels
this.hide_applet_label(true);
}
else {
this.hide_applet_label(false);
}
}
}
/**
* set_applet_enabled:
* @enabled (boolean): whether this applet is enabled or not
*
* Sets whether the applet is enabled or not. A disabled applet sets its
* padding to 0px and doesn't react to clicks
*/
set_applet_enabled (enabled) {
if (enabled != this._applet_enabled) {
this._applet_enabled = enabled;
this.actor.visible = enabled;
if (this._applet_icon) {
this._applet_icon.visible = enabled;
}
}
}
/**
* hide_applet_label:
* @hide (boolean): whether the applet label is hidden or not
*
* Sets whether the applets label is hidden or not. A convenience
* function to hide applet labels when an applet is placed in a vertical
* panel
*/
hide_applet_label (hide) {
if (hide) {
this.hideLabel();
} else {
this.showLabel();
}
}
/**
* hideLabel:
*
* Hides the applet label
*/
hideLabel () {
this._applet_label.hide();
this._layoutBin.hide();
}
/**
* showLabel:
*
* Shows the applet label
*/
showLabel () {
this._applet_label.show();
this._layoutBin.show();
}
/**
* hide_applet_icon:
*
* Hides the icon of the applet
*/
hide_applet_icon () {
this._applet_icon_box.child = null;
}
on_applet_added_to_panel() {
}
}
const ZONE_SIZE = 10;
/**
* #PopupResizeHandler:
* @short_description: Class that allows an applet to be resized using the mouse.
* @inhibit_resizing (Boolean): Set to true to prevent resizing from starting.
* @resizingInProgress (Boolean): True when resizing is in progress
*
* Example usage:
* ```
* this.menu = new Applet.AppletPopupMenu(this, this.orientation);
* this.settings.bind("popup-width", "popup_width");
* this.settings.bind("popup-height", "popup_height");
*
* this._resizer = new Applet.PopupResizeHandler(
* this.menu.actor,
* () => this.orientation,
* (w,h) => this._onBoxResized(w,h),
* () => this.popup_width * global.ui_scale,
* () => this.popup_height * global.ui_scale);
*
* ...
*
* _onBoxResized(width, height) {
* this.popup_width = Math.max(width / global.ui_scale, 300);
* this.popup_height = Math.max(height / global.ui_scale, 400);