mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	The title was hidden under the title bar, anyway. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			891 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			891 B
		
	
	
	
		
			QML
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| import QtQuick 2.3
 | |
| import QtQuick.Window 2.2
 | |
| import QtQuick.Dialogs 1.2
 | |
| import QtQuick.Layouts 1.1
 | |
| import QtQuick.Window 2.2
 | |
| import QtQuick.Controls 2.1
 | |
| import org.subsurfacedivelog.mobile 1.0
 | |
| import org.kde.kirigami 2.0 as Kirigami
 | |
| 
 | |
| Kirigami.ScrollablePage {
 | |
| 	id: logWindow
 | |
| 	width: parent.width - Kirigami.Units.gridUnit
 | |
| 	anchors.margins: Kirigami.Units.gridUnit / 2
 | |
| 	objectName: "Log"
 | |
| 	title: qsTr("Application Log")
 | |
| 
 | |
| 	ListView {
 | |
| 		anchors.fill: parent
 | |
| 		anchors.topMargin: Kirigami.Units.gridUnit * 2
 | |
| 		model: logModel
 | |
| 		currentIndex: -1
 | |
| 		boundsBehavior: Flickable.StopAtBounds
 | |
| 		maximumFlickVelocity: parent.height * 5
 | |
| 		cacheBuffer: Math.max(5000, parent.height * 5)
 | |
| 		focus: true
 | |
| 		clip: true
 | |
| 		delegate : Text {
 | |
| 			width: logWindow.width
 | |
| 			wrapMode: Text.WrapAtWordBoundaryOrAnywhere
 | |
| 			color: Kirigami.Theme.textColor
 | |
| 			text : message
 | |
| 		}
 | |
| 	}
 | |
| }
 |