You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
689 B
QML
33 lines
689 B
QML
/*
|
|
SPDX-FileCopyrightText: 2021 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.7
|
|
|
|
Item {
|
|
id: level
|
|
signal mousePressed(int x, int y, int button);
|
|
signal mouseReleased(int x, int y, int button);
|
|
|
|
property bool isBackground: true
|
|
property bool isForeground: false
|
|
|
|
property bool isDrawn: false
|
|
|
|
readonly property Item requested: Item{
|
|
property int iconOffsetX: 0
|
|
property int iconOffsetY: 0
|
|
}
|
|
|
|
property Item indicator: null
|
|
|
|
onIsBackgroundChanged: {
|
|
isForeground = !isBackground;
|
|
}
|
|
|
|
onIsForegroundChanged: {
|
|
isBackground = !isForeground;
|
|
}
|
|
}
|