From ee13c5c2820a2549914ddd19d039ba1e3ebb1d08 Mon Sep 17 00:00:00 2001 From: Grace Karanja Date: Wed, 19 Aug 2015 10:17:52 +0300 Subject: QML UI: Add QML Log viewer Add the ability to preview the application log in QML. Signed-off-by: Grace Karanja --- qt-mobile/Log.qml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 qt-mobile/Log.qml (limited to 'qt-mobile/Log.qml') 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 + } + } +} -- cgit v1.2.3-70-g09d2