Интересует оповещения с трея в PyQt4 но не стандартные типа:
tray.showMessage("Title of the message", "Body of the message")
Возможно ли сделать:
И как?
tray.showMessage("Title of the message", "Body of the message")
self.connect(self.workThread, QtCore.SIGNAL("update(QString)"), self.animate )
self.workThread.update.connect(self.animate)
class WorkThread(QtCore.QThread): update = QtCore.pyqtSignal() def createNotification(self,mssg): self.update.emit()