/***************************************************************************** * Copyright (C) 2022 by Friedrich Schriewer * * * * This program 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. * * * * This program 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, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ****************************************************************************/ import QtQuick 2.12 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.extras 2.0 as PlasmaExtras import org.kde.plasma.private.kicker 0.1 as Kicker import QtQuick.Window 2.2 import org.kde.plasma.components 3.0 as PlasmaComponents import QtQuick.Layouts 1.15 import QtQuick.Controls 2.15 import Qt5Compat.GraphicalEffects import org.kde.kirigami as Kirigami ScrollView { id: runnerList anchors { top: parent.top } width: parent.width height: parent.height contentWidth: - 1 //no horizontal scrolling // focus: true property alias model: repeater.model property alias count: repeater.count // ScrollBar.horizontal.policy: ScrollBar.AlwaysOff // ScrollBar.vertical.policy: ScrollBar.AsNeeded property int currentMainIndex: 0 property int currentSubIndex: 0 onFocusChanged: { if (!focus) { for (var i = 0; i < repeater.count; i++) { repeater.itemAt(i).nGrid.focus = false } } else { currentMainIndex = 0 for (var i = 0; i < repeater.count; ++i) { if (repeater.itemAt(i).nGrid.count > 0) { currentSubIndex = i repeater.itemAt(i).nGrid.setFocus(); break } } } } function get_position(){ return flickableItem.contentY / (flickableItem.contentHeight - height) } function get_size(){ return (flickableItem.contentHeight <= height ? -1 : 0.99999) } function setFocus() { currentMainIndex = 0 for (var i = 0; i < repeater.count; ++i) { if (repeater.itemAt(i).nGrid.count > 0) { currentSubIndex = i repeater.itemAt(i).nGrid.setFocus(); break } } } function triggerFirst(){ repeater.itemAt(currentSubIndex).nGrid.currentItem.trigger() } Column { x: -10 * 1 Repeater { id: repeater delegate: Item { id: section width: runnerList.width height: headerLabel.height + navGrid.height + (index == repeater.count - 1 ? 0 : 10) visible: navGrid.count > 0 property Item nGrid: navGrid Item { id: headerLabel anchors.top: parent.top height: image.height Image { id: image x: 20 * 1 source: repeater.model.modelForRow(index).description === 'Command Line' ? "icons/feather/code.svg" : repeater.model.modelForRow(index).description == 'File Search' ? "icons/feather/search.svg" : "icons/feather/file-text.svg" width: 15 * 1 height: width //visible: repeater.model.modelForRow(index).count > 0 PlasmaComponents.Label { x: parent.width + 10 * 1 anchors.verticalCenter: parent.verticalCenter text: repeater.model.modelForRow(index).name color: main.textColor font.family: main.textFont font.pointSize: main.textSize + 2 } ColorOverlay { visible: true anchors.fill: image source: image color: main.textColor } } } NavGrid { id: navGrid width: runnerList.width height: Math.ceil(count * (42 * 1 )) + 10 * 1 anchors.top: headerLabel.bottom subIndex: index triggerModel: repeater.model.modelForRow(index) x: 20 onFocusChanged: { if (focus) { runnerList.focus = true; } } onCountChanged: { if (index == 0 && count > 0) { currentIndex = 0; focus = true; } } onCurrentItemChanged: { if (!currentItem) { return; } if (currentItem.isMouseHighlight) { return } if (index == 0 && currentIndex === 0) { nGrid.flickableItem.contentY = 0; return; } var y = currentItem.y; y = contentItem.mapToItem(runnerList.contentItem, 0, y).y; if (y < runnerList.contentItem.contentY) { flickableItem.contentY = y; } else { y += currentItem.height + 20 * 1 + 15 * 1; y -= runnerList.contentItem.contentY; y -= runnerList.height; if (y > 0) { runnerList.contentItem.contentY += y; } } } onKeyNavUp: { if (index > 0) { for (var i = index - 1; i > -1; --i) { if (repeater.itemAt(i).nGrid.count > 0) { repeater.itemAt(i).nGrid.setFocusLast() currentSubIndex = index - 1 break } } } } onKeyNavDown: { if (index < repeater.count - 1) { for (var i = index + 1; i < repeater.count; ++i) { if (repeater.itemAt(i).nGrid.count > 0) { repeater.itemAt(i).nGrid.setFocus() currentSubIndex = index + 1 break } } } } } // Kicker.WheelInterceptor { // anchors.fill: navGrid // // z: -1 // destination: findWheelArea(runnerList.flickableItem) // } } } } }