Re: Linux-Signal VS QT

2007-02-08 Thread Phil Thompson
On Thursday 08 February 2007 3:08 pm, Marco wrote: > Can I use LinuX signal as a tool for commuction with a QT(PyQt4) programme? > > The follow code didNOT work... > > > from PyQt4 import QtCore,QtGui > import signal > import sys > import os > > try: > import psyco > psyco.full() > except:

Linux-Signal VS QT

2007-02-08 Thread Marco
Can I use LinuX signal as a tool for commuction with a QT(PyQt4) programme? The follow code didNOT work... from PyQt4 import QtCore,QtGui import signal import sys import os try: import psyco psyco.full() except: pass class Main(QtGui.QWidget): def __init__(self): QtGui.