| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- from PyQt5 import QtWidgets, QtGui
- from PyQt5.QtCore import QSettings
- from appGUI.GUIElements import VerticalScrollArea, FCButton, FCTextArea, FCEntry
- from appGUI.preferences.OptionsGroupUI import OptionsGroupUI
- import gettext
- import appTranslation as fcTranslate
- import builtins
- fcTranslate.apply_language('strings')
- if '_' not in builtins.__dict__:
- _ = gettext.gettext
- settings = QSettings("Open Source", "FlatCAM")
- if settings.contains("machinist"):
- machinist_setting = settings.value('machinist', type=int)
- else:
- machinist_setting = 0
- class FAExcPrefGroupUI(OptionsGroupUI):
- def __init__(self, decimals=4, parent=None):
- # OptionsGroupUI.__init__(self, "Excellon File associations Preferences", parent=None)
- super().__init__(self, parent=parent)
- self.setTitle(str(_("Excellon File associations")))
- self.decimals = decimals
- self.layout.setContentsMargins(2, 2, 2, 2)
- self.vertical_lay = QtWidgets.QVBoxLayout()
- scroll_widget = QtWidgets.QWidget()
- scroll = VerticalScrollArea()
- scroll.setWidget(scroll_widget)
- scroll.setWidgetResizable(True)
- scroll.setFrameShape(QtWidgets.QFrame.NoFrame)
- self.restore_btn = FCButton(_("Restore"))
- self.restore_btn.setToolTip(_("Restore the extension list to the default state."))
- self.del_all_btn = FCButton(_("Delete All"))
- self.del_all_btn.setToolTip(_("Delete all extensions from the list."))
- hlay0 = QtWidgets.QHBoxLayout()
- hlay0.addWidget(self.restore_btn)
- hlay0.addWidget(self.del_all_btn)
- self.vertical_lay.addLayout(hlay0)
- # # ## Excellon associations
- list_label = QtWidgets.QLabel("<b>%s:</b>" % _("Extensions list"))
- list_label.setToolTip(
- _("List of file extensions to be\n"
- "associated with FlatCAM.")
- )
- self.vertical_lay.addWidget(list_label)
- qsettings = QSettings("Open Source", "FlatCAM")
- if qsettings.contains("textbox_font_size"):
- tb_fsize = qsettings.value('textbox_font_size', type=int)
- else:
- tb_fsize = 10
- self.exc_list_text = FCTextArea()
- self.exc_list_text.setReadOnly(True)
- # self.exc_list_text.sizeHint(custom_sizehint=150)
- font = QtGui.QFont()
- font.setPointSize(tb_fsize)
- self.exc_list_text.setFont(font)
- self.vertical_lay.addWidget(self.exc_list_text)
- self.ext_label = QtWidgets.QLabel('%s:' % _("Extension"))
- self.ext_label.setToolTip(_("A file extension to be added or deleted to the list."))
- self.ext_entry = FCEntry()
- hlay1 = QtWidgets.QHBoxLayout()
- self.vertical_lay.addLayout(hlay1)
- hlay1.addWidget(self.ext_label)
- hlay1.addWidget(self.ext_entry)
- self.add_btn = FCButton(_("Add Extension"))
- self.add_btn.setToolTip(_("Add a file extension to the list"))
- self.del_btn = FCButton(_("Delete Extension"))
- self.del_btn.setToolTip(_("Delete a file extension from the list"))
- hlay2 = QtWidgets.QHBoxLayout()
- self.vertical_lay.addLayout(hlay2)
- hlay2.addWidget(self.add_btn)
- hlay2.addWidget(self.del_btn)
- self.exc_list_btn = FCButton(_("Apply Association"))
- self.exc_list_btn.setToolTip(_("Apply the file associations between\n"
- "FlatCAM and the files with above extensions.\n"
- "They will be active after next logon.\n"
- "This work only in Windows."))
- self.vertical_lay.addWidget(self.exc_list_btn)
- scroll_widget.setLayout(self.vertical_lay)
- self.layout.addWidget(scroll)
- # self.vertical_lay.addStretch()
|