![]() |
2009-11-19
, 17:12
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#22
|
And prefer PySide over PyQT binding ... the first one haven't any official maintainer for Maemo.
EDIT : Here is the link on the official web site on how to install it on maemo, but also on other linux system : http://www.pyside.org/downloads/
![]() |
2009-11-19
, 17:16
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#23
|
I just checked and yes, I do have python2.5-qt4-core and python2.5-qt4-gui installed on both the X86 and ARMEL targets. Still, when I launch the virtual N900 and enter the Python interpreter I cant import qt.
ImportError: No module named qt4
from PyQt4 import QtCore,QtGui
![]() |
2009-11-19
, 17:27
|
|
Posts: 963 |
Thanked: 626 times |
Joined on Sep 2009
@ Connecticut, USA
|
#24
|
![]() |
2009-11-19
, 17:33
|
|
Posts: 963 |
Thanked: 626 times |
Joined on Sep 2009
@ Connecticut, USA
|
#25
|
Hang on, the python namespace of the modules is PyQt4 , not qt4. Your import statement should be something like
Code:from PyQt4 import QtCore,QtGui
![]() |
2009-11-19
, 18:10
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#26
|
![]() |
2009-11-19
, 18:36
|
|
Posts: 963 |
Thanked: 626 times |
Joined on Sep 2009
@ Connecticut, USA
|
#27
|
A few quick links until you get a proper book:
http://www.commandprompt.com/community/pyqt/ (disregard the blackadder stuff)
![]() |
2009-11-19
, 20:43
|
|
Posts: 963 |
Thanked: 626 times |
Joined on Sep 2009
@ Connecticut, USA
|
#28
|
![]() |
2009-11-19
, 21:16
|
|
Posts: 600 |
Thanked: 742 times |
Joined on Sep 2008
@ England
|
#29
|
The Following User Says Thank You to eiffel For This Useful Post: | ||
![]() |
2009-11-19
, 21:25
|
|
Posts: 963 |
Thanked: 626 times |
Joined on Sep 2009
@ Connecticut, USA
|
#30
|
import sys from PyQt4 import QtCore, QtGui class HelloButton(QtGui.QPushButton): def __init__(self, *args): apply(QtGui.QPushButton.__init__, (self,) + args) self.setText("Hello World") class HelloWindow(QtGui.QMainWindow): def __init__(self, *args): apply(QtGui.QMainWindow.__init__, (self,) + args) self.button=HelloButton(self) self.setCentralWidget(self.button) self.connect(self.button, QtCore.SIGNAL("clicked()"), self, QtCore.SLOT("close()")) def main(args): app=QtGui.QApplication(args) winlist=[] for i in range(1): win=HelloWindow() win.show() winlist.append(win) app.connect(app, QtCore.SIGNAL("lastWindowClosed()"), app, QtCore.SLOT("quit()")) app.exec_() if __name__=="__main__": main(sys.argv)
The Following 4 Users Say Thank You to rm42 For This Useful Post: | ||
-- Worse than not knowing is not wanting to know! --
http://temporaryland.wordpress.com/