Preferences/ConfigurationPages/ViewmanagerPage.py

changeset 0
de9c2efb9d02
child 6
52e8c820d0dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Preferences/ConfigurationPages/ViewmanagerPage.py	Mon Dec 28 16:03:33 2009 +0000
@@ -0,0 +1,95 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2006 - 2009 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the Viewmanager configuration page.
+"""
+
+import os
+
+from PyQt4.QtCore import pyqtSlot,  QVariant
+from PyQt4.QtGui import QPixmap
+
+from E4Gui.E4Application import e4App
+
+from ConfigurationPageBase import ConfigurationPageBase
+from Ui_ViewmanagerPage import Ui_ViewmanagerPage
+
+import Preferences
+
+from eric4config import getConfig
+
+class ViewmanagerPage(ConfigurationPageBase, Ui_ViewmanagerPage):
+    """
+    Class implementing the Viewmanager configuration page.
+    """
+    def __init__(self):
+        """
+        Constructor
+        """
+        ConfigurationPageBase.__init__(self)
+        self.setupUi(self)
+        self.setObjectName("ViewmanagerPage")
+        
+        # set initial values
+        self.pluginManager = e4App().getObject("PluginManager")
+        self.viewmanagers = self.pluginManager.getPluginDisplayStrings("viewmanager")
+        self.windowComboBox.clear()
+        currentVm = Preferences.getViewManager()
+        
+        keys = sorted(self.viewmanagers.keys())
+        for key in keys:
+            self.windowComboBox.addItem(self.trUtf8(self.viewmanagers[key]), 
+                                        QVariant(key))
+        currentIndex = self.windowComboBox.findText(\
+            self.trUtf8(self.viewmanagers[currentVm]))
+        self.windowComboBox.setCurrentIndex(currentIndex)
+        self.on_windowComboBox_activated(currentIndex)
+        
+        self.tabViewGroupBox.setTitle(self.trUtf8(self.viewmanagers["tabview"]))
+        
+        self.filenameLengthSpinBox.setValue(
+            Preferences.getUI("TabViewManagerFilenameLength"))
+        self.filenameOnlyCheckBox.setChecked(
+            Preferences.getUI("TabViewManagerFilenameOnly"))
+        self.recentFilesSpinBox.setValue(
+            Preferences.getUI("RecentNumber"))
+        
+    def save(self):
+        """
+        Public slot to save the Viewmanager configuration.
+        """
+        vm = \
+            self.windowComboBox.itemData(self.windowComboBox.currentIndex()).toString()
+        Preferences.setViewManager(vm)
+        Preferences.setUI("TabViewManagerFilenameLength",
+            self.filenameLengthSpinBox.value())
+        Preferences.setUI("TabViewManagerFilenameOnly",
+            int(self.filenameOnlyCheckBox.isChecked()))
+        Preferences.setUI("RecentNumber", 
+            self.recentFilesSpinBox.value())
+        
+    @pyqtSlot(int)
+    def on_windowComboBox_activated(self, index):
+        """
+        Private slot to show a preview of the selected workspace view type.
+        
+        @param index index of selected workspace view type (integer)
+        """
+        workspace = unicode(\
+            self.windowComboBox.itemData(self.windowComboBox.currentIndex()).toString())
+        pixmap = self.pluginManager.getPluginPreviewPixmap("viewmanager", workspace)
+        
+        self.previewPixmap.setPixmap(pixmap)
+        self.tabViewGroupBox.setEnabled(workspace == "tabview")
+    
+def create(dlg):
+    """
+    Module function to create the configuration page.
+    
+    @param dlg reference to the configuration dialog
+    """
+    page = ViewmanagerPage()
+    return page

eric ide

mercurial