Codebase list ohcount / 85104d5a-b71d-4620-9315-33d4daf34104/main test / src_dir / example.qml
85104d5a-b71d-4620-9315-33d4daf34104/main

Tree @85104d5a-b71d-4620-9315-33d4daf34104/main (Download .tar.gz)

example.qml @85104d5a-b71d-4620-9315-33d4daf34104/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();
        }
    }
}