2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-12-07 03:03:08 +00:00
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
pragma ComponentBehavior: Bound
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQml.Models
|
2011-12-07 03:03:08 +00:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: root
|
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
width: 300
|
|
|
|
height: 400
|
2011-12-07 03:03:08 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: dragDelegate
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: dragArea
|
|
|
|
|
|
|
|
property bool held: false
|
2023-03-15 08:53:23 +00:00
|
|
|
required property string name
|
|
|
|
required property string type
|
|
|
|
required property string size
|
|
|
|
required property int age
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
left: parent?.left
|
|
|
|
right: parent?.right
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
height: content.height
|
|
|
|
|
|
|
|
enabled: visualModel.sortOrder == visualModel.lessThan.length
|
|
|
|
|
|
|
|
drag.target: held ? content : undefined
|
|
|
|
drag.axis: Drag.YAxis
|
|
|
|
|
|
|
|
onPressAndHold: held = true
|
|
|
|
onReleased: held = false
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: content
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2023-03-15 08:53:23 +00:00
|
|
|
width: dragArea.width
|
|
|
|
height: column.implicitHeight + 4
|
2011-12-07 03:03:08 +00:00
|
|
|
|
|
|
|
border.width: 1
|
|
|
|
border.color: "lightsteelblue"
|
|
|
|
|
|
|
|
color: dragArea.held ? "lightsteelblue" : "white"
|
|
|
|
Behavior on color { ColorAnimation { duration: 100 } }
|
|
|
|
|
|
|
|
radius: 2
|
|
|
|
|
|
|
|
Drag.active: dragArea.held
|
|
|
|
Drag.source: dragArea
|
|
|
|
Drag.hotSpot.x: width / 2
|
|
|
|
Drag.hotSpot.y: height / 2
|
|
|
|
|
|
|
|
states: State {
|
|
|
|
when: dragArea.held
|
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
ParentChange {
|
|
|
|
target: content
|
|
|
|
parent: root
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
AnchorChanges {
|
|
|
|
target: content
|
2023-03-15 08:53:23 +00:00
|
|
|
anchors {
|
|
|
|
horizontalCenter: undefined
|
|
|
|
verticalCenter: undefined
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
2023-03-15 08:53:23 +00:00
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: 2
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
Text { text: qsTr('Name: ') + dragArea.name }
|
|
|
|
Text { text: qsTr('Type: ') + dragArea.type }
|
|
|
|
Text { text: qsTr('Age: ') + dragArea.age }
|
|
|
|
Text { text: qsTr('Size: ') + dragArea.size }
|
2011-12-07 03:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DropArea {
|
2023-03-15 08:53:23 +00:00
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: 10
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
onEntered: (drag) => {
|
2011-12-07 03:03:08 +00:00
|
|
|
visualModel.items.move(
|
2013-01-23 22:08:58 +00:00
|
|
|
drag.source.DelegateModel.itemsIndex,
|
|
|
|
dragArea.DelegateModel.itemsIndex)
|
2011-12-07 03:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//![0]
|
2013-01-23 22:08:58 +00:00
|
|
|
DelegateModel {
|
2011-12-07 03:03:08 +00:00
|
|
|
id: visualModel
|
|
|
|
//![4]
|
|
|
|
property var lessThan: [
|
|
|
|
function(left, right) { return left.name < right.name },
|
|
|
|
function(left, right) { return left.type < right.type },
|
|
|
|
function(left, right) { return left.age < right.age },
|
|
|
|
function(left, right) {
|
|
|
|
if (left.size == "Small")
|
|
|
|
return true
|
|
|
|
else if (right.size == "Small")
|
|
|
|
return false
|
|
|
|
else if (left.size == "Medium")
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
//![4]
|
|
|
|
//![6]
|
|
|
|
|
|
|
|
property int sortOrder: orderSelector.selectedIndex
|
|
|
|
onSortOrderChanged: items.setGroups(0, items.count, "unsorted")
|
|
|
|
|
|
|
|
//![6]
|
|
|
|
//![3]
|
|
|
|
function insertPosition(lessThan, item) {
|
2023-03-15 08:53:23 +00:00
|
|
|
let lower = 0
|
|
|
|
let upper = items.count
|
2011-12-07 03:03:08 +00:00
|
|
|
while (lower < upper) {
|
2023-03-15 08:53:23 +00:00
|
|
|
const middle = Math.floor(lower + (upper - lower) / 2)
|
|
|
|
const result = lessThan(item.model, items.get(middle).model)
|
2011-12-07 03:03:08 +00:00
|
|
|
if (result) {
|
|
|
|
upper = middle
|
|
|
|
} else {
|
|
|
|
lower = middle + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lower
|
|
|
|
}
|
|
|
|
|
|
|
|
function sort(lessThan) {
|
|
|
|
while (unsortedItems.count > 0) {
|
2023-03-15 08:53:23 +00:00
|
|
|
const item = unsortedItems.get(0)
|
|
|
|
const index = insertPosition(lessThan, item)
|
2011-12-07 03:03:08 +00:00
|
|
|
|
|
|
|
item.groups = "items"
|
|
|
|
items.move(item.itemsIndex, index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//![3]
|
|
|
|
|
|
|
|
//![1]
|
|
|
|
items.includeByDefault: false
|
|
|
|
//![5]
|
2018-10-03 06:47:04 +00:00
|
|
|
groups: DelegateModelGroup {
|
2011-12-07 03:03:08 +00:00
|
|
|
id: unsortedItems
|
|
|
|
name: "unsorted"
|
|
|
|
|
|
|
|
includeByDefault: true
|
|
|
|
//![1]
|
|
|
|
onChanged: {
|
|
|
|
if (visualModel.sortOrder == visualModel.lessThan.length)
|
|
|
|
setGroups(0, count, "items")
|
|
|
|
else
|
|
|
|
visualModel.sort(visualModel.lessThan[visualModel.sortOrder])
|
|
|
|
}
|
|
|
|
//![2]
|
|
|
|
}
|
|
|
|
//![2]
|
|
|
|
//![5]
|
|
|
|
model: PetsModel {}
|
|
|
|
delegate: dragDelegate
|
|
|
|
}
|
|
|
|
//![0]
|
|
|
|
ListView {
|
|
|
|
id: view
|
|
|
|
|
|
|
|
anchors {
|
2023-03-15 08:53:23 +00:00
|
|
|
left: parent.left
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
|
|
|
bottom: orderSelector.top
|
2011-12-07 03:03:08 +00:00
|
|
|
margins: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
model: visualModel
|
|
|
|
|
|
|
|
spacing: 4
|
|
|
|
cacheBuffer: 50
|
|
|
|
}
|
|
|
|
|
|
|
|
ListSelector {
|
|
|
|
id: orderSelector
|
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
bottom: parent.bottom
|
|
|
|
margins: 2
|
|
|
|
}
|
2011-12-07 03:03:08 +00:00
|
|
|
|
2023-03-15 08:53:23 +00:00
|
|
|
label: qsTr("Sort By")
|
|
|
|
list: [ qsTr("Name"), qsTr("Type"), qsTr("Age"), qsTr("Size"), qsTr("Custom") ]
|
2011-12-07 03:03:08 +00:00
|
|
|
}
|
|
|
|
}
|