From 290b125cf78fe3a66d010d23e1860b6e737c13c8 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Mon, 26 Jan 2026 12:28:37 +0400 Subject: [PATCH] Add to git --- plugin/StorageView.qml | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 plugin/StorageView.qml diff --git a/plugin/StorageView.qml b/plugin/StorageView.qml new file mode 100644 index 0000000..b18e94d --- /dev/null +++ b/plugin/StorageView.qml @@ -0,0 +1,43 @@ +import QtQuick +import QtQuick.Controls + +Item { + anchors.fill: parent + + Rectangle { + anchors.fill: parent + anchors.leftMargin: 0 + anchors.rightMargin: 0 + anchors.topMargin: 0 + anchors.bottomMargin: 0 + color: "#202428" + } + + Text { + text: qsTr("Storage UI") + anchors.verticalCenterOffset: 214 + anchors.horizontalCenterOffset: -269 + color: "white" + anchors.centerIn: parent + font.pointSize: 20 + + } + + Text { + objectName: "status" + text: "..." + color: "white" + font.pointSize: 20 + anchors.topMargin: 32 + + } + + Button { + objectName: "startButton" + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: parent.top + anchors.topMargin: 395 + anchors.horizontalCenterOffset: -270 + text: "Stop" + } +}