from PyQt4 import QtGui
from apperror import AppError
+from settings import appconf
class Gui(QtGui.QDialog):
def __init__(self, prManager):
self.profileManager = prManager
-
-
- def main(self):
+ def main(self):
sys.exit(self.app.exec_())
def closeEvent(self, event):
self.trayIcon = QtGui.QSystemTrayIcon(self)
self.trayIcon.setContextMenu(self.trayIconMenu)
+ self.trayIcon.setToolTip(appconf.appname+" "+appconf.appversion+"\nRight Click to manage profiles.")