| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- from PyQt5 import QtWidgets
- from PyQt5.QtCore import QSettings
- from AppGUI.GUIElements import FCDoubleSpinner
- 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 ToolsCalculatorsPrefGroupUI(OptionsGroupUI):
- def __init__(self, decimals=4, parent=None):
- # OptionsGroupUI.__init__(self, "Calculators Tool Options", parent=parent)
- super(ToolsCalculatorsPrefGroupUI, self).__init__(self, parent=parent)
- self.setTitle(str(_("Calculators Tool Options")))
- self.decimals = decimals
- # ## V-shape Calculator Tool
- self.vshape_tool_label = QtWidgets.QLabel("<b>%s:</b>" % _("V-Shape Tool Calculator"))
- self.vshape_tool_label.setToolTip(
- _("Calculate the tool diameter for a given V-shape tool,\n"
- "having the tip diameter, tip angle and\n"
- "depth-of-cut as parameters.")
- )
- self.layout.addWidget(self.vshape_tool_label)
- grid0 = QtWidgets.QGridLayout()
- grid0.setColumnStretch(0, 0)
- grid0.setColumnStretch(1, 1)
- self.layout.addLayout(grid0)
- # ## Tip Diameter
- self.tip_dia_entry = FCDoubleSpinner()
- self.tip_dia_entry.set_range(0.000001, 9999.9999)
- self.tip_dia_entry.set_precision(self.decimals)
- self.tip_dia_entry.setSingleStep(0.1)
- self.tip_dia_label = QtWidgets.QLabel('%s:' % _("Tip Diameter"))
- self.tip_dia_label.setToolTip(
- _("This is the tool tip diameter.\n"
- "It is specified by manufacturer.")
- )
- grid0.addWidget(self.tip_dia_label, 0, 0)
- grid0.addWidget(self.tip_dia_entry, 0, 1)
- # ## Tip angle
- self.tip_angle_entry = FCDoubleSpinner()
- self.tip_angle_entry.set_range(0.0, 180.0)
- self.tip_angle_entry.set_precision(self.decimals)
- self.tip_angle_entry.setSingleStep(5)
- self.tip_angle_label = QtWidgets.QLabel('%s:' % _("Tip Angle"))
- self.tip_angle_label.setToolTip(
- _("This is the angle on the tip of the tool.\n"
- "It is specified by manufacturer.")
- )
- grid0.addWidget(self.tip_angle_label, 1, 0)
- grid0.addWidget(self.tip_angle_entry, 1, 1)
- # ## Depth-of-cut Cut Z
- self.cut_z_entry = FCDoubleSpinner()
- self.cut_z_entry.set_range(-9999.9999, 0.0000)
- self.cut_z_entry.set_precision(self.decimals)
- self.cut_z_entry.setSingleStep(0.01)
- self.cut_z_label = QtWidgets.QLabel('%s:' % _("Cut Z"))
- self.cut_z_label.setToolTip(
- _("This is depth to cut into material.\n"
- "In the CNCJob object it is the CutZ parameter.")
- )
- grid0.addWidget(self.cut_z_label, 2, 0)
- grid0.addWidget(self.cut_z_entry, 2, 1)
- # ## Electroplating Calculator Tool
- self.plate_title_label = QtWidgets.QLabel("<b>%s:</b>" % _("ElectroPlating Calculator"))
- self.plate_title_label.setToolTip(
- _("This calculator is useful for those who plate the via/pad/drill holes,\n"
- "using a method like graphite ink or calcium hypophosphite ink or palladium chloride.")
- )
- grid0.addWidget(self.plate_title_label, 3, 0, 1, 2)
- # ## PCB Length
- self.pcblength_entry = FCDoubleSpinner()
- self.pcblength_entry.set_range(0.000001, 9999.9999)
- self.pcblength_entry.set_precision(self.decimals)
- self.pcblength_entry.setSingleStep(0.1)
- self.pcblengthlabel = QtWidgets.QLabel('%s:' % _("Board Length"))
- self.pcblengthlabel.setToolTip(_('This is the board length. In centimeters.'))
- grid0.addWidget(self.pcblengthlabel, 4, 0)
- grid0.addWidget(self.pcblength_entry, 4, 1)
- # ## PCB Width
- self.pcbwidth_entry = FCDoubleSpinner()
- self.pcbwidth_entry.set_range(0.000001, 9999.9999)
- self.pcbwidth_entry.set_precision(self.decimals)
- self.pcbwidth_entry.setSingleStep(0.1)
- self.pcbwidthlabel = QtWidgets.QLabel('%s:' % _("Board Width"))
- self.pcbwidthlabel.setToolTip(_('This is the board width.In centimeters.'))
- grid0.addWidget(self.pcbwidthlabel, 5, 0)
- grid0.addWidget(self.pcbwidth_entry, 5, 1)
- # ## Current Density
- self.cdensity_label = QtWidgets.QLabel('%s:' % _("Current Density"))
- self.cdensity_entry = FCDoubleSpinner()
- self.cdensity_entry.set_range(0.000001, 9999.9999)
- self.cdensity_entry.set_precision(self.decimals)
- self.cdensity_entry.setSingleStep(0.1)
- self.cdensity_label.setToolTip(_("Current density to pass through the board. \n"
- "In Amps per Square Feet ASF."))
- grid0.addWidget(self.cdensity_label, 6, 0)
- grid0.addWidget(self.cdensity_entry, 6, 1)
- # ## PCB Copper Growth
- self.growth_label = QtWidgets.QLabel('%s:' % _("Copper Growth"))
- self.growth_entry = FCDoubleSpinner()
- self.growth_entry.set_range(0.000001, 9999.9999)
- self.growth_entry.set_precision(self.decimals)
- self.growth_entry.setSingleStep(0.01)
- self.growth_label.setToolTip(_("How thick the copper growth is intended to be.\n"
- "In microns."))
- grid0.addWidget(self.growth_label, 7, 0)
- grid0.addWidget(self.growth_entry, 7, 1)
- self.layout.addStretch()
|