UI/ErrorLogDialog.py

changeset 1726
5d3132740ece
child 1740
6a92ffd41de8
diff -r d7a3430f7cbf -r 5d3132740ece UI/ErrorLogDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/UI/ErrorLogDialog.py	Wed Mar 21 15:19:16 2012 +0100
@@ -0,0 +1,68 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2012 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to display an error log.
+"""
+
+import os
+
+from PyQt4.QtCore import pyqtSlot
+from PyQt4.QtGui import QDialog, QStyle
+
+from .Ui_ErrorLogDialog import Ui_ErrorLogDialog
+
+
+class ErrorLogDialog(QDialog, Ui_ErrorLogDialog):
+    """
+    Class implementing a dialog to display an error log.
+    """
+    def __init__(self, logFile, parent=None):
+        """
+        Constructor
+        
+        @param logFile name of the log file containing the error info (string)
+        @param parent reference to the parent widget (QWidget)
+        """
+        super().__init__(parent)
+        self.setupUi(self)
+        
+        pixmap = self.style().standardIcon(QStyle.SP_MessageBoxQuestion).pixmap(32, 32)
+        self.icon.setPixmap(pixmap)
+        
+        self.__ui = parent
+        self.__logFile = logFile
+        
+        try:
+            f = open(logFile, "r", encoding="utf-8")
+            txt = f.read()
+            f.close()
+            self.logEdit.setPlainText(txt)
+        except IOError:
+            pass
+    
+    @pyqtSlot()
+    def on_emailButton_clicked(self):
+        """
+        Private slot to send an email.
+        """
+        self.__ui.showEmailDialog("bug",
+            attachFile=self.__logFile, deleteAttachFile=True)
+        self.accept()
+    
+    @pyqtSlot()
+    def on_deleteButton_clicked(self):
+        """
+        Private slot to delete the log file.
+        """
+        os.remove(self.__logFile)
+        self.accept()
+    
+    @pyqtSlot()
+    def on_keepButton_clicked(self):
+        """
+        Private slot to just do nothing.
+        """
+        self.accept()

eric ide

mercurial