Skip to content

Language Bindings

You're using Qt with other languages than C++, eh? Post here!
852 Topics 3.3k Posts

QtWS: Early Bird Tickets Available!

  • PyQt + QML

    7
    0 Votes
    7 Posts
    10k Views
    M

    If you give it a try you won't go back :)

    For example, In PyQt you can connect to signals as simple as this:

    @def myCallback():
    """ This is a simple python function w/o knowing it is a slot """
    print "Button Clicked"
    button.clicked.connect(myCallback)
    @

    or you can do it even more sweeter:

    @@button.clicked.connect
    def myCallback():
    """ This is a simple python function w/o knowing it is a slot """
    print "Button Clicked"
    @

    I just love it!

  • Needed help building PySide

    2
    0 Votes
    2 Posts
    3k Views
    T

    Did you solve it in the meantime? If not you could ask on #pyside on freenode.org for help. AFAIK the devs working on it are hanging out there too.