I would like to write a QML Extension using only Python. I know how to do this in C++, but not in Python. Is this even possible? Here's a vague idea of what I'm looking for.

class NewToQML(QObject):
    Q_PROPERTY(int root READ num WRITE setNum NOTIFY numChanged REVISION 1)

And in test.qml:

import MyQmlAdditions 1.0
NewToQML {
    num: 7;
}

[edit] I would like to use this QML addition to accomplish for instance changing the cursor when the mouse is over the graphical object (NewToQML).

link|improve this question
As I said below, you can't do this with PySide, but you can accomplish cursor changes by signaling python to change the cursor, or by exposing a context object which has a PySlot that changes the cursor using PyQt. – Patrick Jan 24 at 0:40
feedback

2 Answers

up vote 1 down vote accepted

I found the answer a while back on nabble answered by Phil Thompson-5 with a good explanation/reasoning following by Giovanni Bajo.

Short answer: PyQt does not support qmlRegisterType as of 4.7 and earlier versions.

However, PySide does have this functionality as shown here.

link|improve this answer
feedback

If you installed the examples and demos with PyQt, the Minehunt demo provides a QML example. If you don't have it installed, download the PyQt4 source and look in examples/demos/declarative/minehunt.

link|improve this answer
This works for exposing data objects to QML, but I'm not sure you can expose graphical objects to the QML in this way. Edited my question to make that part clear. – Patrick Oct 21 '11 at 3:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.