Added some eye candy to the SSL stuff.

Sat, 19 Jan 2013 17:24:35 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 19 Jan 2013 17:24:35 +0100
changeset 2361
fe8bccb78a8d
parent 2360
b6bf3925e3e1
child 2362
68a92d01c1cc

Added some eye candy to the SSL stuff.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
E5Network/E5SslCertificatesDialog.py file | annotate | diff | comparison | revisions
Helpviewer/HelpWindow.py file | annotate | diff | comparison | revisions
UI/UserInterface.py file | annotate | diff | comparison | revisions
icons/default/certificateDelete.png file | annotate | diff | comparison | revisions
icons/default/certificateExport.png file | annotate | diff | comparison | revisions
icons/default/certificateImport.png file | annotate | diff | comparison | revisions
icons/default/certificates.png file | annotate | diff | comparison | revisions
icons/default/passwords.png file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- a/E5Network/E5SslCertificatesDialog.py	Sat Jan 19 16:59:23 2013 +0100
+++ b/E5Network/E5SslCertificatesDialog.py	Sat Jan 19 17:24:35 2013 +0100
@@ -26,6 +26,7 @@
 
 import Preferences
 import Utilities
+import UI.PixmapCache
 
 
 class E5SslCertificatesDialog(QDialog, Ui_E5SslCertificatesDialog):
@@ -43,6 +44,16 @@
         super().__init__(parent)
         self.setupUi(self)
         
+        self.serversViewButton.setIcon(UI.PixmapCache.getIcon("certificates.png"))
+        self.serversDeleteButton.setIcon(UI.PixmapCache.getIcon("certificateDelete.png"))
+        self.serversExportButton.setIcon(UI.PixmapCache.getIcon("certificateExport.png"))
+        self.serversImportButton.setIcon(UI.PixmapCache.getIcon("certificateImport.png"))
+        
+        self.caViewButton.setIcon(UI.PixmapCache.getIcon("certificates.png"))
+        self.caDeleteButton.setIcon(UI.PixmapCache.getIcon("certificateDelete.png"))
+        self.caExportButton.setIcon(UI.PixmapCache.getIcon("certificateExport.png"))
+        self.caImportButton.setIcon(UI.PixmapCache.getIcon("certificateImport.png"))
+        
         self.__populateServerCertificatesTree()
         self.__populateCaCertificatesTree()
     
--- a/Helpviewer/HelpWindow.py	Sat Jan 19 16:59:23 2013 +0100
+++ b/Helpviewer/HelpWindow.py	Sat Jan 19 17:24:35 2013 +0100
@@ -1183,6 +1183,7 @@
         self.__actions.append(self.searchEnginesAct)
         
         self.passwordsAct = E5Action(self.trUtf8('Manage Saved Passwords'),
+                      UI.PixmapCache.getIcon("passwords.png"),
                       self.trUtf8('Manage Saved Passwords...'),
                       0, 0,
                       self, 'help_manage_passwords')
@@ -1228,6 +1229,7 @@
         
         if SSL_AVAILABLE:
             self.certificatesAct = E5Action(self.trUtf8('Manage SSL Certificates'),
+                          UI.PixmapCache.getIcon("certificates.png"),
                           self.trUtf8('Manage SSL Certificates...'),
                           0, 0,
                           self, 'help_manage_certificates')
--- a/UI/UserInterface.py	Sat Jan 19 16:59:23 2013 +0100
+++ b/UI/UserInterface.py	Sat Jan 19 17:24:35 2013 +0100
@@ -1914,14 +1914,15 @@
 
         if SSL_AVAILABLE:
             self.certificatesAct = E5Action(self.trUtf8('Manage SSL Certificates'),
-                          self.trUtf8('Manage SSL Certificates...'),
-                          0, 0,
-                          self, 'manage_ssl_certificates')
+                    UI.PixmapCache.getIcon("certificates.png"),
+                    self.trUtf8('Manage SSL Certificates...'),
+                    0, 0,
+                    self, 'manage_ssl_certificates')
             self.certificatesAct.setStatusTip(self.trUtf8(
-                    'Manage the saved SSL certificates'))
+                'Manage the saved SSL certificates'))
             self.certificatesAct.setWhatsThis(self.trUtf8(
-                    """<b>Manage SSL Certificates...</b>"""
-                    """<p>Opens a dialog to manage the saved SSL certificates.</p>"""
+                """<b>Manage SSL Certificates...</b>"""
+                """<p>Opens a dialog to manage the saved SSL certificates.</p>"""
             ))
             self.certificatesAct.triggered[()].connect(self.__showCertificatesDialog)
             self.actions.append(self.certificatesAct)
Binary file icons/default/certificateDelete.png has changed
Binary file icons/default/certificateExport.png has changed
Binary file icons/default/certificateImport.png has changed
Binary file icons/default/certificates.png has changed
Binary file icons/default/passwords.png has changed

eric ide

mercurial