From 4b62265c856190382b6e94c875ad078ff1044d07 Mon Sep 17 00:00:00 2001 From: Jolibois Simon <simon.jolibois@ecl19.ec-lyon.fr> Date: Thu, 8 Apr 2021 18:09:01 +0000 Subject: [PATCH] Delete Case.qml --- Case.qml | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 Case.qml diff --git a/Case.qml b/Case.qml deleted file mode 100644 index 38aa862..0000000 --- a/Case.qml +++ /dev/null @@ -1,49 +0,0 @@ -import QtQuick 2.0 - -Item { - id: maCase - width: 50 - height: 50 - property alias backgroundCaseBordercolor: backgroundCase.border.color - property alias backgroundCaseColor: backgroundCase.color - property alias chiffreColor: chiffre.color - property alias chiffreText: chiffre.text - - Rectangle { - id: backgroundCase - color: "#ffffff" - radius: 0 - border.width: 2 - anchors.fill: parent - focus: true - - MouseArea { - id: mouseArea - anchors.fill: parent - hoverEnabled: true - onEntered: { - parent.color = "#998c8c" - } - onExited: { - parent.color = "#ffffff" - } - onClicked: { - console.log(maCase.x, maCase.y) - - } - } - - Text { - id: chiffre - text: qsTr("9") - anchors.fill: parent - font.pixelSize: 25 - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.bold: true - font.family: "Verdana" - } - - } - -} -- GitLab