Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / src_dir / example.qml
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

example.qml @a828f03c-a62e-49d7-b2ec-6e6df59903d2/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();
        }
    }
}