Codebase list ohcount / d4c3f612-6685-4dc0-9339-5433a0a275c0/main test / src_dir / example.qml
d4c3f612-6685-4dc0-9339-5433a0a275c0/main

Tree @d4c3f612-6685-4dc0-9339-5433a0a275c0/main (Download .tar.gz)

example.qml @d4c3f612-6685-4dc0-9339-5433a0a275c0/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();
        }
    }
}