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>
This commit is contained in:
Grace Karanja 2015-08-19 10:17:52 +03:00 committed by Dirk Hohndel
parent ab7db605e5
commit ee13c5c282
3 changed files with 56 additions and 0 deletions

27
qt-mobile/Log.qml Normal file
View file

@ -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
}
}
}