aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/toppanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/toppanel.qml')
-rw-r--r--homescreen/qml/toppanel.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/homescreen/qml/toppanel.qml b/homescreen/qml/toppanel.qml
new file mode 100644
index 0000000..957b957
--- /dev/null
+++ b/homescreen/qml/toppanel.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.13
+import QtQuick.Window 2.13
+import QtQuick.Controls 2.13
+
+Window {
+ id: toppanel
+ width: Screen.width
+ height: Screen.height * (240.0 / 1920.0)
+ flags: Qt.FramelessWindowHint
+ visible: true
+ //color: "#aaaa0000"
+
+ TopArea {
+ }
+}