2023-03-31 16:08:10 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
|
|
|
|
*
|
|
|
|
|
* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
|
import AppControls2 1.0 as AppControls2
|
2024-01-04 11:13:41 +08:00
|
|
|
|
import org.ukui.quick.platform 1.0 as Platform
|
2023-12-11 16:13:53 +08:00
|
|
|
|
import org.ukui.quick.items 1.0 as UkuiItems
|
2023-03-31 16:08:10 +08:00
|
|
|
|
import org.ukui.menu.core 1.0
|
|
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
readonly property alias view: listView
|
|
|
|
|
property alias model: listView.model
|
|
|
|
|
property alias delegate: listView.delegate
|
2023-04-26 17:04:22 +08:00
|
|
|
|
property alias listFocus: listView.focus
|
2023-05-04 15:09:52 +08:00
|
|
|
|
property int itemHeight: 40
|
2023-03-31 16:08:10 +08:00
|
|
|
|
hoverEnabled: true
|
|
|
|
|
clip: true
|
2023-05-23 11:54:17 +08:00
|
|
|
|
|
2023-12-11 16:13:53 +08:00
|
|
|
|
UkuiItems.StyleBackground {
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
width: parent.width
|
|
|
|
|
height: 1
|
|
|
|
|
useStyleTransparency: false
|
|
|
|
|
alpha: 0.15
|
2024-01-04 11:13:41 +08:00
|
|
|
|
paletteRole: Platform.Theme.Text
|
2023-12-11 16:13:53 +08:00
|
|
|
|
visible: listView.contentY > 0
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-31 16:08:10 +08:00
|
|
|
|
RowLayout {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
spacing: 0
|
|
|
|
|
anchors.leftMargin: 4
|
|
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
|
id: listView
|
2024-01-22 16:03:53 +08:00
|
|
|
|
cacheBuffer: count * root.itemHeight
|
2023-03-31 16:08:10 +08:00
|
|
|
|
spacing: 4
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
highlightMoveDuration: 0
|
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
|
ScrollBar.vertical: listViewScrollBar
|
2023-08-14 11:15:54 +08:00
|
|
|
|
keyNavigationWraps: true
|
2023-05-23 11:54:17 +08:00
|
|
|
|
|
2023-04-26 17:04:22 +08:00
|
|
|
|
// 焦点切换后,listView按键导航重新开始
|
2023-08-14 11:15:54 +08:00
|
|
|
|
onCountChanged: resetCurrentIndex()
|
|
|
|
|
function resetCurrentIndex() { currentIndex = 0 }
|
|
|
|
|
Component.onCompleted: mainWindow.visibleChanged.connect(resetCurrentIndex)
|
|
|
|
|
Component.onDestruction: mainWindow.visibleChanged.disconnect(resetCurrentIndex)
|
2023-03-31 16:08:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppControls2.ScrollBar {
|
|
|
|
|
id: listViewScrollBar
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.preferredWidth: 14
|
|
|
|
|
visual: root.containsMouse
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|