Codebase list ohcount / 85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main test / src_dir / example.qml
85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main

Tree @85ef4224-9298-4dc6-8a5a-b1f66d4179b3/main (Download .tar.gz)

example.qml @85ef4224-9298-4dc6-8a5a-b1f66d4179b3/mainraw · history · blame

// Just an example of QML file...

import QtQuick 2.0

Rectangle {
    width: 200
    height: 200
    color: "crimson"

    MouseArea {
        anchors.fill: parent
        onClicked: {
            // Was clicked
            Qt.quit();
        }
    }
}