Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
# -*- coding: utf-8 -*- # Copyright (c) 2010 - 2025 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing the tray starter configuration page. """ import os from eric7 import Preferences from eric7.EricGui import EricPixmapCache from .ConfigurationPageBase import ConfigurationPageBase from .Ui_TrayStarterPage import Ui_TrayStarterPage class TrayStarterPage(ConfigurationPageBase, Ui_TrayStarterPage): """ Class implementing the tray starter configuration page. """ def __init__(self): """ Constructor """ super().__init__() self.setupUi(self) self.setObjectName("TrayStarterPage") self.standardButton.setIcon(EricPixmapCache.getIcon("erict")) self.highContrastButton.setIcon(EricPixmapCache.getIcon("erict-hc")) self.blackWhiteButton.setIcon(EricPixmapCache.getIcon("erict-bw")) self.blackWhiteInverseButton.setIcon(EricPixmapCache.getIcon("erict-bwi")) # set initial values iconName = os.path.splitext(Preferences.getTrayStarter("TrayStarterIcon"))[0] if iconName == "erict": self.standardButton.setChecked(True) elif iconName == "erict-hc": self.highContrastButton.setChecked(True) elif iconName == "erict-bw": self.blackWhiteButton.setChecked(True) elif iconName == "erict-bwi": self.blackWhiteInverseButton.setChecked(True) def save(self): """ Public slot to save the Python configuration. """ if self.standardButton.isChecked(): iconName = "erict" elif self.highContrastButton.isChecked(): iconName = "erict-hc" elif self.blackWhiteButton.isChecked(): iconName = "erict-bw" elif self.blackWhiteInverseButton.isChecked(): iconName = "erict-bwi" Preferences.setTrayStarter("TrayStarterIcon", iconName) def create(_dlg): """ Module function to create the configuration page. @param _dlg reference to the configuration dialog (unused) @type ConfigurationDialog @return reference to the instantiated page @rtype ConfigurationPageBase """ page = TrayStarterPage() return page