from PyQt5 import QtWidgets, QtCore from PyQt5.QtCore import QSettings from flatcamGUI.preferences.OptionsGroupUI import OptionsGroupUI2 import gettext import FlatCAMTranslation as fcTranslate import builtins fcTranslate.apply_language('strings') if '_' not in builtins.__dict__: _ = gettext.gettext from flatcamGUI.preferences.OptionUI import OptionUI, CheckboxOptionUI, RadioSetOptionUI, \ SeparatorOptionUI, HeadingOptionUI, ComboboxOptionUI, ColorOptionUI, FullWidthButtonOptionUI, \ SliderWithSpinnerOptionUI, ColorAlphaSliderOptionUI class GeneralGUIPrefGroupUI(OptionsGroupUI2): def __init__(self, decimals=4, **kwargs): self.decimals = decimals super().__init__(**kwargs) self.setTitle(str(_("GUI Preferences"))) self.layout_field = self.option_dict()["layout"].get_field() self.layout_field.activated.connect(self.on_layout) self.theme_field = self.option_dict()["global_theme"].get_field() self.style_field = self.option_dict()["style"].get_field() current_style_index = self.style_field.findText(QtWidgets.qApp.style().objectName(), QtCore.Qt.MatchFixedString) self.style_field.setCurrentIndex(current_style_index) self.style_field.activated[str].connect(self.handle_style) self.hdpi_field = self.option_dict()["hdpi"].get_field() qsettings = QSettings("Open Source", "FlatCAM") if qsettings.contains("hdpi"): self.hdpi_field.set_value(qsettings.value('hdpi', type=int)) else: self.hdpi_field.set_value(False) self.hdpi_field.stateChanged.connect(self.handle_hdpi) def build_options(self) -> [OptionUI]: return [ RadioSetOptionUI( option="global_theme", label_text="Theme", label_tooltip="Select a theme for FlatCAM.\nIt will theme the plot area.", choices=[ {"label": _("Light"), "value": "white"}, {"label": _("Dark"), "value": "black"} ], orientation='vertical' ), CheckboxOptionUI( option="global_gray_icons", label_text="Use Gray Icons", label_tooltip="Check this box to use a set of icons with\na lighter (gray) color. To be used when a\nfull dark theme is applied." ), SeparatorOptionUI(), ComboboxOptionUI( option="layout", label_text="Layout", label_tooltip="Select an layout for FlatCAM.\nIt is applied immediately.", choices=[ "standard", "compact", "minimal" ] ), ComboboxOptionUI( option="style", label_text="Style", label_tooltip="Select an style for FlatCAM.\nIt will be applied at the next app start.", choices=QtWidgets.QStyleFactory.keys() ), CheckboxOptionUI( option="hdpi", label_text='Activate HDPI Support', label_tooltip="Enable High DPI support for FlatCAM.\nIt will be applied at the next app start.", ), CheckboxOptionUI( option="global_hover", label_text='Display Hover Shape', label_tooltip="Enable display of a hover shape for FlatCAM objects.\nIt is displayed whenever the mouse cursor is hovering\nover any kind of not-selected object.", ), CheckboxOptionUI( option="global_selection_shape", label_text='Display Selection Shape', label_tooltip="Enable the display of a selection shape for FlatCAM objects.\n" "It is displayed whenever the mouse selects an object\n" "either by clicking or dragging mouse from left to right or\n" "right to left." ), SeparatorOptionUI(), HeadingOptionUI(label_text="Left-Right Selection Color", label_tooltip=None), ColorOptionUI( option="global_sel_line", label_text="Outline", label_tooltip="Set the line color for the 'left to right' selection box." ), ColorOptionUI( option="global_sel_fill", label_text="Fill", label_tooltip="Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." ), ColorAlphaSliderOptionUI( applies_to=["global_sel_line", "global_sel_fill"], group=self, label_text="Alpha", label_tooltip="Set the fill transparency for the 'left to right' selection box." ), SeparatorOptionUI(), HeadingOptionUI(label_text="Right-Left Selection Color", label_tooltip=None), ColorOptionUI( option="global_alt_sel_line", label_text="Outline", label_tooltip="Set the line color for the 'right to left' selection box." ), ColorOptionUI( option="global_alt_sel_fill", label_text="Fill", label_tooltip="Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." ), ColorAlphaSliderOptionUI( applies_to=["global_alt_sel_line", "global_alt_sel_fill"], group=self, label_text="Alpha", label_tooltip="Set the fill transparency for the 'right to left' selection box." ), SeparatorOptionUI(), HeadingOptionUI(label_text='Editor Color', label_tooltip=None), ColorOptionUI( option="global_draw_color", label_text="Drawing", label_tooltip="Set the color for the shape." ), ColorOptionUI( option="global_sel_draw_color", label_text="Selection", label_tooltip="Set the color of the shape when selected." ), SeparatorOptionUI(), HeadingOptionUI(label_text='Project Items Color', label_tooltip=None), ColorOptionUI( option="global_proj_item_color", label_text="Enabled", label_tooltip="Set the color of the items in Project Tab Tree." ), ColorOptionUI( option="global_proj_item_dis_color", label_text="Disabled", label_tooltip="Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." ), CheckboxOptionUI( option="global_project_autohide", label_text="Project AutoHide", label_tooltip="Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." ), ] def on_layout(self, index=None, lay=None): if lay: current_layout = lay else: current_layout = self.layout_field.get_value() self.app.ui.set_layout(current_layout) @staticmethod def handle_style(style): # FIXME: this should be moved out to a view model # set current style qsettings = QSettings("Open Source", "FlatCAM") qsettings.setValue('style', style) # This will write the setting to the platform specific storage. del qsettings @staticmethod def handle_hdpi(state): # FIXME: this should be moved out to a view model # set current HDPI qsettings = QSettings("Open Source", "FlatCAM") qsettings.setValue('hdpi', state) # This will write the setting to the platform specific storage. del qsettings