mirror of
https://github.com/KDE/latte-dock.git
synced 2024-12-24 05:33:50 +03:00
move Indexer ability client into library
This commit is contained in:
parent
24802431ff
commit
460ce35f6c
@ -22,9 +22,70 @@ import QtQuick 2.0
|
||||
import org.kde.latte.abilities.definition 0.1 as AbilityDefinition
|
||||
|
||||
AbilityDefinition.Indexer {
|
||||
id: indexer
|
||||
id: _indexer
|
||||
property Item bridge: null
|
||||
property Item layout: null
|
||||
|
||||
property bool updateIsBlocked: false
|
||||
|
||||
readonly property bool isActive: bridge !== null
|
||||
readonly property bool tailAppletIsSeparator: isActive ? bridge.indexer.tailAppletIsSeparator : false
|
||||
readonly property bool headAppletIsSeparator: isActive ? bridge.indexer.headAppletIsSeparator : false
|
||||
readonly property bool isReady: !updateIsBlocked
|
||||
readonly property int maxIndex: 99999
|
||||
readonly property alias visibleItemsCount: _privates.visibleItemsCount
|
||||
readonly property alias firstVisibleItemIndex: _privates.firstVisibleItemIndex
|
||||
readonly property alias lastVisibleItemIndex: _privates.lastVisibleItemIndex
|
||||
|
||||
QtObject {
|
||||
id: _privates
|
||||
property int firstVisibleItemIndex: -1
|
||||
property int lastVisibleItemIndex: -1
|
||||
property int visibleItemsCount: 0
|
||||
}
|
||||
|
||||
hidden: {
|
||||
var hdns = [];
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (item && item.isHidden && item.itemIndex>=0) {
|
||||
hdns.push(item.itemIndex);
|
||||
}
|
||||
}
|
||||
|
||||
return hdns;
|
||||
}
|
||||
|
||||
readonly property bool firstTailItemIsSeparator: {
|
||||
if (visibleItemsCount === layout.children.length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for(var i=0; i<firstVisibleItemIndex; ++i) {
|
||||
if (separators.indexOf(i)>=0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
readonly property bool lastHeadItemIsSeparator: {
|
||||
if (visibleItemsCount === layout.children.length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var len = layout.children.length;
|
||||
|
||||
for(var i=len-1; i>lastVisibleItemIndex; --i) {
|
||||
if (separators.indexOf(i)>=0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
onIsActiveChanged: {
|
||||
if (isActive) {
|
||||
@ -43,4 +104,110 @@ AbilityDefinition.Indexer {
|
||||
bridge.indexer.client = null;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "firstVisibleItemIndex"
|
||||
when: isReady
|
||||
value: {
|
||||
var ind = maxIndex;
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0
|
||||
&& item.itemIndex < ind) {
|
||||
ind = item.itemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return ind === maxIndex ? -1 : ind;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "lastVisibleItemIndex"
|
||||
when: isReady
|
||||
value: {
|
||||
var ind = -1;
|
||||
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0
|
||||
&& item.itemIndex > ind) {
|
||||
|
||||
//console.log("org.kde.latte SETTING UP ::: " + item.itemIndex + " / " + layout.children.length);
|
||||
ind = item.itemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return ind;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "visibleItemsCount"
|
||||
value: {
|
||||
var count = 0;
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0) {
|
||||
count = count + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _indexer
|
||||
property: "separators"
|
||||
when: isReady
|
||||
value: {
|
||||
var seps = [];
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (item && item.isSeparator && item.itemIndex>=0) {
|
||||
seps.push(item.itemIndex);
|
||||
}
|
||||
}
|
||||
|
||||
return seps;
|
||||
}
|
||||
}
|
||||
|
||||
function visibleIndex(taskIndex) {
|
||||
if (taskIndex<firstVisibleItemIndex
|
||||
|| taskIndex>lastVisibleItemIndex
|
||||
|| hidden.indexOf(taskIndex) >= 0
|
||||
|| separators.indexOf(taskIndex) >= 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
var vindex = -1;
|
||||
if (bridge) {
|
||||
vindex = bridge.indexer.host.visibleIndex(bridge.indexer.appletIndex);
|
||||
}
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (hidden.indexOf(item.itemIndex)>=0 || separators.indexOf(item.itemIndex)>=0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (item.itemIndex<taskIndex) {
|
||||
vindex = vindex + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return vindex;
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ Item {
|
||||
bridge: _abilityContainer.bridge
|
||||
}
|
||||
|
||||
Ability.Indexer {
|
||||
AbilityClient.Indexer {
|
||||
id: _indexer
|
||||
bridge: _abilityContainer.bridge
|
||||
layout: _abilityContainer.layout
|
||||
|
@ -1,199 +0,0 @@
|
||||
/*
|
||||
* 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
|
||||
|
||||
import org.kde.plasma.plasmoid 2.0
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
|
||||
import org.kde.latte.abilities.client 0.1 as AbilityClient
|
||||
|
||||
AbilityClient.Indexer {
|
||||
id: _indexer
|
||||
property Item layout: null
|
||||
|
||||
property bool updateIsBlocked: false
|
||||
|
||||
readonly property bool tailAppletIsSeparator: isActive ? bridge.indexer.tailAppletIsSeparator : false
|
||||
readonly property bool headAppletIsSeparator: isActive ? bridge.indexer.headAppletIsSeparator : false
|
||||
|
||||
readonly property bool isReady: !updateIsBlocked
|
||||
readonly property int maxIndex: 99999
|
||||
|
||||
readonly property alias visibleItemsCount: _privates.visibleItemsCount
|
||||
readonly property alias firstVisibleItemIndex: _privates.firstVisibleItemIndex
|
||||
readonly property alias lastVisibleItemIndex: _privates.lastVisibleItemIndex
|
||||
|
||||
QtObject {
|
||||
id: _privates
|
||||
property int firstVisibleItemIndex: -1
|
||||
property int lastVisibleItemIndex: -1
|
||||
property int visibleItemsCount: 0
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "firstVisibleItemIndex"
|
||||
when: isReady
|
||||
value: {
|
||||
var ind = maxIndex;
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0
|
||||
&& item.itemIndex < ind) {
|
||||
ind = item.itemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return ind === maxIndex ? -1 : ind;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "lastVisibleItemIndex"
|
||||
when: isReady
|
||||
value: {
|
||||
var ind = -1;
|
||||
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0
|
||||
&& item.itemIndex > ind) {
|
||||
|
||||
//console.log("org.kde.latte SETTING UP ::: " + item.itemIndex + " / " + layout.children.length);
|
||||
ind = item.itemIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return ind;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _privates
|
||||
property: "visibleItemsCount"
|
||||
value: {
|
||||
var count = 0;
|
||||
for(var i=0; i<layout.children.length; ++i) {
|
||||
var item = layout.children[i];
|
||||
if (item && item.itemIndex>=0
|
||||
&& hidden.indexOf(item.itemIndex)<0
|
||||
&& separators.indexOf(item.itemIndex)<0) {
|
||||
count = count + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
}
|
||||
|
||||
Binding {
|
||||
target: _indexer
|
||||
property: "separators"
|
||||
when: isReady
|
||||
value: {
|
||||
var seps = [];
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (item && item.isSeparator && item.itemIndex>=0) {
|
||||
seps.push(item.itemIndex);
|
||||
}
|
||||
}
|
||||
|
||||
return seps;
|
||||
}
|
||||
}
|
||||
|
||||
readonly property bool firstTailItemIsSeparator: {
|
||||
if (visibleItemsCount === layout.children.length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for(var i=0; i<firstVisibleItemIndex; ++i) {
|
||||
if (separators.indexOf(i)>=0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
readonly property bool lastHeadItemIsSeparator: {
|
||||
if (visibleItemsCount === layout.children.length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
var len = layout.children.length;
|
||||
|
||||
for(var i=len-1; i>lastVisibleItemIndex; --i) {
|
||||
if (separators.indexOf(i)>=0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
hidden: {
|
||||
var hdns = [];
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (item && item.isHidden && item.itemIndex>=0) {
|
||||
hdns.push(item.itemIndex);
|
||||
}
|
||||
}
|
||||
|
||||
return hdns;
|
||||
}
|
||||
|
||||
function visibleIndex(taskIndex) {
|
||||
if (taskIndex<firstVisibleItemIndex
|
||||
|| taskIndex>lastVisibleItemIndex
|
||||
|| hidden.indexOf(taskIndex) >= 0
|
||||
|| separators.indexOf(taskIndex) >= 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
var vindex = -1;
|
||||
if (bridge) {
|
||||
vindex = bridge.indexer.host.visibleIndex(bridge.indexer.appletIndex);
|
||||
}
|
||||
|
||||
for (var i=0; i<layout.children.length; ++i){
|
||||
var item = layout.children[i];
|
||||
if (hidden.indexOf(item.itemIndex)>=0 || separators.indexOf(item.itemIndex)>=0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (item.itemIndex<taskIndex) {
|
||||
vindex = vindex + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return vindex;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user