aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/Log.qml
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-08-19 10:17:52 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-08-31 15:49:09 -0700
commitee13c5c2820a2549914ddd19d039ba1e3ebb1d08 (patch)
tree42fa34cbed2a9ef79b52e9a57b533df68615a4b2 /qt-mobile/Log.qml
parentab7db605e5d0596a40aa0c441aa9295aaea0ca79 (diff)
downloadsubsurface-ee13c5c2820a2549914ddd19d039ba1e3ebb1d08.tar.gz
QML UI: Add QML Log viewer
Add the ability to preview the application log in QML. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Diffstat (limited to 'qt-mobile/Log.qml')
-rw-r--r--qt-mobile/Log.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/qt-mobile/Log.qml b/qt-mobile/Log.qml
new file mode 100644
index 000000000..f51b4ac94
--- /dev/null
+++ b/qt-mobile/Log.qml
@@ -0,0 +1,27 @@
+import QtQuick 2.3
+import QtQuick.Controls 1.2
+import QtQuick.Controls.Styles 1.2
+import QtQuick.Window 2.2
+import QtQuick.Dialogs 1.2
+import QtQuick.Layouts 1.1
+import QtQuick.Window 2.2
+import org.subsurfacedivelog.mobile 1.0
+
+Item {
+ id: logWindow
+ width: parent.width
+
+ ColumnLayout {
+ width: parent.width
+ spacing: 8
+
+ TopBar {
+ height: childrenRect.height
+ }
+
+ TextEdit {
+ anchors.fill: height
+ text: manager.logText
+ }
+ }
+}