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
|
|
|
|
|
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-03-31 16:08:10 +08:00
|
|
|
|
hoverEnabled: true
|
|
|
|
|
clip: true
|
2023-04-26 17:04:22 +08:00
|
|
|
|
onContainsMouseChanged: listView.focus = false
|
2023-03-31 16:08:10 +08:00
|
|
|
|
AppControls2.StyleBackground {
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
width: parent.width
|
|
|
|
|
height: 1
|
|
|
|
|
useStyleTransparent: false
|
|
|
|
|
alpha: 0.15
|
|
|
|
|
paletteRole: Palette.Text
|
|
|
|
|
visible: listView.contentY > 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
spacing: 0
|
|
|
|
|
anchors.leftMargin: 4
|
|
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
|
id: listView
|
|
|
|
|
spacing: 4
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
highlightMoveDuration: 0
|
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
|
ScrollBar.vertical: listViewScrollBar
|
2023-04-26 17:04:22 +08:00
|
|
|
|
// 焦点切换后,listView按键导航重新开始
|
|
|
|
|
onActiveFocusChanged: currentIndex = 0
|
|
|
|
|
onCountChanged: currentIndex = 0
|
|
|
|
|
keyNavigationWraps: true
|
2023-03-31 16:08:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppControls2.ScrollBar {
|
|
|
|
|
id: listViewScrollBar
|
|
|
|
|
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.preferredWidth: 14
|
|
|
|
|
visual: root.containsMouse
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|