You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
latte-dock/containment/package/contents/code/LayoutManager.js

437 lines
13 KiB
JavaScript

/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock 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.
*
* Latte-Dock 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, see <http://www.gnu.org/licenses/>.
*/
var layout;
var layoutS;
var layoutE;
var root;
var plasmoid;
var lastSpacer;
var childFoundId = 11;
var inRestore=false;
function restore() {
inRestore = true;
var configString = String(plasmoid.configuration.appletOrder)
//array, a cell for encoded item order
var itemsArray = configString.split(";");
//map applet id->order in panel
var idsOrder = new Object();
//map order in panel -> applet pointer
var appletsOrder = new Object();
for (var i = 0; i < itemsArray.length; i++) {
//property name: applet id
//property value: order
idsOrder[itemsArray[i]] = i;
}
for (var i = 0; i < plasmoid.applets.length; ++i) {
if (idsOrder[plasmoid.applets[i].id] !== undefined) {
appletsOrder[idsOrder[plasmoid.applets[i].id]] = plasmoid.applets[i];
//ones that weren't saved in AppletOrder go to the end
} else {
appletsOrder["unordered"+i] = plasmoid.applets[i];
}
}
//finally, restore the applets in the correct order
for (var i in appletsOrder) {
root.addApplet(appletsOrder[i], -1, -1)
}
// console.log("splitters restored:"+plasmoid.configuration.splitterPosition+ " - " + plasmoid.configuration.splitterPosition2);
//add the splitters in the correct position if they exist
if(plasmoid.configuration.splitterPosition !== -1){
root.addInternalViewSplitter(plasmoid.configuration.splitterPosition);
}
if(plasmoid.configuration.splitterPosition2 !== -1){
root.addInternalViewSplitter(plasmoid.configuration.splitterPosition2);
}
//rewrite, so if in the orders there were now invalid ids or if some were missing creates a correct list instead
save();
restoreLocks();
inRestore = false;
//update layouts in case there is a splitter in them
root.updateLayouts();
}
function restoreLocks() {
var configString = String(plasmoid.configuration.lockedZoomApplets)
//array, a cell for encoded item order
var itemsArray = configString.split(";");
for (var i = 0; i < itemsArray.length; i++) {
for (var j = 0; j < layout.children.length; ++j) {
var child = layout.children[j];
if (child.applet && (child.applet.id == itemsArray[i])) {
child.lockZoom = true;
}
}
}
}
function save() {
var ids = new Array();
var splitterExists = false;
var splitterExists2 = false;
for (var i = 0; i < layoutS.children.length; ++i) {
var child = layoutS.children[i];
if (child.applet && !child.isInternalViewSplitter) {
ids.push(child.applet.id);
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && !splitterExists){
splitterExists = true;
plasmoid.configuration.splitterPosition = i;
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && splitterExists){
splitterExists2 = true;
plasmoid.configuration.splitterPosition2 = i;
}
}
for (var i = 0; i < layout.children.length; ++i) {
var child = layout.children[i];
if (child.applet && !child.isInternalViewSplitter) {
ids.push(child.applet.id);
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && !splitterExists){
splitterExists = true;
plasmoid.configuration.splitterPosition = i + layoutS.children.length;
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && splitterExists){
splitterExists2 = true;
plasmoid.configuration.splitterPosition2 = i + layoutS.children.length;
}
}
for (var i = 0; i < layoutE.children.length; ++i) {
var child = layoutE.children[i];
if (child.applet && !child.isInternalViewSplitter) {
ids.push(child.applet.id);
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && !splitterExists){
splitterExists = true;
plasmoid.configuration.splitterPosition = i + layoutS.children.length + layout.children.length;
} else if(child.isInternalViewSplitter && plasmoid.configuration.panelPosition === 10 && splitterExists){
splitterExists2 = true;
plasmoid.configuration.splitterPosition2 = i + layoutS.children.length + layout.children.length;
}
}
if(!splitterExists && !inRestore)
plasmoid.configuration.splitterPosition = -1;
if(!splitterExists2 && !inRestore)
plasmoid.configuration.splitterPosition2 = -1;
//console.log("splitters saved:"+plasmoid.configuration.splitterPosition+ " - " + plasmoid.configuration.splitterPosition2);
plasmoid.configuration.appletOrder = ids.join(';');
}
function saveLocks() {
var ids = new Array();
for (var i = 0; i < layout.children.length; ++i) {
var child = layout.children[i];
if (child.applet && child.lockZoom) {
ids.push(child.applet.id);
}
}
plasmoid.configuration.lockedZoomApplets = ids.join(';');
}
function removeApplet (applet) {
for (var i = layout.children.length - 1; i >= 0; --i) {
var child = layout.children[i];
if (child.applet === applet) {
child.destroy();
}
}
}
//insert item2 before item1
function insertBefore(item1, item2) {
return insertBeforeForLayout(layout, item1, item2);
}
//insert item2 before item1
function insertBeforeForLayout(tLayout, item1, item2) {
if (item1 === item2) {
return -1;
}
var removed = new Array();
var child;
var i;
for (i = tLayout.children.length - 1; i >= 0; --i) {
child = tLayout.children[i];
removed.push(child);
child.parent = root;
if (child === item1) {
break;
}
}
item2.parent = tLayout;
for (var j = removed.length - 1; j >= 0; --j) {
removed[j].parent = tLayout;
}
return i;
}
//insert item2 after item1
function insertAfter(item1, item2) {
return insertAfterForLayout(layout, item1, item2);
}
//insert item2 after item1
function insertAfterForLayout(tLayout, item1, item2) {
if (item1 === item2) {
return -1;
}
var removed = new Array();
var child;
var i;
for (i = tLayout.children.length - 1; i >= 0; --i) {
child = tLayout.children[i];
//never ever insert after lastSpacer
if (child === lastSpacer && item1 === lastSpacer) {
removed.push(child);
child.parent = root;
break;
} else if (child === item1) {
//Already in position, do nothing
if (tLayout.children[i+1] === item2) {
return -1;
}
break;
}
removed.push(child);
child.parent = root;
}
item2.parent = tLayout;
for (var j = removed.length - 1; j >= 0; --j) {
removed[j].parent = tLayout;
}
return i;
}
function insertAtIndex(item, position) {
var addToEnd = false;
if (position < 0 || (position > layout.children.length)) {
return;
} else if (position === layout.children.length) {
addToEnd = true;
}
//never ever insert after lastSpacer
var firstItem = (layout.children.length === 1) && (layout.children[0] === lastSpacer);
//Important !!! , this is used to add the first item
if(firstItem){
lastSpacer.parent = root;
position = 0;
}
if (addToEnd){
item.parent=layout;
return;
}
if(layout.children.length > 0){
if (layout.children[position] === lastSpacer) {
--position;
}
}
var removedItems = new Array();
var totalChildren = layout.children.length;
for (var i = position; i < totalChildren; ++i) {
var child = layout.children[position];
child.parent = root;
removedItems.push(child);
}
item.parent = layout;
for (var i in removedItems) {
removedItems[i].parent = layout;
}
}
function insertAtCoordinates(item, x, y) {
if (root.isHorizontal) {
y = layout.height / 2;
} else {
x = layout.width / 2;
}
var child = layout.childAt(x, y);
//if we got a place inside the space between 2 applets, we have to find it manually
if (!child) {
if (root.isHorizontal) {
for (var i = 0; i < layout.children.length; ++i) {
var candidate = layout.children[i];
if (x >= candidate.x && x < candidate.x + candidate.width + layout.rowSpacing) {
child = candidate;
break;
}
}
} else {
for (var i = 0; i < layout.children.length; ++i) {
var candidate = layout.children[i];
if (y >= candidate.x && y < candidate.y + candidate.height + layout.columnSpacing) {
child = candidate;
break;
}
}
}
}
//already in position
if (child === item) {
return;
}
if (!child) {
// check if dragging takes place after the end of the layout
if ( ((root.isVertical && y > layout.height)||(root.isHorizontal && x > layout.width))
&& layout.children.length>0 ){
child = layout.children[layout.children.length-1];
} else {
child = layout.children[0];
}
} else {
item.parent = root;
}
if ((root.isVertical && y < child.y + child.height/2) ||
(root.isHorizontal && x < child.x + child.width/2)) {
return insertBefore(child, item);
} else {
return insertAfter(child, item);
}
}
//this is used only for the start and end layouts
function insertAtLayoutCoordinates(tLayout, item, x, y) {
if (root.isHorizontal) {
y = tLayout.height / 2;
} else {
x = tLayout.width / 2;
}
var child = tLayout.childAt(x, y);
//if we got a place inside the space between 2 applets, we have to find it manually
if (!child) {
if (root.isHorizontal) {
for (var i = 0; i < tLayout.children.length; ++i) {
var candidate = tLayout.children[i];
if (x >= candidate.x && x < candidate.x + candidate.width + tLayout.rowSpacing) {
child = candidate;
break;
}
}
} else {
for (var i = 0; i < tLayout.children.length; ++i) {
var candidate = tLayout.children[i];
if (y >= candidate.x && y < candidate.y + candidate.height + tLayout.columnSpacing) {
child = candidate;
break;
}
}
}
}
//already in position
if (child === item) {
//
return childFoundId;
}
if (!child) {
// check if dragging takes place after the end of the layout
var neededSpace = 1.5 * root.realSize;
if ( (((root.isVertical && (y - neededSpace) <= tLayout.height) && y>=0)
||(root.isHorizontal && (x - neededSpace) <= tLayout.width) && x>=0)
&& tLayout.children.length>0 ){
child = tLayout.children[layout.children.length-1];
// check if dragging takes place before the start of the layout
} else if ( ((root.isVertical && (y >= -neededSpace) && (y<=neededSpace))
||(root.isHorizontal && (x >= -neededSpace) && (x<=neededSpace)))
&& tLayout.children.length>0 ){
child = tLayout.children[0];
} else {
return -1;
//child = tLayout.children[0];
}
} else {
item.parent = root;
}
if ((root.isVertical && y < child.y + child.height/2) ||
(root.isHorizontal && x < child.x + child.width/2)) {
return insertBeforeForLayout(tLayout, child, item);
} else {
return insertAfterForLayout(tLayout, child, item);
}
}
function insertAtCoordinates2(item, x, y) {
var pos = -1;
if (!root.editMode) {
var layoutPosS = layoutS.mapFromItem(root, x, y);
pos = insertAtLayoutCoordinates(layoutS, item, layoutPosS.x, layoutPosS.y);
if (pos === -1){
var layoutPosE = layoutE.mapFromItem(root, x, y);
pos = insertAtLayoutCoordinates(layoutE, item, layoutPosE.x, layoutPosE.y);
}
}
if (pos!==childFoundId && pos === -1) {
var layoutPos = layout.mapFromItem(root, x, y);
insertAtCoordinates(item, layoutPos.x, layoutPos.y);
}
}