From 7ac18a9d9482dd33bb58bd271492e375ea48a357 Mon Sep 17 00:00:00 2001 From: stack Date: Sun, 8 Jul 2012 18:16:58 +0200 Subject: [PATCH] showError in Gui showError displays a QErrorMessage, usually when catchin a AppError containing an errorstring to display --- gui.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 6ed893d..c4a1866 100755 --- a/gui.py +++ b/gui.py @@ -35,6 +35,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import sys import os from PyQt4 import QtGui +from PyQt4.QtCore import SIGNAL from apperror import AppError from settings import appconf @@ -59,7 +60,7 @@ class Gui(QtGui.QDialog): self.trayIcon.show() self.setWindowTitle("Profile manager / Dboxswitch - dropbox profile switcher") - self.resize(400, 300) + self.resize(200, 200) self.profileManager = prManager @@ -79,6 +80,7 @@ class Gui(QtGui.QDialog): def createTrayIcon(self): + #context menu build, right click self.trayIconMenu = QtGui.QMenu(self) self.trayIconMenu.addAction(self.manageprofiles) self.trayIconMenu.addSeparator() @@ -88,3 +90,11 @@ class Gui(QtGui.QDialog): self.trayIcon.setContextMenu(self.trayIconMenu) #baloon on hover self.trayIcon.setToolTip(appconf.appname+" "+appconf.appversion+"\nRight Click to manage profiles.") + def showError(self, err): + """ Display an error message """ + self.setWindowTitle("Error - Dboxswitch - dropbox profile switcher") + self.resize(200, 100) + err = QtGui.QErrorMessage.showMessage(QtGui.QErrorMessage.qtHandler(), "Error: "+err) + + + -- 2.20.1