putting library header in column so that scrollbar isn't above

This commit is contained in:
Chris Cochrun 2022-10-23 07:01:26 -05:00
parent 64e3978853
commit 2935632df5

View file

@ -75,47 +75,14 @@ Item {
}
}
ListView {
Layout.preferredHeight: parent.height - 200
Layout.fillWidth: true
Layout.alignment: Qt.AlignTop
id: songLibraryList
model: songsqlmodel
delegate: songDelegate
state: "selected"
states: [
State {
name: "deselected"
when: (selectedLibrary !== "songs")
PropertyChanges { target: songLibraryList
Layout.preferredHeight: 0
}
},
State {
name: "selected"
when: (selectedLibrary == "songs")
PropertyChanges { target: songLibraryList }
}
]
transitions: Transition {
to: "*"
NumberAnimation {
target: songLibraryList
properties: "preferredHeight"
easing.type: Easing.OutCubic
duration: 300
}
}
header: Component {
Rectangle {
id: songLibraryHeader
z: 2
height: 40
width: parent.width
Layout.fillWidth: true
/* width: parent.width */
color: Kirigami.Theme.backgroundColor
opacity: 1
Kirigami.ActionToolBar {
height: parent.height
width: parent.width
@ -151,9 +118,40 @@ Item {
}
}
}
}
headerPositioning: ListView.OverlayHeader
ListView {
Layout.preferredHeight: parent.height - 200
Layout.fillWidth: true
Layout.alignment: Qt.AlignTop
id: songLibraryList
model: songsqlmodel
delegate: songDelegate
state: "selected"
states: [
State {
name: "deselected"
when: (selectedLibrary !== "songs")
PropertyChanges { target: songLibraryList
Layout.preferredHeight: 0
}
},
State {
name: "selected"
when: (selectedLibrary == "songs")
PropertyChanges { target: songLibraryList }
}
]
transitions: Transition {
to: "*"
NumberAnimation {
target: songLibraryList
properties: "preferredHeight"
easing.type: Easing.OutCubic
duration: 300
}
}
Component {
id: songDelegate
@ -279,7 +277,10 @@ Item {
}
Controls.ScrollBar.vertical: Controls.ScrollBar {
anchors.right: songLibraryList.right
/* parent: songLibraryList.parent */
/* anchors.right: songLibraryList.right */
/* anchors.top: songLibraryList.headerItem.top */
/* anchors.bottom: songLibraryList.bottom */
/* anchors.leftMargin: 10 */
/* anchors.left: songLibraryList.right */
active: hovered || pressed
@ -701,6 +702,14 @@ Item {
}
}
}
Controls.ScrollBar.vertical: Controls.ScrollBar {
/* anchors.right: videoLibraryList.right */
/* anchors.leftMargin: 10 */
/* anchors.left: videoLibraryList.right */
active: hovered || pressed
}
}
Rectangle {
@ -903,6 +912,13 @@ Item {
}
}
}
Controls.ScrollBar.vertical: Controls.ScrollBar {
/* anchors.right: videoLibraryList.right */
/* anchors.leftMargin: 10 */
/* anchors.left: videoLibraryList.right */
active: hovered || pressed
}
}
Rectangle {
@ -960,6 +976,14 @@ Item {
duration: 300
}
}
Controls.ScrollBar.vertical: Controls.ScrollBar {
/* anchors.right: videoLibraryList.right */
/* anchors.leftMargin: 10 */
/* anchors.left: videoLibraryList.right */
active: hovered || pressed
}
}
}