eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py

branch
eric7
changeset 8312
800c432b34c8
parent 8218
7c09585bd960
child 8881
54e42bc2437a
diff -r 4e8b98454baa -r 800c432b34c8 eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/Preferences/ConfigurationPages/EditorSyntaxPage.py	Sat May 15 18:45:04 2021 +0200
@@ -0,0 +1,73 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2011 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the Editor Syntax Checker configuration page.
+"""
+
+from .ConfigurationPageBase import ConfigurationPageBase
+from .Ui_EditorSyntaxPage import Ui_EditorSyntaxPage
+
+import Preferences
+
+
+class EditorSyntaxPage(ConfigurationPageBase, Ui_EditorSyntaxPage):
+    """
+    Class implementing the Editor Syntax Checker configuration page.
+    """
+    def __init__(self):
+        """
+        Constructor
+        """
+        super().__init__()
+        self.setupUi(self)
+        self.setObjectName("EditorSyntaxPage")
+        
+        # set initial values
+        self.onlineCheckBox.setChecked(
+            Preferences.getEditor("OnlineSyntaxCheck"))
+        self.onlineTimeoutSpinBox.setValue(
+            Preferences.getEditor("OnlineSyntaxCheckInterval"))
+        self.automaticSyntaxCheckCheckBox.setChecked(
+            Preferences.getEditor("AutoCheckSyntax"))
+        
+        # pyflakes related stuff
+        self.includeCheckBox.setChecked(
+            Preferences.getFlakes("IncludeInSyntaxCheck"))
+        self.ignoreStarImportCheckBox.setChecked(
+            Preferences.getFlakes("IgnoreStarImportWarnings"))
+    
+    def save(self):
+        """
+        Public slot to save the Editor Syntax Checker configuration.
+        """
+        Preferences.setEditor(
+            "OnlineSyntaxCheck",
+            self.onlineCheckBox.isChecked())
+        Preferences.setEditor(
+            "OnlineSyntaxCheckInterval",
+            self.onlineTimeoutSpinBox.value())
+        Preferences.setEditor(
+            "AutoCheckSyntax",
+            self.automaticSyntaxCheckCheckBox.isChecked())
+        
+        # pyflakes related stuff
+        Preferences.setFlakes(
+            "IncludeInSyntaxCheck",
+            self.includeCheckBox.isChecked())
+        Preferences.setFlakes(
+            "IgnoreStarImportWarnings",
+            self.ignoreStarImportCheckBox.isChecked())
+
+
+def create(dlg):
+    """
+    Module function to create the configuration page.
+    
+    @param dlg reference to the configuration dialog
+    @return reference to the instantiated page (ConfigurationPageBase)
+    """
+    page = EditorSyntaxPage()
+    return page

eric ide

mercurial