Skip to content

Language Bindings

You're using Qt with other languages than C++, eh? Post here!
854 Topics 3.3k Posts
  • PyQt, DBus, and Custom C++ types.

    2
    0 Votes
    2 Posts
    4k Views
    E

    Would you like to post xml annotations and c++ code that implement custom type

    Is PyQT ... only solution? Do U look at dbus-python? Read this http://stackoverflow.com/questions/1883830/receive-data-from-dbus

  • Language bindings in the wiki

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • 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.