mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	I did this semi-automatically: I used the script from the previous patch and then did some manual corrections. This marks only title: and text: tags, there might be others Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
| 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
 | |
| import org.kde.kirigami 1.0 as Kirigami
 | |
| 
 | |
| Kirigami.ScrollablePage {
 | |
| 	id: logWindow
 | |
| 	anchors.margins: Kirigami.Units.gridUnit / 2
 | |
| 	objectName: "Log"
 | |
| 	title: qsTr("Application Log")
 | |
| 
 | |
| 	property int pageWidth: subsurfaceTheme.columnWidth - Kirigami.Units.smallSpacing
 | |
| 
 | |
| 	ColumnLayout {
 | |
| 		width: logWindow.width - logWindow.leftPadding - logWindow.rightPadding - 2 * Kirigami.Units.smallSpacing
 | |
| 		spacing: Kirigami.Units.smallSpacing
 | |
| 		Kirigami.Heading {
 | |
| 			text: qsTr("Application Log")
 | |
| 		}
 | |
| 		Kirigami.Label {
 | |
| 			id: logContent
 | |
| 			width: parent.width
 | |
| 			Layout.preferredWidth: parent.width
 | |
| 			Layout.maximumWidth: parent.width
 | |
| 			wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
 | |
| 			text: manager.logText
 | |
| 		}
 | |
| 		Rectangle {
 | |
| 			color: "transparent"
 | |
| 			height: Kirigami.Units.gridUnit * 2
 | |
| 			width: pageWidth
 | |
| 		}
 | |
| 	}
 | |
| }
 |