First Commit
This commit is contained in:
41
3rdparty/kddockwidgets/examples/qtquick/customplayground/MySeparator.qml
vendored
Normal file
41
3rdparty/kddockwidgets/examples/qtquick/customplayground/MySeparator.qml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
This file is part of KDDockWidgets.
|
||||
|
||||
SPDX-FileCopyrightText: 2020 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
||||
Author: Sérgio Martins <sergio.martins@kdab.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
||||
|
||||
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
||||
*/
|
||||
|
||||
import QtQuick 2.6
|
||||
|
||||
Rectangle {
|
||||
id: root
|
||||
anchors.fill: parent
|
||||
color: "orange"
|
||||
|
||||
readonly property QtObject kddwSeparator: parent
|
||||
|
||||
MouseArea {
|
||||
cursorShape: kddwSeparator ? (kddwSeparator.isVertical ? Qt.SizeVerCursor : Qt.SizeHorCursor)
|
||||
: Qt.SizeHorCursor
|
||||
anchors.fill: parent
|
||||
onPressed: {
|
||||
kddwSeparator.onMousePressed();
|
||||
}
|
||||
|
||||
onReleased: {
|
||||
kddwSeparator.onMouseReleased();
|
||||
}
|
||||
|
||||
onPositionChanged: (mouse) => {
|
||||
kddwSeparator.onMouseMoved(Qt.point(mouse.x, mouse.y));
|
||||
}
|
||||
|
||||
onDoubleClicked: {
|
||||
kddwSeparator.onMouseDoubleClicked();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user