Where to get QtQuick 1.1?
-
The current Qt SDK release includes Qt 4.7.3 which includes Qt Quick 1.0, the Qt Quick 1.1 version is expected with Qt 4.7.4
-
I read that Qt Quick 1.1 is able to do this
@
var component = Qt.createComponent("Button.qml");
if (component.status == Component.Ready)
component.createObject(parent, {"x": 100, "y": 100});
@Can it also assign the id of the object? Example
@
component.createObject(parent, {"id": "hello"});
@ -
The SDK states this
bq. As of QtQuick 1.1, this method accepts an optional properties argument that specifies a map of initial property values for the created object. These values are applied before object creation is finalized. (This is more efficient than setting property values after object creation, particularly where large sets of property values are defined, and also allows property bindings to be set up before the object is created.)
So it seems it should be supported. Never tried.
-
[quote author="franziss" date="1308636206"]Ok, thank you, QtK and mbrasser for your replies. When will Qt 4.7.3 be released? I can't find its release date...[/quote]
Qt 4.7.3 is released. If you meant Qt 4.7.4 there is no official release date announced yet.
-
I think this is the 4.8 package, http://qt.gitorious.org/qt/qt/trees/4.8
I will try this http://doc.qt.nokia.com/4.7/install-win.html
This is the right away, thanks.
-
I would simply get all you need from "here":http://qt.nokia.com/downloads .
-
ya, but http://qt.nokia.com/downloads doesn't contain Qt 4.8
-
Building the branch 4.7 from git (what will become 4.7.4) or the tech preview of Qt 4.8 are the ways to have QtQuick 1.1 at the moment.