25 lines
697 B
QML
25 lines
697 B
QML
/*
|
|
This file is part of KDDockWidgets.
|
|
|
|
SPDX-FileCopyrightText: 2020-2022 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
|
Author: Sergio 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.9
|
|
import com.kdab.dockwidgets 1.0
|
|
|
|
Image {
|
|
id: root
|
|
|
|
property int indicatorType: KDDockWidgets.DropLocation_None
|
|
readonly property bool isHovered: _window.classicIndicators.currentDropLocation === indicatorType
|
|
|
|
source: "qrc:/img/classic_indicators/" + _window.iconName(indicatorType, isHovered) + ".png";
|
|
width: 64
|
|
height: 64
|
|
}
|