aboutsummaryrefslogtreecommitdiff
path: root/src/ListItem.qml
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-06-29 15:21:09 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-06-29 15:21:09 +0200
commit76212577cb3fd60d41aab175270ede0b2dcdb038 (patch)
tree61265cac9d6a3f5cb25849337dced30942be645b /src/ListItem.qml
parent8f4d0f9d34b3676e6f64fd7b4effab582aabc006 (diff)
downloadRWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.tar.gz
RWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.tar.bz2
RWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.zip
Add feature: Multiple Scenes; Relocate files
Diffstat (limited to 'src/ListItem.qml')
-rw-r--r--src/ListItem.qml20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ListItem.qml b/src/ListItem.qml
new file mode 100644
index 0000000..c69af4b
--- /dev/null
+++ b/src/ListItem.qml
@@ -0,0 +1,20 @@
+import QtQuick 2.0
+import QtQuick.Controls.Material 2.3
+import QtQuick.Controls 2.2
+
+ItemDelegate {
+ id: root
+ width: parent.width
+ height: 50
+
+ property string scene_url
+
+ signal listItemClick()
+
+ text: ""
+
+ MouseArea {
+ anchors.fill: parent
+ onClicked: listItemClick();
+ }
+}