From 8def0834ce87fc9a5a9279183a485e2fb9f77dda Mon Sep 17 00:00:00 2001
From: "littletux89@gmail.com" <littletux89@gmail.com>
Date: Mon, 16 Dec 2019 12:11:45 +0300
Subject: [PATCH] [+] Added widgets for the screen, top and right panels.

---
 DapPanelForm.ui.qml      | 6 ++++++
 DapRightPanel.qml        | 4 ++++
 DapRightPanelForm.ui.qml | 6 ++++++
 DapScreen.qml            | 4 ++++
 DapScreenForm.ui.qml     | 6 ++++++
 DapTopPanel.qml          | 4 ++++
 DapTopPanelForm.ui.qml   | 6 ++++++
 libdap-qt-ui-qml.qrc     | 6 ++++++
 8 files changed, 42 insertions(+)
 create mode 100644 DapPanelForm.ui.qml
 create mode 100644 DapRightPanel.qml
 create mode 100644 DapRightPanelForm.ui.qml
 create mode 100644 DapScreen.qml
 create mode 100644 DapScreenForm.ui.qml
 create mode 100644 DapTopPanel.qml
 create mode 100644 DapTopPanelForm.ui.qml

diff --git a/DapPanelForm.ui.qml b/DapPanelForm.ui.qml
new file mode 100644
index 0000000..96a8ae4
--- /dev/null
+++ b/DapPanelForm.ui.qml
@@ -0,0 +1,6 @@
+import QtQuick 2.4
+
+Item {
+    width: 400
+    height: 400
+}
diff --git a/DapRightPanel.qml b/DapRightPanel.qml
new file mode 100644
index 0000000..d636b5b
--- /dev/null
+++ b/DapRightPanel.qml
@@ -0,0 +1,4 @@
+import QtQuick 2.4
+
+DapRightPanelForm {
+}
diff --git a/DapRightPanelForm.ui.qml b/DapRightPanelForm.ui.qml
new file mode 100644
index 0000000..96a8ae4
--- /dev/null
+++ b/DapRightPanelForm.ui.qml
@@ -0,0 +1,6 @@
+import QtQuick 2.4
+
+Item {
+    width: 400
+    height: 400
+}
diff --git a/DapScreen.qml b/DapScreen.qml
new file mode 100644
index 0000000..39a7580
--- /dev/null
+++ b/DapScreen.qml
@@ -0,0 +1,4 @@
+import QtQuick 2.4
+
+DapScreenForm {
+}
diff --git a/DapScreenForm.ui.qml b/DapScreenForm.ui.qml
new file mode 100644
index 0000000..96a8ae4
--- /dev/null
+++ b/DapScreenForm.ui.qml
@@ -0,0 +1,6 @@
+import QtQuick 2.4
+
+Item {
+    width: 400
+    height: 400
+}
diff --git a/DapTopPanel.qml b/DapTopPanel.qml
new file mode 100644
index 0000000..c53063a
--- /dev/null
+++ b/DapTopPanel.qml
@@ -0,0 +1,4 @@
+import QtQuick 2.4
+
+DapTopPanelForm {
+}
diff --git a/DapTopPanelForm.ui.qml b/DapTopPanelForm.ui.qml
new file mode 100644
index 0000000..96a8ae4
--- /dev/null
+++ b/DapTopPanelForm.ui.qml
@@ -0,0 +1,6 @@
+import QtQuick 2.4
+
+Item {
+    width: 400
+    height: 400
+}
diff --git a/libdap-qt-ui-qml.qrc b/libdap-qt-ui-qml.qrc
index 65d3071..a084e1d 100644
--- a/libdap-qt-ui-qml.qrc
+++ b/libdap-qt-ui-qml.qrc
@@ -1,5 +1,11 @@
 <RCC>
     <qresource prefix="/">
         <file>DapComboBox.qml</file>
+        <file>DapScreen.qml</file>
+        <file>DapScreenForm.ui.qml</file>
+        <file>DapTopPanel.qml</file>
+        <file>DapTopPanelForm.ui.qml</file>
+        <file>DapRightPanel.qml</file>
+        <file>DapRightPanelForm.ui.qml</file>
     </qresource>
 </RCC>
-- 
GitLab