View Single Post
Venemo's Avatar
Posts: 1,296 | Thanked: 1,773 times | Joined on Aug 2009 @ Budapest, Hungary
#4
Originally Posted by fpp View Post
I'd really like to see a similar toolkit, but Qt-based (as this seems to be the way to the future), and with Python bindings...
As I said, all of the dialogs have a Qt wrapper. So if you're developing a Qt app, it should be this simple:

Code:
QColor myColor = QtHeWrapper::showHeSimpleColorDialog();
This requires a single method call. It should be fairly easy to call it from Python, too.

Originally Posted by fpp View Post
As a side note, I'm trying to determine how some people do these UIs with buttons at the top and a list, table or tree beneath, and the buttons scroll up off the screen when the list/table/tree is scrolled down ?
They put the entire content into a scrollable area. (HildonPannableArea or QScrollAre, whatever.)