[Qt-qml] Transition enabled property (suggestion)

2010-10-13 Thread Adriano Rezende
Hi, I have some use cases which I need to go from state "A" to "B" with and without transition depending on a condition. Using Transitions I don't see a straightforward way to do this without duplicating states. I think it would be nice to have an "enabled" property for Transition, like the one pr

Re: [Qt-qml] QML model handling

2010-10-13 Thread Charley Bay
michael spaketh: > One of the things we're researching now that 4.7 is out the > door is how we work with data sets in QML. Part of that is > researching "next generation" model classes for QML Outstanding. I *love* your list. In particular, I vote for: (1) Allowing easy creation of custom mode

[Qt-qml] QValueList inside model ?

2010-10-13 Thread Helio Chissini de Castro
Hi. I have this example situation, a object model that contains at least onw QVariantList, like this class LocalModel : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name) Q_PROPERTY(QVariantList list READ list) ... public: QVariantList list() const { re