forked from qt-creator/qt-creator
		
	* Update license information in tests directory Change-Id: I311441dd37d053ca3175e44b284258e232ee93e0 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
		
			
				
	
	
		
			208 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			208 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
| /****************************************************************************
 | |
| **
 | |
| ** Copyright (C) 2016 The Qt Company Ltd.
 | |
| ** Contact: https://www.qt.io/licensing/
 | |
| **
 | |
| ** This file is part of Qt Creator.
 | |
| **
 | |
| ** Commercial License Usage
 | |
| ** Licensees holding valid commercial Qt licenses may use this file in
 | |
| ** accordance with the commercial license agreement provided with the
 | |
| ** Software or, alternatively, in accordance with the terms contained in
 | |
| ** a written agreement between you and The Qt Company. For licensing terms
 | |
| ** and conditions see https://www.qt.io/terms-conditions. For further
 | |
| ** information use the contact form at https://www.qt.io/contact-us.
 | |
| **
 | |
| ** GNU General Public License Usage
 | |
| ** Alternatively, this file may be used under the terms of the GNU
 | |
| ** General Public License version 3 as published by the Free Software
 | |
| ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
 | |
| ** included in the packaging of this file. Please review the following
 | |
| ** information to ensure the GNU General Public License requirements will
 | |
| ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
 | |
| **
 | |
| ****************************************************************************/
 | |
| 
 | |
| import QtQuick 2.0
 | |
| import QtQuick.Controls 1.2
 | |
| import QtQuick.Layouts 1.0
 | |
| 
 | |
| Rectangle {
 | |
|     width: 768
 | |
|     height: 640
 | |
| 
 | |
|     RadioButton {
 | |
|         id: radioButton1
 | |
|         x: 56
 | |
|         y: 23
 | |
|         text: qsTr("Radio Button")
 | |
|     }
 | |
| 
 | |
|     Slider {
 | |
|         id: sliderVertical1
 | |
|         x: 19
 | |
|         y: 23
 | |
|         orientation: Qt.Vertical
 | |
|     }
 | |
| 
 | |
|     ComboBox {
 | |
|         id: comboBox1
 | |
|         x: 56
 | |
|         y: 51
 | |
|     }
 | |
| 
 | |
|     TextArea {
 | |
|         id: textArea1
 | |
|         x: 56
 | |
|         y: 77
 | |
|     }
 | |
| 
 | |
|     Button {
 | |
|         id: button1
 | |
|         x: 221
 | |
|         y: 50
 | |
|         text: qsTr("Button")
 | |
|     }
 | |
| 
 | |
|     Slider {
 | |
|         id: sliderHorizontal1
 | |
|         x: 353
 | |
|         y: 122
 | |
|         width: 230
 | |
|         height: 22
 | |
|     }
 | |
| 
 | |
|     CheckBox {
 | |
|         id: checkBox1
 | |
|         x: 353
 | |
|         y: 90
 | |
|         text: qsTr("Check Box")
 | |
|     }
 | |
| 
 | |
|     CheckBox {
 | |
|         id: checkBox2
 | |
|         x: 435
 | |
|         y: 90
 | |
|         text: qsTr("Check Box")
 | |
|     }
 | |
| 
 | |
|     CheckBox {
 | |
|         id: checkBox3
 | |
|         x: 516
 | |
|         y: 90
 | |
|         text: qsTr("Check Box")
 | |
|     }
 | |
| 
 | |
|     ComboBox {
 | |
|         id: comboBox2
 | |
|         x: 435
 | |
|         y: 56
 | |
|         width: 148
 | |
|         height: 20
 | |
|     }
 | |
| 
 | |
|     Label {
 | |
|         id: label1
 | |
|         x: 358
 | |
|         y: 60
 | |
|         text: qsTr("Label")
 | |
|     }
 | |
| 
 | |
|     TextField {
 | |
|         id: textField1
 | |
|         x: 435
 | |
|         y: 24
 | |
|         width: 148
 | |
|         height: 20
 | |
|         placeholderText: qsTr("Text Field")
 | |
|     }
 | |
| 
 | |
|     Label {
 | |
|         id: label2
 | |
|         x: 358
 | |
|         y: 28
 | |
|         text: qsTr("Label")
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle1
 | |
|         x: 19
 | |
|         y: 313
 | |
|         width: 200
 | |
|         height: 87
 | |
|         color: "#f05454"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle2
 | |
|         x: 225
 | |
|         y: 313
 | |
|         width: 290
 | |
|         height: 87
 | |
|         color: "#dbdbdb"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle3
 | |
|         x: 19
 | |
|         y: 412
 | |
|         width: 94
 | |
|         height: 87
 | |
|         color: "#afc8e7"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle4
 | |
|         x: 125
 | |
|         y: 406
 | |
|         width: 94
 | |
|         height: 87
 | |
|         color: "#e5bc2c"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle5
 | |
|         x: 225
 | |
|         y: 412
 | |
|         width: 94
 | |
|         height: 87
 | |
|         color: "#000000"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle6
 | |
|         x: 330
 | |
|         y: 421
 | |
|         width: 94
 | |
|         height: 87
 | |
|         color: "#b31198"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle7
 | |
|         x: 430
 | |
|         y: 412
 | |
|         width: 94
 | |
|         height: 181
 | |
|         color: "#344ed5"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle8
 | |
|         x: 19
 | |
|         y: 506
 | |
|         width: 290
 | |
|         height: 87
 | |
|         color: "#bedd55"
 | |
|     }
 | |
| 
 | |
|     Rectangle {
 | |
|         id: rectangle9
 | |
|         x: 323
 | |
|         y: 514
 | |
|         width: 94
 | |
|         height: 87
 | |
|         color: "#8d8d8d"
 | |
|     }
 | |
| }
 |