diff --git a/share/qtcreator/templates/qmlapp/qml/app/main.qml b/share/qtcreator/templates/qmlapp/qml/app/main.qml index 42136251dc1a4b525cf14daa24e14d4236685ad1..4ef3a885a1e1384a9fdbc856d241b6503e62a3cd 100644 --- a/share/qtcreator/templates/qmlapp/qml/app/main.qml +++ b/share/qtcreator/templates/qmlapp/qml/app/main.qml @@ -1,10 +1,16 @@ import Qt 4.7 Rectangle { - width: 200 - height: 323 + width: 360 + height: 360 Text { text: "Hello World" anchors.centerIn: parent } + MouseArea { + anchors.fill: parent + onClicked: { + Qt.quit(); + } + } } diff --git a/src/plugins/qmljseditor/qmlfilewizard.cpp b/src/plugins/qmljseditor/qmlfilewizard.cpp index 3687f5ef3b3a2a756ec4424babfbecb3ba730596..31918e7ec43e03f98ac8cdb346b555b032d6aabc 100644 --- a/src/plugins/qmljseditor/qmlfilewizard.cpp +++ b/src/plugins/qmljseditor/qmlfilewizard.cpp @@ -62,11 +62,12 @@ QString QmlFileWizard::fileContents(const QString &fileName) const QTextStream str(&contents); // str << CppTools::AbstractEditorSupport::licenseTemplate(); + // 100:62 is the 'golden ratio' str << QLatin1String("import Qt 4.7\n") << QLatin1String("\n") << QLatin1String("Rectangle {\n") - << QLatin1String(" width: 640\n") - << QLatin1String(" height: 480\n") + << QLatin1String(" width: 100\n") + << QLatin1String(" height: 62\n") << QLatin1String("}\n"); return contents; diff --git a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp index c58241c2c899f0ada9058942b4be730e8fc12ebb..f59d6c202bf1cd8250935a41d60c05ee97f41396 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp @@ -117,13 +117,18 @@ Core::GeneratedFiles QmlProjectApplicationWizard::generateFiles(const QWizard *w << "import Qt 4.7" << endl << endl << "Rectangle {" << endl - << " width: 200" << endl - << " height: 200" << endl + << " width: 360" << endl + << " height: 360" << endl << " Text {" << endl - << " x: 66" << endl - << " y: 93" << endl + << " anchors.centerIn: parent" << endl << " text: \"Hello World\"" << endl << " }" << endl + << " MouseArea {" << endl + << " anchors.fill: parent" << endl + << " onClicked: {" << endl + << " Qt.quit();" << endl + << " }" << endl + << " }" << endl << "}" << endl; } Core::GeneratedFile generatedMainFile(mainFileName);