Codebase list ohcount / 6ef9399e-69b6-464b-98a8-52915e284046/main test / expected_dir / example.qml
6ef9399e-69b6-464b-98a8-52915e284046/main

Tree @6ef9399e-69b6-464b-98a8-52915e284046/main (Download .tar.gz)

example.qml @6ef9399e-69b6-464b-98a8-52915e284046/mainraw · history · blame

qml	comment	// Just an example of QML file...
qml	blank	
qml	code	import QtQuick 2.0
qml	blank	
qml	code	Rectangle {
qml	code	    width: 200
qml	code	    height: 200
qml	code	    color: "crimson"
qml	blank	
qml	code	    MouseArea {
qml	code	        anchors.fill: parent
qml	code	        onClicked: {
qml	comment	            // Was clicked
qml	code	            Qt.quit();
qml	code	        }
qml	code	    }
qml	code	}