~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to share/qtcreator/templates/qml/qtquick1_1/main.qml

  • Committer: Timo Jyrinki
  • Date: 2013-12-02 09:16:15 UTC
  • mfrom: (1.1.29)
  • Revision ID: timo.jyrinki@canonical.com-20131202091615-xbj1os1f604ber1m
New upstream release candidate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 1.1
2
 
 
3
 
Rectangle {
4
 
    width: 360
5
 
    height: 360
6
 
    Text {
7
 
        anchors.centerIn: parent
8
 
        text: "Hello World"
9
 
    }
10
 
    MouseArea {
11
 
        anchors.fill: parent
12
 
        onClicked: {
13
 
            Qt.quit();
14
 
        }
15
 
    }
16
 
}
17