Made gevent happy with PyQt.

This commit is contained in:
miao.lin 2013-06-28 16:45:03 +08:00
parent 0aa7efab34
commit 5df22b4181
1 changed files with 20 additions and 2 deletions

View File

@ -2927,7 +2927,22 @@ class UISignaler(QThread):
else:
sys.stderr.write(
'Command sent to UISignaler not recognized: %s\n' % command)
try:
import gevent
except ImportError as ex:
print "cannot find gevent"
else:
def mainloop(app):
while True:
app.processEvents()
while app.hasPendingEvents():
app.processEvents()
gevent.sleep()
gevent.sleep() # don't appear to get here but cooperate again
def testprint():
#print 'this is running'
gevent.spawn_later(1, testprint)
def run():
app = QtGui.QApplication(sys.argv)
@ -2946,5 +2961,8 @@ def run():
myapp.appIndicatorInit(app)
myapp.ubuntuMessagingMenuInit()
myapp.notifierInit()
sys.exit(app.exec_())
if gevent is None:
sys.exit(app.exec_())
else:
gevent.joinall([gevent.spawn(testprint), gevent.spawn(mainloop, app)])
print 'done'