Preferences/ConfigurationPages/EditorAutocompletionPage.py

changeset 0
de9c2efb9d02
child 7
c679fb30c8f3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Preferences/ConfigurationPages/EditorAutocompletionPage.py	Mon Dec 28 16:03:33 2009 +0000
@@ -0,0 +1,57 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2006 - 2009 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the Editor Autocompletion configuration page.
+"""
+
+from ConfigurationPageBase import ConfigurationPageBase
+from Ui_EditorAutocompletionPage import Ui_EditorAutocompletionPage
+
+import Preferences
+
+class EditorAutocompletionPage(ConfigurationPageBase, Ui_EditorAutocompletionPage):
+    """
+    Class implementing the Editor Autocompletion configuration page.
+    """
+    def __init__(self):
+        """
+        Constructor
+        """
+        ConfigurationPageBase.__init__(self)
+        self.setupUi(self)
+        self.setObjectName("EditorAutocompletionPage")
+        
+        # set initial values
+        self.acEnabledCheckBox.setChecked(\
+            Preferences.getEditor("AutoCompletionEnabled"))
+        self.acCaseSensitivityCheckBox.setChecked(\
+            Preferences.getEditor("AutoCompletionCaseSensitivity"))
+        self.acReplaceWordCheckBox.setChecked(\
+            Preferences.getEditor("AutoCompletionReplaceWord"))
+        self.acThresholdSlider.setValue(\
+            Preferences.getEditor("AutoCompletionThreshold"))
+        
+    def save(self):
+        """
+        Public slot to save the Editor Autocompletion configuration.
+        """
+        Preferences.setEditor("AutoCompletionEnabled",
+            int(self.acEnabledCheckBox.isChecked()))
+        Preferences.setEditor("AutoCompletionCaseSensitivity",
+            int(self.acCaseSensitivityCheckBox.isChecked()))
+        Preferences.setEditor("AutoCompletionReplaceWord",
+            int(self.acReplaceWordCheckBox.isChecked()))
+        Preferences.setEditor("AutoCompletionThreshold",
+            self.acThresholdSlider.value())
+    
+def create(dlg):
+    """
+    Module function to create the configuration page.
+    
+    @param dlg reference to the configuration dialog
+    """
+    page = EditorAutocompletionPage()
+    return page

eric ide

mercurial