provide a multiapplets innerZoomFactor structure
--introduce AppletsRecords in order to keep track of their requirements that influence the containment qml behaviorpull/15/head
parent
03de9bb09f
commit
3a7a8368fa
@ -0,0 +1,80 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2020 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.0
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: records
|
||||||
|
|
||||||
|
property real maxInnerZoomFactor: 1.0 //! maximum inner zoom factor based on all applets
|
||||||
|
|
||||||
|
property var applets: []
|
||||||
|
|
||||||
|
function indexOf(applet) {
|
||||||
|
var len = applets.length;
|
||||||
|
|
||||||
|
for (var i=0; i<len; ++i) {
|
||||||
|
if (applets[i].id === applet) {
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeApplet(applet) {
|
||||||
|
var ind = indexOf(applet);
|
||||||
|
|
||||||
|
if (ind>=0) {
|
||||||
|
//! remove
|
||||||
|
applets.splice(ind, 1);
|
||||||
|
updateInnerZoomFactor();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function setInnerZoomFactor(applet, inner) {
|
||||||
|
var len = applets.length;
|
||||||
|
var ind = indexOf(applet);
|
||||||
|
|
||||||
|
if (ind >=0) {
|
||||||
|
//! update
|
||||||
|
if(applets[ind].innerZoomFactor !== inner) {
|
||||||
|
applets[ind].innerZoomFactor = inner;
|
||||||
|
updateInnerZoomFactor();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//! add
|
||||||
|
applets.push({id: applet, innerZoomFactor: inner});
|
||||||
|
updateInnerZoomFactor();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateInnerZoomFactor() {
|
||||||
|
var len = applets.length;
|
||||||
|
var max = 1;
|
||||||
|
|
||||||
|
for (var i=0; i<len; ++i) {
|
||||||
|
if (applets[i].innerZoomFactor > max) {
|
||||||
|
max = applets[i].innerZoomFactor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
maxInnerZoomFactor = max;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue