[PyQt] Fwd: Use QTextEdit() clear slot

2008-01-30 Thread Simon Stockes

Hi,

After sinuous ways I found a solution that work. It's not still   
clear in my mind but it works.


I had to add 'self.cleanButton.setAutoDefault(False)' because adding  
a 'self.cleanButton.setDefault(False)' does not work.


As the Qt assistant said, it depends of the GUI style  A beat  
tedious, no ?



Although i receive no answer to my question, some questions came to me:

Was my question too evident ?

Too few people are reading this mailing-list ?

Were my sentences not very well express ?

No luck ?


Cheers, Simon.



Début du message réexpédié :


De : Simon Stockes [EMAIL PROTECTED]
Date : 21 janvier 2008 21:13:50 HNEC
À : PyQt@riverbankcomputing.com
Objet : Use QTextEdit() clear slot

Hi All,

It seems that  cleanButton connect stop to a new expression  
evaluation in the following code ?


1/ If you comment this connection the program works again !!

2/ If you reset with the cleanButton something you wrote in the  
QTextEdit, it cleans it !!




Any track ?


Simon



CODE
=


from __future__ import division

import sys
from math import *
from PyQt4.QtCore import *
from PyQt4.QtGui import *


class Ui_MainWindow(QDialog):

def __init__(self, parent=None):
super(Ui_MainWindow, self).__init__(parent)
self.browser = QTextEdit()
self.lineedit = QLineEdit(Enter an expression anf press  
Enter)

self.lineedit.selectAll()
self.cleanButton = QPushButton(Reset)
layout = QVBoxLayout()
layout.addWidget(self.browser)
layout.addWidget(self.lineedit)
layout.addWidget(self.cleanButton)
self.setLayout(layout)
self.lineedit.setFocus()
self.setWindowTitle(Calculator)

#???

self.connect(self.cleanButton, SIGNAL(clicked()),  
self.clearForm)


 #??

def clearForm(self):
self.browser.clear()


class App(object):
 Run Calculator's GUI, main controller class (MAIN  
CONTROLER)


def __init__(self):
 Creation of Calculator's GUI and connexion with user  
events 


# Creation of the Calculator's GUI:
self.mainwindow = Ui_MainWindow()

self.mainwindow.connect(self.mainwindow.lineedit, SIGNAL 
(returnPressed()),  self.updateUi)


def updateUi(self):
try:
text = unicode(self.mainwindow.lineedit.text())
self.mainwindow.browser.append(%s = b%sbbr % 
(text, eval(text)) )

self.mainwindow.lineedit.selectAll()
except:
self.mainwindow.browser.append(('font color=red%s  
is wrongfontbr' %text))

self.mainwindow.lineedit.selectAll()


if __name__ == __main__:
app = QApplication(sys.argv)

# init GUI
calc = App()

# display of GUI
calc.mainwindow.show()

app.exec_()








___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyQt] Use QTextEdit() clear slot

2008-01-21 Thread Simon Stockes

Hi All,

It seems that  cleanButton connect stop to a new expression  
evaluation in the following code ?


1/ If you comment this connection the program works again !!

2/ If you reset with the cleanButton something you wrote in the  
QTextEdit, it cleans it !!




Any track ?


Simon



CODE
=


from __future__ import division

import sys
from math import *
from PyQt4.QtCore import *
from PyQt4.QtGui import *


class Ui_MainWindow(QDialog):

def __init__(self, parent=None):
super(Ui_MainWindow, self).__init__(parent)
self.browser = QTextEdit()
self.lineedit = QLineEdit(Enter an expression anf press  
Enter)

self.lineedit.selectAll()
self.cleanButton = QPushButton(Reset)
layout = QVBoxLayout()
layout.addWidget(self.browser)
layout.addWidget(self.lineedit)
layout.addWidget(self.cleanButton)
self.setLayout(layout)
self.lineedit.setFocus()
self.setWindowTitle(Calculator)

#???

self.connect(self.cleanButton, SIGNAL(clicked()),  
self.clearForm)


 #??

def clearForm(self):
self.browser.clear()


class App(object):
 Run Calculator's GUI, main controller class (MAIN CONTROLER)

def __init__(self):
 Creation of Calculator's GUI and connexion with user  
events 


# Creation of the Calculator's GUI:
self.mainwindow = Ui_MainWindow()

self.mainwindow.connect(self.mainwindow.lineedit, SIGNAL 
(returnPressed()),  self.updateUi)


def updateUi(self):
try:
text = unicode(self.mainwindow.lineedit.text())
self.mainwindow.browser.append(%s = b%sbbr % 
(text, eval(text)) )

self.mainwindow.lineedit.selectAll()
except:
self.mainwindow.browser.append(('font color=red%s is  
wrongfontbr' %text))

self.mainwindow.lineedit.selectAll()


if __name__ == __main__:
app = QApplication(sys.argv)

# init GUI
calc = App()

# display of GUI
calc.mainwindow.show()

app.exec_()





___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyKDE] Is there a clicked signal for a QLabel ?

2007-01-31 Thread simon stockes

Hi,

I have a gridlayout of QLabels. What it the signal to use in this context to
change, for exemple, the text from the QLabel I have **clicked** ?

I did not found **clicked()** signal for QGridlayout or QLabel.

Simon.
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


Re: [PyKDE] Is there a clicked signal for a QLabel ?

2007-01-31 Thread simon stockes

Thanks everybody for yours answers.

It is clearer and I am in fact agree with you and trolltech.

I suppose that to draw a button is not much more cpu time consuming against
a label ?

Simon

2007/1/31, Giovanni Bajo [EMAIL PROTECTED]:


On 1/31/2007 11:06 AM, Simon stokes wrote:

 I have a gridlayout of QLabels. What it the signal to use in this
 context to change, for example, the text from the QLabel I have
 **clicked** ?

*All* widgets receive *events* from mouse clicks, which can be handled
by subclassing and overriding the event function, or by installing an
event handler.

Some widgets, by default, handle events by emitting corresponding
signals. This is done for widgets where the specific events need *often*
to be handled (eg: a click for a button), so that the user can customize
the behaviour by connecting a slot.

In you case, Trolltech decided that QLabel usually don't need click to
be handled, so they didn't provide a standard event handler which emits
a standard signal for it. But you can do it yourself, in your own
QClickableLabel, though.
--
Giovanni Bajo

___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] Draw Label in a grid

2007-01-24 Thread simon stockes

The code below is supposed to draw

import sys
from PyQt4 import QtGui, QtCore

class MainWindow(QtGui.QMainWindow):

   def __init__(self, *args):
   QtGui.QMainWindow.__init__(self)
   self.setWindowTitle(DE)
   self.gridlayout = QtGui.QGridLayout()
   self.gridlayout.setMargin(9)
   self.gridlayout.setSpacing(6)
   self.gridlayout.setObjectName(gridlayout)
   self.gridlayout.addWidget(QtGui.QLabel(foo,self),0,1)
   self.gridlayout.addWidget(QtGui.QLabel(fAn,self),0,2)

def main(args):
   app=QtGui.QApplication(args)
   win=MainWindow()
   win.show()
   app.connect(app, QtCore.SIGNAL(lastWindowClosed())
, app
, QtCore.SLOT(quit())
)
   sys.exit(app.exec_())

if __name__==__main__:
   main(sys.argv)
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] Draw Label in a grid (2)

2007-01-24 Thread simon stockes

Sorry for the first message. I did not finish my mail.

So, The code below is supposed to draw 2 labels in a grid.
For me the 2 labels are painted at the same place when I run the code !!
Why this superposition ?

Simon

import sys
from PyQt4 import QtGui, QtCore

class MainWindow(QtGui.QMainWindow):

   def __init__(self, *args):
   QtGui.QMainWindow.__init__(self)
   self.setWindowTitle(DE)
   self.gridlayout = QtGui.QGridLayout()
   self.gridlayout.setMargin(9)
   self.gridlayout.setSpacing(6)
   self.gridlayout.setObjectName(gridlayout)
   self.gridlayout.addWidget(QtGui.QLabel(foo,self),0,1)
   self.gridlayout.addWidget(QtGui.QLabel(fAn,self),0,2)

def main(args):
   app=QtGui.QApplication(args)
   win=MainWindow()
   win.show()
   app.connect(app, QtCore.SIGNAL(lastWindowClosed())
, app
, QtCore.SLOT(quit())
)
   sys.exit(app.exec_())

if __name__==__main__:
   main(sys.argv)
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] PyQt book

2006-11-14 Thread simon stockes
Hi, Since few days it is not possible to reach http://www.opendocs.org/pyqt/.Any information ?, Is PyQt4 book on the way ?Simon
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


Re: [PyKDE] problem with pyqtref manual code

2006-11-13 Thread simon stockes
Hi and thank a lot for your help,You'r right.I forgot these linesapp = QtGui.QApplication(sys.argv)window = ImageDialog()window.show()sys.exit(app.exec_())But there is another problem. The code produced by designer 
Qt-4.2.1 is not compatible with Qt-4.1.4 !! QDialogButtonBox is new in Qt-4.2 !!Also, be carefull to comment also in ui_imagedialog.py this line#self.ui.colorDepthCombo.addItem(2 colors (1 bit per pixel))
Bye, Simon.2006/11/11, Phil Thompson [EMAIL PROTECTED]:
On Friday 10 November 2006 3:43 pm, simon stockes wrote: Hi, With the pyqtref manual, I try to test base2.py (see below the code). But this one does not produce anything !! Is it the same for you ?
 Simon Config : rhel4, pyqt-4.0.1, qt4.1.4 Base2.py === from PyQt4 import QtCore, QtGui from ui_imagedialog import Ui_ImageDialog
 class ImageDialog(QtGui.QDialog): def __init__(self): QtGui.QDialog.__init__(self) # Set up the user interface from Designer. self.ui = Ui_ImageDialog()
 self.ui.setupUi(self) # Make some local modifications. self.ui.colorDepthCombo.addItem(2 colors (1 bit per pixel)) # Connect up the buttons.
 self.connect(self.ui.okButton, QtCore.SIGNAL(clicked()),self, QtCore.SLOT(accept())) self.connect(self.ui.cancelButton, QtCore.SIGNAL(clicked()),
self, QtCore.SLOT(reject())) ui_imagedialog.py = import sys from PyQt4 import QtCore, QtGui class Ui_ImageDialog(object):
 def setupUi(self, ImageDialog): ImageDialog.setObjectName(ImageDialog) ImageDialog.resize(QtCore.QSize(QtCore.QRect (0,0,420,300).size()).expandedTo(ImageDialog.minimumSizeHint
())) self.buttonBox = QtGui.QDialogButtonBox(ImageDialog) self.buttonBox.setGeometry(QtCore.QRect(30,240,341,32)) self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
 self.buttonBox.setStandardButtons( QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok ) self.buttonBox.setObjectName(buttonBox)
 self.retranslateUi(ImageDialog) QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL(accepted()), ImageDialog.accept) QtCore.QObject.connect(self.buttonBox
,QtCore.SIGNAL(rejected()), ImageDialog.reject) QtCore.QMetaObject.connectSlotsByName(ImageDialog) def retranslateUi(self, ImageDialog): ImageDialog.setWindowTitle
(QtGui.QApplication.translate(ImageDialog, Dialog, None, QtGui.QApplication.UnicodeUTF8))Is this the complete application? If so, then yes, it does the same for me -because you haven't created the QApplication instance, entered the event loop
etc, etc.Phil
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] problem with pyqtref manual code

2006-11-10 Thread simon stockes
Hi,With the pyqtref manual, I try to test base2.py (see below the code). But this one does not produce anything !!Is it the same for you ?SimonConfig : rhel4, pyqt-4.0.1, qt4.1.4
Base2.py===from PyQt4 import QtCore, QtGuifrom ui_imagedialog import Ui_ImageDialogclass ImageDialog(QtGui.QDialog): def __init__(self): QtGui.QDialog.__init__(self) # Set up the user interface from Designer.
 self.ui = Ui_ImageDialog() self.ui.setupUi(self) # Make some local modifications. self.ui.colorDepthCombo.addItem(2 colors (1 bit per pixel)) # Connect up the buttons.
 self.connect(self.ui.okButton, QtCore.SIGNAL(clicked()), self, QtCore.SLOT(accept())) self.connect(self.ui.cancelButton, QtCore.SIGNAL(clicked()),
 self, QtCore.SLOT(reject()))ui_imagedialog.py=import sysfrom PyQt4 import QtCore, QtGuiclass Ui_ImageDialog(object): def setupUi(self, ImageDialog):
 ImageDialog.setObjectName(ImageDialog) ImageDialog.resize(QtCore.QSize(QtCore.QRect(0,0,420,300).size()).expandedTo(ImageDialog.minimumSizeHint())) self.buttonBox = QtGui.QDialogButtonBox
(ImageDialog) self.buttonBox.setGeometry(QtCore.QRect(30,240,341,32)) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok
) self.buttonBox.setObjectName(buttonBox) self.retranslateUi(ImageDialog) QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL(accepted()),ImageDialog.accept)
 QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL(rejected()),ImageDialog.reject) QtCore.QMetaObject.connectSlotsByName(ImageDialog) def retranslateUi(self, ImageDialog): 
ImageDialog.setWindowTitle(QtGui.QApplication.translate(ImageDialog, Dialog, None, QtGui.QApplication.UnicodeUTF8))
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


Re: [PyKDE] Re: pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.

2006-11-09 Thread simon stockes
Hi,Yes, the xml qt4 lib is present :-(- [EMAIL PROTECTED] PyQt4]# ll /software/local/discovery/de/lib/libQtXml*-rw-r--r-- 1 root root 749 Nov 7 13:44 /software/local/discovery/de/lib/libQtXml.la
-rw-r--r-- 1 root root 672 Nov 7 13:44 /software/local/discovery/de/lib/libQtXml.prllrwxrwxrwx 1 root root 17 Nov 7 15:11 /software/local/discovery/de/lib/libQtXml.so - libQtXml.so.4.2.1lrwxrwxrwx 1 root root 17 Nov 7 15:11 /software/local/discovery/de/lib/libQtXml.so.4 - 
libQtXml.so.4.2.1lrwxrwxrwx 1 root root 17 Nov 7 15:11 /software/local/discovery/de/lib/libQtXml.so.4.2 - libQtXml.so.4.2.1-rwxr-xr-x 1 root root 328504 Nov 7 15:11 /software/local/discovery/de/lib/libQtXml.so.4.2.1
-rw-r--r-- 1 root root 1504030 Nov 7 13:54 /software/local/discovery/de/lib/libQtXml.so.4.2.1.debug- and pyqt lib seems correctly linked with the right qt4 libraries as this exemple show you :
cd /software/local/discovery/de/lib/python2.4/site-packages/PyQt4[EMAIL PROTECTED] PyQt4]# ldd QtGui.so libQtGui.so.4 = /software/local/discovery/de/lib/libQtGui.so.4 (0x002a95c95000) 
libpng12.so.0 = /usr/lib64/libpng12.so.0 (0x002a9659d000) libSM.so.6 = /usr/X11R6/lib64/libSM.so.6 (0x002a966c4000) libICE.so.6 = /usr/X11R6/lib64/libICE.so.6 (0x002a967cf000)
 libQtCore.so.4 = /software/local/discovery/de/lib/libQtCore.so.4 (0x002a968ea000) libpthread.so.0 = /lib64/tls/libpthread.so.0 (0x002a96b93000) libXi.so.6 = /usr/X11R6/lib64/libXi.so.6 (0x002a96ca9000)
 libXrender.so.1 = /usr/X11R6/lib64/libXrender.so.1 (0x002a96db1000) libXrandr.so.2 = /usr/X11R6/lib64/libXrandr.so.2 (0x002a96eba000) libXfixes.so.3 = /usr/X11R6/lib64/libXfixes.so.3 (0x002a96fbe000)
 libXcursor.so.1 = /usr/X11R6/lib64/libXcursor.so.1 (0x002a970c3000) libXinerama.so.1 = /usr/X11R6/lib64/libXinerama.so.1 (0x002a971cd000) libfreetype.so.6 = /usr/lib64/libfreetype.so.6 (0x002a972d)
 libfontconfig.so.1 = /usr/lib64/libfontconfig.so.1 (0x002a9745b000) libXext.so.6 = /usr/X11R6/lib64/libXext.so.6 (0x002a9758e000) libX11.so.6 = /usr/X11R6/lib64/libX11.so.6 (0x002a976a)
 libdl.so.2 = /lib64/libdl.so.2 (0x002a97899000) libz.so.1 = /usr/lib64/libz.so.1 (0x002a9799c000) libm.so.6 = /lib64/tls/libm.so.6 (0x002a97ab) libglib-2.0.so.0
 = /usr/lib64/libglib-2.0.so.0 (0x002a97c36000) libstdc++.so.6 = /usr/lib64/libstdc++.so.6 (0x002a97dbf000) libgcc_s.so.1 = /lib64/libgcc_s.so.1 (0x002a97fb) libc.so.6
 = /lib64/tls/libc.so.6 (0x002a980bb000) /lib64/ld-linux-x86-64.so.2 (0x00552000) libexpat.so.0 = /usr/lib64/libexpat.so.0 (0x002a982f)Simon.2006/11/7, Rex Dieter 
[EMAIL PROTECTED]: simon stockes wrote:  Hi All,   I got this error when I tried to compile sip-4.5, pyqt4.1, with the last  version of 
Qt-4.2.1 GNU version.   The effect is to not construct the QtXml directory in pyqt4.1source  directory. This one was constructed without problem in the previous pyqt  version ( 
4.0.1) on osx 10.4.8 and RHel4.   For this pyqt4.1, it works on OSX 10.4.8 but not on a pure Linux RHel4  up2date.   Any, idea ? Does your qt4 build indeed include libQtXml?
 -- Rex ___ PyKDE mailing list PyKDE@mats.imk.fraunhofer.de 
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] Gui Python framework comparison

2006-11-09 Thread simon stockes
Hi,What are the bad and good points of PyQt compare to PyGtk, wxPython ?Simon
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


Re: [PyKDE] Re: Re: pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.

2006-11-09 Thread simon stockes
Thanks for the information but I have to compile it. Firewall, here are blocking yum, apt, etc ...Simon.I'm not root on this machine2006/11/9, Rex Dieter 
[EMAIL PROTECTED]:simon stockes wrote: Yes, the xml qt4 lib is present:-(
OK.dunno then.FYI, you may be interested in the qt4 rpms we provide fromhttp://kde-redhat.sourceforge.net/for rhel4.We've also got PyQt4.i386 rpms (but am currently having issues
getting it to build properly on x86_64).-- Rex___PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


Re: [PyKDE] pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.

2006-11-09 Thread simon stockes
 for the QtOpenGL module...Generating the C++ source for the QtSvg module.../software/local/discovery/de/sip-4.5/../bin/sip -x VendorID -t WS_X11 -x PyQt_NoPrintRangeBug -t Qt_4_2_0 -a 
QtSvg.api -c QtSvg -b QtSvg/QtSvg.sbf -I sip sip/QtSvg/QtSvgmod.sipCreating the Makefile for the QtSvg module...Generating the C++ source for the QtSql module.../software/local/discovery/de/sip-4.5/../bin/sip -x VendorID -t WS_X11 -x PyQt_NoPrintRangeBug -t Qt_4_2_0 -a 
QtSql.api -c QtSql -b QtSql/QtSql.sbf -I sip sip/QtSql/QtSqlmod.sipCreating the Makefile for the QtSql module...Generating the C++ source for the QtAssistant module.../software/local/discovery/de/sip-4.5
/../bin/sip -x VendorID -t WS_X11 -x PyQt_NoPrintRangeBug -t Qt_4_2_0 -a QtAssistant.api -c QtAssistant -b QtAssistant/QtAssistant.sbf -I sip sip/QtAssistant/QtAssistantmod.sipCreating the Makefile for the QtAssistant module...
Creating Qt consolidated module...Creating QScintilla API file...Creating top level Makefile...Creating elementtree Makefile...Creating pyuic4 wrapper...Creating pyuic4 Makefile...pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.
Creating pyqtconfig.py...2006/11/9, David Boddie [EMAIL PROTECTED]:
On Tue Nov 7 18:50:04 MET 2006, simon stockes wrote: I got this error when I tried to compile sip-4.5, pyqt4.1, with the last version of Qt-4.2.1 GNU version. The effect is to not construct the QtXml directory in
 pyqt4.1sourcedirectory. This one was constructed without problem in the previous pyqt version (4.0.1) on osx 10.4.8 and RHel4.Can you run the configure script again with the -w option then post the
output? It may help us to determine what exactly is going wrong.David___PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde


[PyKDE] pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.

2006-11-07 Thread simon stockes
Hi All,I got this error when I tried to compile sip-4.5, pyqt4.1, with the last version of Qt-4.2.1 GNU version.The effect is to not construct the QtXml directory in pyqt4.1source directory. This one was constructed without problem in the previous pyqt version (
4.0.1) on osx 10.4.8 and RHel4.For this pyqt4.1, it works on OSX  10.4.8 but not on a pure Linux RHel4 up2date.Any, idea ?By, Simon.[EMAIL PROTECTED] PyQt-x11-gpl-4.1]# ../bin/python 
configure.py -q /software/local/discovery/dockexplorer/bin/qmakeDetermining the layout of your Qt installation...This is the GPL version of PyQt 4.1 (licensed under the GNU General PublicLicense) for Python 2.4.4
 on linux2.Type 'L' to view the license.Type 'yes' to accept the terms of the license.Type 'no' to decline the terms of the license.Do you accept the terms of the license? yesChecking to see if the QtGui module should be built...
Checking to see if the QtNetwork module should be built...Checking to see if the QtOpenGL module should be built...Checking to see if the QtSql module should be built...Checking to see if the QtSvg module should be built...
Checking to see if the QtTest module should be built...Checking to see if the QtXml module should be built...Checking to see if the QtAssistant module should be built...Qt v4.2.1 free edition is being used.
SIP 4.5 is being used.The Qt header files are in /software/local/discovery/dockexplorer/include.The QtCore Qt library is in /software/local/discovery/dockexplorer/lib.The Qt binaries are in /software/local/discovery/dockexplorer/bin.
The Qt mkspecs directory is in /software/local/discovery/dockexplorer.These PyQt modules will be built: QtCore QtGui QtOpenGL QtSql QtSvgQtAssistant.The PyQt modules will be installed in/software/local/discovery/dockexplorer/lib/python2.4/site-packages/PyQt4.
The PyQt .sip files will be installed in/software/local/discovery/dockexplorer/share/sip/PyQt4.pyuic4, pyrcc4 and pylupdate4 will be installed in/software/local/discovery/dockexplorer/bin.Generating the C++ source for the QtCore module...
Creating the Makefile for the QtCore module...Generating the C++ source for the QtGui module...Creating the Makefile for the QtGui module...Generating the C++ source for the QtOpenGL module...Creating the Makefile for the QtOpenGL module...
Generating the C++ source for the QtSvg module...Creating the Makefile for the QtSvg module...Generating the C++ source for the QtSql module...Creating the Makefile for the QtSql module...Generating the C++ source for the QtAssistant module...
Creating the Makefile for the QtAssistant module...Creating Qt consolidated module...Creating QScintilla API file...Creating top level Makefile...Creating elementtree Makefile...Creating pyuic4 wrapper...
Creating pyuic4 Makefile...pylupdate4 and pyrcc4 will not be built because the Qt XML module is missing.Creating pyqtconfig.py...
___
PyKDE mailing listPyKDE@mats.imk.fraunhofer.de
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde