Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / expected_dir / example.qml
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

example.qml @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/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	}