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