2015-08-19 07:17:52 +00:00
|
|
|
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
|
2015-08-20 09:08:59 +00:00
|
|
|
height: parent.height
|
2015-08-20 08:44:01 +00:00
|
|
|
objectName: "Log"
|
2015-08-19 07:17:52 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
width: parent.width
|
2015-08-20 09:08:59 +00:00
|
|
|
height: parent.height
|
2015-08-19 07:17:52 +00:00
|
|
|
spacing: 8
|
|
|
|
|
2015-08-20 09:08:59 +00:00
|
|
|
Rectangle {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
wrapMode: Text.WrapAnywhere
|
|
|
|
text: manager.logText
|
|
|
|
}
|
2015-08-19 07:17:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|