PDA

View Full Version : Pyside Qt debs


jeremiah
10-26-2009, 07:31 AM
Hello!

The Pymaemo team got in touch with me regarding the pyside Qt debs they have built and uploading them to the maemo.org repos. Apparently there is a bug in gcc 4.2 that prevents them from building in the maemo autobuilder so they wanted the debs uploaded by hand.

I have done that and they are now in extras-devel in fremantle free. I have test the debs by downloading them into the SDK, but did not get around to using the debs in real code. If anyone has been waiting for the pyside debs with Qt, they are here! It would be great to get any feedback on downloading and pass along any pyside code feedback to the Pymaemo team.

Cheers,

Jeremiah

konttori
10-29-2009, 04:57 PM
Any examples we could use to test the bindings on the device?

ah, found:
http://qt.gitorious.org/pyside/pyside-examples/trees/master/examples


At least a hello world would be nice.

Bah, here it is:
http://qt.gitorious.org/pyside/pyside-examples/blobs/master/examples/tutorial/t1.py


#!/usr/bin/env python
import sys
from PySide import QtGui
app = QtGui.QApplication(sys.argv)
hello = QtGui.QPushButton("Hello world!")
hello.resize(100, 30)
hello.show()
sys.exit(app.exec_())

Khertan
10-29-2009, 06:12 PM
I ve a real device, wanting to try .. but with python binding not optified i didnt have enought place to install it with qt libs.

attila77
10-29-2009, 06:33 PM
I'll hopefully be able to push PyQt in the Fremantle extras-devel tonight so we can make some apples to apples comparisons and track the improvement of PySide. No phonon/webkit/opengl stuff for now, but the rest is there.

konttori
10-30-2009, 03:58 AM
I'll hopefully be able to push PyQt in the Fremantle extras-devel tonight so we can make some apples to apples comparisons and track the improvement of PySide. No phonon/webkit/opengl stuff for now, but the rest is there.

Is it possible for you to also optify it?

Will qGraphicsView work opengl accelerated?