/usr/share/cinnamon/js/ui/desklet.js is in cinnamon-common 3.6.7-8ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | //-*- indent-tabs-mode: nil-*-
const Cinnamon = imports.gi.Cinnamon;
const Clutter = imports.gi.Clutter;
const GLib = imports.gi.GLib;
const Lang = imports.lang;
const Mainloop = imports.mainloop;
const Meta = imports.gi.Meta;
const Signals = imports.signals;
const St = imports.gi.St;
const Util = imports.misc.util;
const Flashspot = imports.ui.flashspot;
const DeskletManager = imports.ui.deskletManager;
const DND = imports.ui.dnd;
const Main = imports.ui.main;
const ModalDialog = imports.ui.modalDialog;
const PopupMenu = imports.ui.popupMenu;
const Tooltips = imports.ui.tooltips;
const Tweener = imports.ui.tweener;
const RIGHT_PANEL_POPUP_ANIMATE_TIME = 0.5;
const DESKLET_DESTROY_TIME = 0.5;
/**
* #Desklet
* @short_description: Base desklet class to be inherited
* @metadata (dictionary): Metadata of desklet
* @actor (St.BoxLayout): Actor of desklet
* @content (St.Bin): The actor containing the content of the actor
* @instance_id (int): Instance id of the desklet
*
* #Desklet is a base class in which other desklets can inherit
*/
function Desklet(metadata, desklet_id){
this._init(metadata, desklet_id);
}
Desklet.prototype = {
/**
* _init:
* @metadata (dictionary): the metadata of the desklet
* @desklet_id (int): instance id of the desklet
*
* Constructor function
*/
_init: function(metadata, desklet_id){
this.metadata = metadata;
this.instance_id = desklet_id;
this.actor = new St.BoxLayout({reactive: true, track_hover: true, vertical: true});
this._header = new St.Bin({style_class: 'desklet-header'});
this._header_label = new St.Label();
this._header_label.set_text('Desklet');
this._header.set_child(this._header_label);
this.content = new St.Bin();
this.actor.add_actor(this._header);
this.actor.add_actor(this.content);
this._updateDecoration();
global.settings.connect('changed::desklet-decorations', Lang.bind(this, this._updateDecoration));
this._menu = new PopupMenu.PopupMenu(this.actor, St.Side.LEFT);
this._menuManager = new PopupMenu.PopupMenuManager(this);
this._menuManager.addMenu(this._menu);
Main.uiGroup.add_actor(this._menu.actor);
this._menu.actor.hide();
this.actor.connect('button-release-event', Lang.bind(this, this._onButtonReleaseEvent));
this._uuid = null;
this._dragging = false;
this._dragOffset = [0, 0];
this.actor._desklet = this;
this.actor._delegate = this;
this._drag_end_ids = {"drag-end": 0, "drag-cancelled": 0};
this._draggable = DND.makeDraggable(this.actor, {restoreOnSuccess: true}, Main.deskletContainer.actor);
},
/**
* setHeader:
* @header (string): the header of the desklet
*
* Sets the header text of the desklet to @header
*/
setHeader: function(header){
this._header_label.set_text(header);
},
/**
* setContent:
* @actor (Clutter.Actor): actor to be set as child
* @params (dictionary): (optional) parameters to be sent. This argument
* is ignored. Only kept for compatibility reasons
*
* Sets the content actor of the desklet as @actor
*/
setContent: function(actor, params){
this.content.set_child(actor);
},
/**
* on_desklet_removed:
*
* Callback when desklet is removed. To be overridden by individual desklets
*/
on_desklet_removed: function(deleteConfig) {
},
/**
* destroy:
*
* Destroys the actor with an fading animation
*/
destroy: function(deleteConfig){
Tweener.addTween(this.actor,
{ opacity: 0,
transition: 'linear',
time: DESKLET_DESTROY_TIME,
onComplete: Lang.bind(this, function(){
this.on_desklet_removed(deleteConfig);
this.actor.destroy();
})});
this._menu.destroy();
this._menu = null;
this._menuManager = null;
this.emit('destroy');
},
_updateDecoration: function(){
let dec = global.settings.get_int('desklet-decorations');
let preventDecorations = this.metadata['prevent-decorations'];
if (preventDecorations == true){
dec = 0;
}
switch(dec){
case 0:
this._header.hide();
this.content.style_class = 'desklet';
break;
case 1:
this._header.hide();
this.content.style_class = 'desklet-with-borders';
break;
case 2:
this._header.show();
this.content.style_class = 'desklet-with-borders-and-header';
break;
}
},
on_desklet_clicked: function(event) {
// Implemented by Desklets
},
on_desklet_added_to_desktop_internal: function(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.on_desklet_added_to_desktop(userEnabled);
},
/**
* on_desklet_added_to_desktop:
*
* This function is called by deskletManager when the desklet is added to the desktop.
*
* This is meant to be overridden in individual applets.
*/
on_desklet_added_to_desktop: function(userEnabled) {
},
_onButtonReleaseEvent: function(actor, event) {
if (event.get_button() == 3) {
this._menu.toggle();
} else {
if (this._menu.isOpen) {
this._menu.toggle();
}
this.on_desklet_clicked(event);
}
},
_trackMouse: function() {
if(!Main.layoutManager.isTrackingChrome(this.actor)) {
Main.layoutManager.addChrome(this.actor, {doNotAdd: true});
this._isTracked = true;
}
},
_untrackMouse: function() {
if(Main.layoutManager.isTrackingChrome(this.actor)) {
Main.layoutManager.untrackChrome(this.actor);
this._isTracked = false;
}
},
_onRemoveDesklet: function(){
DeskletManager.removeDesklet(this._uuid, this.instance_id);
},
finalizeContextMenu: function() {
this.context_menu_separator = new PopupMenu.PopupSeparatorMenuItem();
if (this._menu._getMenuItems().length > 0) {
this._menu.addMenuItem(this.context_menu_separator);
}
this.context_menu_item_about = new PopupMenu.PopupMenuItem(_("About..."))
this.context_menu_item_about.connect("activate", Lang.bind(this, this.openAbout));
this._menu.addMenuItem(this.context_menu_item_about);
if (!this._meta["hide-configuration"] && GLib.file_test(this._meta["path"] + "/settings-schema.json", GLib.FileTest.EXISTS)) {
this.context_menu_item_configure = new PopupMenu.PopupMenuItem(_("Configure..."));
this.context_menu_item_configure.connect("activate", Lang.bind(this, this.configureDesklet));
this._menu.addMenuItem(this.context_menu_item_configure);
}
this.context_menu_item_remove = new PopupMenu.PopupMenuItem(_("Remove this desklet"));
this.context_menu_item_remove.connect("activate", Lang.bind(this, this._onRemoveDesklet));
this._menu.addMenuItem(this.context_menu_item_remove);
},
/**
* highlight:
* @highlight (boolean): whether to turn on or off
*
* Turns on/off the highlight of the desklet
*/
highlight: function(highlight) {
this.content.change_style_pseudo_class("highlight", highlight);
},
openAbout: function() {
new ModalDialog.SpicesAboutDialog(this._meta, "desklets");
},
configureDesklet: function() {
Util.spawnCommandLine("xlet-settings desklet " + this._uuid + " " + this.instance_id);
}
};
Signals.addSignalMethods(Desklet.prototype);
|