Skip to content

Language Bindings

You're using Qt with other languages than C++, eh? Post here!
860 Topics 3.4k Posts
  • Linked text in an application?

    3
    0 Votes
    3 Posts
    4k Views
    B

    Thank you very much :D

  • PySide: Issue using ItemDelegate

    4
    0 Votes
    4 Posts
    5k Views
    N

    Yeah, it's a fixed bug, I did not have the latest PySide. In my defense, it was only released two days after I started.

  • PySide Image Formats

    4
    0 Votes
    4 Posts
    5k Views
    M

    tbcpp, Roman Lacko (the guy who volunteered to do the Windows packaging) told he's aware of the issue and the next installer contains the plugins (including a currently missing sqllite plugin).

  • 0 Votes
    5 Posts
    4k Views
    S

    Ah, thanks. I already filed the bug, should I close it?

    Edit: Never mind, I see that someone else closed it for me. Thanks.

  • 0 Votes
    7 Posts
    14k Views
    H

    It remains compatible with PyQt, but with PyQt API2, not API1.

    If you use PyQt with API2 you will get the same behaviour because there's no QString and python string and unicode objects are immutable.

  • Jambi and groovy

    2
    0 Votes
    2 Posts
    3k Views
    S

    No-one has tried this, myself I have been using Icedtea for long.

    You can go and test it yourself, too. We’ll fix the bugs in order to get it to work, no problems with it :)

  • 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.