| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- from PyQt5 import QtWidgets, QtGui
- from PyQt5.QtCore import QSettings
- from AppGUI.GUIElements import 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 FAGrbPrefGroupUI(OptionsGroupUI):
- def __init__(self, decimals=4, parent=None):
- # OptionsGroupUI.__init__(self, "Gerber File associations Preferences", parent=None)
- super(FAGrbPrefGroupUI, self).__init__(self, parent=parent)
- self.setTitle(str(_("Gerber File associations")))
- self.decimals = decimals
- 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()
- self.layout.addLayout(hlay0)
- hlay0.addWidget(self.restore_btn)
- hlay0.addWidget(self.del_all_btn)
- # ## Gerber associations
- self.grb_list_label = QtWidgets.QLabel("<b>%s:</b>" % _("Extensions list"))
- self.grb_list_label.setToolTip(
- _("List of file extensions to be\n"
- "associated with FlatCAM.")
- )
- self.layout.addWidget(self.grb_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.grb_list_text = FCTextArea()
- self.grb_list_text.setReadOnly(True)
- # self.grb_list_text.sizeHint(custom_sizehint=150)
- self.layout.addWidget(self.grb_list_text)
- font = QtGui.QFont()
- font.setPointSize(tb_fsize)
- self.grb_list_text.setFont(font)
- 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.layout.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.layout.addLayout(hlay2)
- hlay2.addWidget(self.add_btn)
- hlay2.addWidget(self.del_btn)
- self.grb_list_btn = FCButton(_("Apply Association"))
- self.grb_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.layout.addWidget(self.grb_list_btn)
- # self.layout.addStretch()
|