src/eric7/Preferences/ConfigurationPages/EricServerPage.py

Thu, 11 Jul 2024 14:21:34 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 11 Jul 2024 14:21:34 +0200
branch
eric7
changeset 10840
c8045d0dbaa7
parent 10555
08e853c0c77b
child 11090
f5f5f5803935
permissions
-rw-r--r--

MicroPython
- Updated the list of known CircuitPython boards for CPy 9.1.0.
- Updated the list of known UF2 capable boards.

# -*- coding: utf-8 -*-

# Copyright (c) 2024 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing the eric-ide server related settings.
"""

from eric7 import Preferences

from .ConfigurationPageBase import ConfigurationPageBase
from .Ui_EricServerPage import Ui_EricServerPage


class EricServerPage(ConfigurationPageBase, Ui_EricServerPage):
    """
    Class implementing the eric-ide server related settings.
    """

    def __init__(self):
        """
        Constructor
        """
        super().__init__()
        self.setupUi(self)
        self.setObjectName("EricServerPage")

        # set initial values
        self.timeoutSpinBox.setValue(Preferences.getEricServer("ConnectionTimeout"))
        self.startShellCheckBox.setChecked(Preferences.getEricServer("AutostartShell"))

    def save(self):
        """
        Public slot to save the Cooperation configuration.
        """
        Preferences.setEricServer("ConnectionTimeout", self.timeoutSpinBox.value())
        Preferences.setEricServer("AutostartShell", self.startShellCheckBox.isChecked())


def create(dlg):  # noqa: U100
    """
    Module function to create the configuration page.

    @param dlg reference to the configuration dialog
    @type ConfigurationDialog
    @return reference to the instantiated page
    @rtype ConfigurationPageBase
    """
    page = EricServerPage()
    return page

eric ide

mercurial