| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268 |
- ############################################################
- # FlatCAM: 2D Post-processing for Manufacturing #
- # http://flatcam.org #
- # File Modified: Marius Adrian Stanciu (c) #
- # Date: 3/10/2019 #
- # MIT Licence #
- ############################################################
- from FlatCAMTool import FlatCAMTool
- from copy import copy,deepcopy
- from ObjectCollection import *
- import gettext
- import FlatCAMTranslation as fcTranslate
- fcTranslate.apply_language('strings')
- import builtins
- if '_' not in builtins.__dict__:
- _ = gettext.gettext
- class ToolPaint(FlatCAMTool, Gerber):
- toolName = _("Paint Area")
- def __init__(self, app):
- self.app = app
- FlatCAMTool.__init__(self, app)
- Geometry.__init__(self, geo_steps_per_circle=self.app.defaults["geometry_circle_steps"])
- ## Title
- title_label = QtWidgets.QLabel("%s" % self.toolName)
- title_label.setStyleSheet("""
- QLabel
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.layout.addWidget(title_label)
- self.tools_frame = QtWidgets.QFrame()
- self.tools_frame.setContentsMargins(0, 0, 0, 0)
- self.layout.addWidget(self.tools_frame)
- self.tools_box = QtWidgets.QVBoxLayout()
- self.tools_box.setContentsMargins(0, 0, 0, 0)
- self.tools_frame.setLayout(self.tools_box)
- ## Form Layout
- form_layout = QtWidgets.QFormLayout()
- self.tools_box.addLayout(form_layout)
- ## Object
- self.object_combo = QtWidgets.QComboBox()
- self.object_combo.setModel(self.app.collection)
- self.object_combo.setRootModelIndex(self.app.collection.index(2, 0, QtCore.QModelIndex()))
- self.object_combo.setCurrentIndex(1)
- self.object_label = QtWidgets.QLabel(_("Geometry:"))
- self.object_label.setToolTip(
- _("Geometry object to be painted. ")
- )
- e_lab_0 = QtWidgets.QLabel('')
- form_layout.addRow(self.object_label, self.object_combo)
- form_layout.addRow(e_lab_0)
- #### Tools ####
- self.tools_table_label = QtWidgets.QLabel('<b>%s</b>' % _('Tools Table'))
- self.tools_table_label.setToolTip(
- _("Tools pool from which the algorithm\n"
- "will pick the ones used for painting.")
- )
- self.tools_box.addWidget(self.tools_table_label)
- self.tools_table = FCTable()
- self.tools_box.addWidget(self.tools_table)
- self.tools_table.setColumnCount(4)
- self.tools_table.setHorizontalHeaderLabels(['#', _('Diameter'), 'TT', ''])
- self.tools_table.setColumnHidden(3, True)
- # self.tools_table.setSortingEnabled(False)
- # self.tools_table.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
- self.tools_table.horizontalHeaderItem(0).setToolTip(
- _("This is the Tool Number.\n"
- "Painting will start with the tool with the biggest diameter,\n"
- "continuing until there are no more tools.\n"
- "Only tools that create painting geometry will still be present\n"
- "in the resulting geometry. This is because with some tools\n"
- "this function will not be able to create painting geometry.")
- )
- self.tools_table.horizontalHeaderItem(1).setToolTip(
- _("Tool Diameter. It's value (in current FlatCAM units) \n"
- "is the cut width into the material."))
- self.tools_table.horizontalHeaderItem(2).setToolTip(
- _("The Tool Type (TT) can be:<BR>"
- "- <B>Circular</B> with 1 ... 4 teeth -> it is informative only. Being circular, <BR>"
- "the cut width in material is exactly the tool diameter.<BR>"
- "- <B>Ball</B> -> informative only and make reference to the Ball type endmill.<BR>"
- "- <B>V-Shape</B> -> it will disable de Z-Cut parameter in the resulting geometry UI form "
- "and enable two additional UI form fields in the resulting geometry: V-Tip Dia and "
- "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter such "
- "as the cut width into material will be equal with the value in the Tool Diameter "
- "column of this table.<BR>"
- "Choosing the <B>V-Shape</B> Tool Type automatically will select the Operation Type "
- "in the resulting geometry as Isolation."))
- self.empty_label = QtWidgets.QLabel('')
- self.tools_box.addWidget(self.empty_label)
- #### Add a new Tool ####
- hlay = QtWidgets.QHBoxLayout()
- self.tools_box.addLayout(hlay)
- self.addtool_entry_lbl = QtWidgets.QLabel('<b>%s:</b>' % _('Tool Dia'))
- self.addtool_entry_lbl.setToolTip(
- _("Diameter for the new tool.")
- )
- self.addtool_entry = FCEntry2()
- # hlay.addWidget(self.addtool_label)
- # hlay.addStretch()
- hlay.addWidget(self.addtool_entry_lbl)
- hlay.addWidget(self.addtool_entry)
- grid2 = QtWidgets.QGridLayout()
- self.tools_box.addLayout(grid2)
- self.addtool_btn = QtWidgets.QPushButton(_('Add'))
- self.addtool_btn.setToolTip(
- _("Add a new tool to the Tool Table\n"
- "with the diameter specified above.")
- )
- # self.copytool_btn = QtWidgets.QPushButton('Copy')
- # self.copytool_btn.setToolTip(
- # "Copy a selection of tools in the Tool Table\n"
- # "by first selecting a row in the Tool Table."
- # )
- self.deltool_btn = QtWidgets.QPushButton(_('Delete'))
- self.deltool_btn.setToolTip(
- _("Delete a selection of tools in the Tool Table\n"
- "by first selecting a row(s) in the Tool Table.")
- )
- grid2.addWidget(self.addtool_btn, 0, 0)
- # grid2.addWidget(self.copytool_btn, 0, 1)
- grid2.addWidget(self.deltool_btn, 0,2)
- self.empty_label_0 = QtWidgets.QLabel('')
- self.tools_box.addWidget(self.empty_label_0)
- grid3 = QtWidgets.QGridLayout()
- self.tools_box.addLayout(grid3)
- # Overlap
- ovlabel = QtWidgets.QLabel(_('Overlap Rate:'))
- ovlabel.setToolTip(
- _("How much (fraction) of the tool width to overlap each tool pass.\n"
- "Example:\n"
- "A value here of 0.25 means 25% from the tool diameter found above.\n\n"
- "Adjust the value starting with lower values\n"
- "and increasing it if areas that should be painted are still \n"
- "not painted.\n"
- "Lower values = faster processing, faster execution on PCB.\n"
- "Higher values = slow processing and slow execution on CNC\n"
- "due of too many paths.")
- )
- grid3.addWidget(ovlabel, 1, 0)
- self.paintoverlap_entry = FCEntry()
- grid3.addWidget(self.paintoverlap_entry, 1, 1)
- # Margin
- marginlabel = QtWidgets.QLabel(_('Margin:'))
- marginlabel.setToolTip(
- _("Distance by which to avoid\n"
- "the edges of the polygon to\n"
- "be painted.")
- )
- grid3.addWidget(marginlabel, 2, 0)
- self.paintmargin_entry = FCEntry()
- grid3.addWidget(self.paintmargin_entry, 2, 1)
- # Method
- methodlabel = QtWidgets.QLabel(_('Method:'))
- methodlabel.setToolTip(
- _("Algorithm for non-copper clearing:<BR>"
- "<B>Standard</B>: Fixed step inwards.<BR>"
- "<B>Seed-based</B>: Outwards from seed.<BR>"
- "<B>Line-based</B>: Parallel lines.")
- )
- grid3.addWidget(methodlabel, 3, 0)
- self.paintmethod_combo = RadioSet([
- {"label": "Standard", "value": "standard"},
- {"label": "Seed-based", "value": "seed"},
- {"label": "Straight lines", "value": "lines"}
- ], orientation='vertical', stretch=False)
- grid3.addWidget(self.paintmethod_combo, 3, 1)
- # Connect lines
- pathconnectlabel = QtWidgets.QLabel(_("Connect:"))
- pathconnectlabel.setToolTip(
- _("Draw lines between resulting\n"
- "segments to minimize tool lifts.")
- )
- grid3.addWidget(pathconnectlabel, 4, 0)
- self.pathconnect_cb = FCCheckBox()
- grid3.addWidget(self.pathconnect_cb, 4, 1)
- contourlabel = QtWidgets.QLabel(_("Contour:"))
- contourlabel.setToolTip(
- _("Cut around the perimeter of the polygon\n"
- "to trim rough edges.")
- )
- grid3.addWidget(contourlabel, 5, 0)
- self.paintcontour_cb = FCCheckBox()
- grid3.addWidget(self.paintcontour_cb, 5, 1)
- restlabel = QtWidgets.QLabel(_("Rest M.:"))
- restlabel.setToolTip(
- _("If checked, use 'rest machining'.\n"
- "Basically it will clear copper outside PCB features,\n"
- "using the biggest tool and continue with the next tools,\n"
- "from bigger to smaller, to clear areas of copper that\n"
- "could not be cleared by previous tool, until there is\n"
- "no more copper to clear or there are no more tools.\n\n"
- "If not checked, use the standard algorithm.")
- )
- grid3.addWidget(restlabel, 6, 0)
- self.rest_cb = FCCheckBox()
- grid3.addWidget(self.rest_cb, 6, 1)
- # Polygon selection
- selectlabel = QtWidgets.QLabel(_('Selection:'))
- selectlabel.setToolTip(
- _("How to select the polygons to paint.<BR>"
- "Options:<BR>"
- "- <B>Single</B>: left mouse click on the polygon to be painted.<BR>"
- "- <B>All</B>: paint all polygons.")
- )
- grid3.addWidget(selectlabel, 7, 0)
- # grid3 = QtWidgets.QGridLayout()
- self.selectmethod_combo = RadioSet([
- {"label": "Single", "value": "single"},
- {"label": "All", "value": "all"},
- # {"label": "Rectangle", "value": "rectangle"}
- ])
- grid3.addWidget(self.selectmethod_combo, 7, 1)
- # GO Button
- self.generate_paint_button = QtWidgets.QPushButton(_('Create Paint Geometry'))
- self.generate_paint_button.setToolTip(
- _("After clicking here, click inside<BR>"
- "the polygon you wish to be painted if <B>Single</B> is selected.<BR>"
- "If <B>All</B> is selected then the Paint will start after click.<BR>"
- "A new Geometry object with the tool<BR>"
- "paths will be created.")
- )
- self.tools_box.addWidget(self.generate_paint_button)
- self.tools_box.addStretch()
- self.obj_name = ""
- self.paint_obj = None
- self.units = ''
- self.paint_tools = {}
- self.tooluid = 0
- # store here the default data for Geometry Data
- self.default_data = {}
- self.default_data.update({
- "name": '_paint',
- "plot": self.app.defaults["geometry_plot"],
- "cutz": self.app.defaults["geometry_cutz"],
- "vtipdia": 0.1,
- "vtipangle": 30,
- "travelz": self.app.defaults["geometry_travelz"],
- "feedrate": self.app.defaults["geometry_feedrate"],
- "feedrate_z": self.app.defaults["geometry_feedrate_z"],
- "feedrate_rapid": self.app.defaults["geometry_feedrate_rapid"],
- "dwell": self.app.defaults["geometry_dwell"],
- "dwelltime": self.app.defaults["geometry_dwelltime"],
- "multidepth": self.app.defaults["geometry_multidepth"],
- "ppname_g": self.app.defaults["geometry_ppname_g"],
- "depthperpass": self.app.defaults["geometry_depthperpass"],
- "extracut": self.app.defaults["geometry_extracut"],
- "toolchange": self.app.defaults["geometry_toolchange"],
- "toolchangez": self.app.defaults["geometry_toolchangez"],
- "endz": self.app.defaults["geometry_endz"],
- "spindlespeed": self.app.defaults["geometry_spindlespeed"],
- "toolchangexy": self.app.defaults["geometry_toolchangexy"],
- "startz": self.app.defaults["geometry_startz"],
- "tooldia": self.app.defaults["tools_painttooldia"],
- "paintmargin": self.app.defaults["tools_paintmargin"],
- "paintmethod": self.app.defaults["tools_paintmethod"],
- "selectmethod": self.app.defaults["tools_selectmethod"],
- "pathconnect": self.app.defaults["tools_pathconnect"],
- "paintcontour": self.app.defaults["tools_paintcontour"],
- "paintoverlap": self.app.defaults["tools_paintoverlap"]
- })
- self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
- ## Signals
- self.addtool_btn.clicked.connect(self.on_tool_add)
- self.addtool_entry.returnPressed.connect(self.on_tool_add)
- # self.copytool_btn.clicked.connect(lambda: self.on_tool_copy())
- self.tools_table.itemChanged.connect(self.on_tool_edit)
- self.deltool_btn.clicked.connect(self.on_tool_delete)
- self.generate_paint_button.clicked.connect(self.on_paint_button_click)
- self.selectmethod_combo.activated_custom.connect(self.on_radio_selection)
- def install(self, icon=None, separator=None, **kwargs):
- FlatCAMTool.install(self, icon, separator, shortcut='ALT+P', **kwargs)
- def run(self, toggle=True):
- self.app.report_usage("ToolPaint()")
- if toggle:
- # if the splitter is hidden, display it, else hide it but only if the current widget is the same
- if self.app.ui.splitter.sizes()[0] == 0:
- self.app.ui.splitter.setSizes([1, 1])
- else:
- try:
- if self.app.ui.tool_scroll_area.widget().objectName() == self.toolName:
- self.app.ui.splitter.setSizes([0, 1])
- except AttributeError:
- pass
- else:
- if self.app.ui.splitter.sizes()[0] == 0:
- self.app.ui.splitter.setSizes([1, 1])
- FlatCAMTool.run(self)
- self.set_tool_ui()
- self.app.ui.notebook.setTabText(2, _("Paint Tool"))
- def on_radio_selection(self):
- if self.selectmethod_combo.get_value() == 'single':
- # disable rest-machining for single polygon painting
- self.rest_cb.set_value(False)
- self.rest_cb.setDisabled(True)
- # delete all tools except first row / tool for single polygon painting
- list_to_del = list(range(1, self.tools_table.rowCount()))
- if list_to_del:
- self.on_tool_delete(rows_to_delete=list_to_del)
- # disable addTool and delTool
- self.addtool_entry.setDisabled(True)
- self.addtool_btn.setDisabled(True)
- self.deltool_btn.setDisabled(True)
- self.tools_table.setContextMenuPolicy(Qt.NoContextMenu)
- else:
- self.rest_cb.setDisabled(False)
- self.addtool_entry.setDisabled(False)
- self.addtool_btn.setDisabled(False)
- self.deltool_btn.setDisabled(False)
- self.tools_table.setContextMenuPolicy(Qt.ActionsContextMenu)
- def set_tool_ui(self):
- self.tools_frame.show()
- self.reset_fields()
- ## Init the GUI interface
- self.paintmargin_entry.set_value(self.default_data["paintmargin"])
- self.paintmethod_combo.set_value(self.default_data["paintmethod"])
- self.selectmethod_combo.set_value(self.default_data["selectmethod"])
- self.pathconnect_cb.set_value(self.default_data["pathconnect"])
- self.paintcontour_cb.set_value(self.default_data["paintcontour"])
- self.paintoverlap_entry.set_value(self.default_data["paintoverlap"])
- # updated units
- self.units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().upper()
- if self.units == "IN":
- self.addtool_entry.set_value(0.039)
- else:
- self.addtool_entry.set_value(1)
- self.tools_table.setupContextMenu()
- self.tools_table.addContextMenu(
- "Add", lambda: self.on_tool_add(dia=None, muted=None), icon=QtGui.QIcon("share/plus16.png"))
- self.tools_table.addContextMenu(
- "Delete", lambda:
- self.on_tool_delete(rows_to_delete=None, all=None), icon=QtGui.QIcon("share/delete32.png"))
- # set the working variables to a known state
- self.paint_tools.clear()
- self.tooluid = 0
- self.default_data.clear()
- self.default_data.update({
- "name": '_paint',
- "plot": self.app.defaults["geometry_plot"],
- "cutz": self.app.defaults["geometry_cutz"],
- "vtipdia": 0.1,
- "vtipangle": 30,
- "travelz": self.app.defaults["geometry_travelz"],
- "feedrate": self.app.defaults["geometry_feedrate"],
- "feedrate_z": self.app.defaults["geometry_feedrate_z"],
- "feedrate_rapid": self.app.defaults["geometry_feedrate_rapid"],
- "dwell": self.app.defaults["geometry_dwell"],
- "dwelltime": self.app.defaults["geometry_dwelltime"],
- "multidepth": self.app.defaults["geometry_multidepth"],
- "ppname_g": self.app.defaults["geometry_ppname_g"],
- "depthperpass": self.app.defaults["geometry_depthperpass"],
- "extracut": self.app.defaults["geometry_extracut"],
- "toolchange": self.app.defaults["geometry_toolchange"],
- "toolchangez": self.app.defaults["geometry_toolchangez"],
- "endz": self.app.defaults["geometry_endz"],
- "spindlespeed": self.app.defaults["geometry_spindlespeed"],
- "toolchangexy": self.app.defaults["geometry_toolchangexy"],
- "startz": self.app.defaults["geometry_startz"],
- "tooldia": self.app.defaults["tools_painttooldia"],
- "paintmargin": self.app.defaults["tools_paintmargin"],
- "paintmethod": self.app.defaults["tools_paintmethod"],
- "selectmethod": self.app.defaults["tools_selectmethod"],
- "pathconnect": self.app.defaults["tools_pathconnect"],
- "paintcontour": self.app.defaults["tools_paintcontour"],
- "paintoverlap": self.app.defaults["tools_paintoverlap"]
- })
- # call on self.on_tool_add() counts as an call to self.build_ui()
- # through this, we add a initial row / tool in the tool_table
- self.on_tool_add(self.app.defaults["tools_painttooldia"], muted=True)
- # if the Paint Method is "Single" disable the tool table context menu
- if self.default_data["selectmethod"] == "single":
- self.tools_table.setContextMenuPolicy(Qt.NoContextMenu)
- def build_ui(self):
- try:
- # if connected, disconnect the signal from the slot on item_changed as it creates issues
- self.tools_table.itemChanged.disconnect()
- except:
- pass
- # updated units
- self.units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().upper()
- sorted_tools = []
- for k, v in self.paint_tools.items():
- sorted_tools.append(float('%.4f' % float(v['tooldia'])))
- sorted_tools.sort()
- n = len(sorted_tools)
- self.tools_table.setRowCount(n)
- tool_id = 0
- for tool_sorted in sorted_tools:
- for tooluid_key, tooluid_value in self.paint_tools.items():
- if float('%.4f' % tooluid_value['tooldia']) == tool_sorted:
- tool_id += 1
- id = QtWidgets.QTableWidgetItem('%d' % int(tool_id))
- id.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
- row_no = tool_id - 1
- self.tools_table.setItem(row_no, 0, id) # Tool name/id
- # Make sure that the drill diameter when in MM is with no more than 2 decimals
- # There are no drill bits in MM with more than 3 decimals diameter
- # For INCH the decimals should be no more than 3. There are no drills under 10mils
- if self.units == 'MM':
- dia = QtWidgets.QTableWidgetItem('%.2f' % tooluid_value['tooldia'])
- else:
- dia = QtWidgets.QTableWidgetItem('%.3f' % tooluid_value['tooldia'])
- dia.setFlags(QtCore.Qt.ItemIsEnabled)
- tool_type_item = QtWidgets.QComboBox()
- for item in self.tool_type_item_options:
- tool_type_item.addItem(item)
- tool_type_item.setStyleSheet('background-color: rgb(255,255,255)')
- idx = tool_type_item.findText(tooluid_value['tool_type'])
- tool_type_item.setCurrentIndex(idx)
- tool_uid_item = QtWidgets.QTableWidgetItem(str(int(tooluid_key)))
- self.tools_table.setItem(row_no, 1, dia) # Diameter
- self.tools_table.setCellWidget(row_no, 2, tool_type_item)
- ### REMEMBER: THIS COLUMN IS HIDDEN IN OBJECTUI.PY ###
- self.tools_table.setItem(row_no, 3, tool_uid_item) # Tool unique ID
- # make the diameter column editable
- for row in range(tool_id):
- self.tools_table.item(row, 1).setFlags(
- QtCore.Qt.ItemIsEditable | QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
- # all the tools are selected by default
- self.tools_table.selectColumn(0)
- #
- self.tools_table.resizeColumnsToContents()
- self.tools_table.resizeRowsToContents()
- vertical_header = self.tools_table.verticalHeader()
- vertical_header.hide()
- self.tools_table.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
- horizontal_header = self.tools_table.horizontalHeader()
- horizontal_header.setMinimumSectionSize(10)
- horizontal_header.setSectionResizeMode(0, QtWidgets.QHeaderView.Fixed)
- horizontal_header.resizeSection(0, 20)
- horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.Stretch)
- # self.tools_table.setSortingEnabled(True)
- # sort by tool diameter
- # self.tools_table.sortItems(1)
- self.tools_table.setMinimumHeight(self.tools_table.getHeight())
- self.tools_table.setMaximumHeight(self.tools_table.getHeight())
- # we reactivate the signals after the after the tool adding as we don't need to see the tool been populated
- self.tools_table.itemChanged.connect(self.on_tool_edit)
- def on_tool_add(self, dia=None, muted=None):
- try:
- self.tools_table.itemChanged.disconnect()
- except:
- pass
- if dia:
- tool_dia = dia
- else:
- try:
- tool_dia = float(self.addtool_entry.get_value())
- except ValueError:
- # try to convert comma to decimal point. if it's still not working error message and return
- try:
- tool_dia = float(self.addtool_entry.get_value().replace(',', '.'))
- except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number."))
- return
- if tool_dia is None:
- self.build_ui()
- self.app.inform.emit(_("[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."))
- return
- # construct a list of all 'tooluid' in the self.tools
- tool_uid_list = []
- for tooluid_key in self.paint_tools:
- tool_uid_item = int(tooluid_key)
- tool_uid_list.append(tool_uid_item)
- # find maximum from the temp_uid, add 1 and this is the new 'tooluid'
- if not tool_uid_list:
- max_uid = 0
- else:
- max_uid = max(tool_uid_list)
- self.tooluid = int(max_uid + 1)
- tool_dias = []
- for k, v in self.paint_tools.items():
- for tool_v in v.keys():
- if tool_v == 'tooldia':
- tool_dias.append(float('%.4f' % v[tool_v]))
- if float('%.4f' % tool_dia) in tool_dias:
- if muted is None:
- self.app.inform.emit(_("[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."))
- self.tools_table.itemChanged.connect(self.on_tool_edit)
- return
- else:
- if muted is None:
- self.app.inform.emit(_("[success] New tool added to Tool Table."))
- self.paint_tools.update({
- int(self.tooluid): {
- 'tooldia': float('%.4f' % tool_dia),
- 'offset': 'Path',
- 'offset_value': 0.0,
- 'type': 'Iso',
- 'tool_type': 'V',
- 'data': dict(self.default_data),
- 'solid_geometry': []
- }
- })
- self.build_ui()
- def on_tool_edit(self):
- try:
- self.tools_table.itemChanged.disconnect()
- except:
- pass
- tool_dias = []
- for k, v in self.paint_tools.items():
- for tool_v in v.keys():
- if tool_v == 'tooldia':
- tool_dias.append(float('%.4f' % v[tool_v]))
- for row in range(self.tools_table.rowCount()):
- try:
- new_tool_dia = float(self.tools_table.item(row, 1).text())
- except ValueError:
- # try to convert comma to decimal point. if it's still not working error message and return
- try:
- new_tool_dia = float(self.tools_table.item(row, 1).text().replace(',', '.'))
- except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number."))
- return
- tooluid = int(self.tools_table.item(row, 3).text())
- # identify the tool that was edited and get it's tooluid
- if new_tool_dia not in tool_dias:
- self.paint_tools[tooluid]['tooldia'] = new_tool_dia
- self.app.inform.emit(_("[success] Tool from Tool Table was edited."))
- self.build_ui()
- return
- else:
- # identify the old tool_dia and restore the text in tool table
- for k, v in self.paint_tools.items():
- if k == tooluid:
- old_tool_dia = v['tooldia']
- break
- restore_dia_item = self.tools_table.item(row, 1)
- restore_dia_item.setText(str(old_tool_dia))
- self.app.inform.emit(_("[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool Table."))
- self.build_ui()
- # def on_tool_copy(self, all=None):
- # try:
- # self.tools_table.itemChanged.disconnect()
- # except:
- # pass
- #
- # # find the tool_uid maximum value in the self.tools
- # uid_list = []
- # for key in self.paint_tools:
- # uid_list.append(int(key))
- # try:
- # max_uid = max(uid_list, key=int)
- # except ValueError:
- # max_uid = 0
- #
- # if all is None:
- # if self.tools_table.selectedItems():
- # for current_row in self.tools_table.selectedItems():
- # # sometime the header get selected and it has row number -1
- # # we don't want to do anything with the header :)
- # if current_row.row() < 0:
- # continue
- # try:
- # tooluid_copy = int(self.tools_table.item(current_row.row(), 3).text())
- # max_uid += 1
- # self.paint_tools[int(max_uid)] = dict(self.paint_tools[tooluid_copy])
- # for td in self.paint_tools:
- # print("COPIED", self.paint_tools[td])
- # self.build_ui()
- # except AttributeError:
- # self.app.inform.emit("[WARNING_NOTCL] Failed. Select a tool to copy.")
- # self.build_ui()
- # return
- # except Exception as e:
- # log.debug("on_tool_copy() --> " + str(e))
- # # deselect the table
- # # self.ui.geo_tools_table.clearSelection()
- # else:
- # self.app.inform.emit("[WARNING_NOTCL] Failed. Select a tool to copy.")
- # self.build_ui()
- # return
- # else:
- # # we copy all tools in geo_tools_table
- # try:
- # temp_tools = dict(self.paint_tools)
- # max_uid += 1
- # for tooluid in temp_tools:
- # self.paint_tools[int(max_uid)] = dict(temp_tools[tooluid])
- # temp_tools.clear()
- # self.build_ui()
- # except Exception as e:
- # log.debug("on_tool_copy() --> " + str(e))
- #
- # self.app.inform.emit("[success] Tool was copied in the Tool Table.")
- def on_tool_delete(self, rows_to_delete=None, all=None):
- try:
- self.tools_table.itemChanged.disconnect()
- except:
- pass
- deleted_tools_list = []
- if all:
- self.paint_tools.clear()
- self.build_ui()
- return
- if rows_to_delete:
- try:
- for row in rows_to_delete:
- tooluid_del = int(self.tools_table.item(row, 3).text())
- deleted_tools_list.append(tooluid_del)
- except TypeError:
- deleted_tools_list.append(rows_to_delete)
- for t in deleted_tools_list:
- self.paint_tools.pop(t, None)
- self.build_ui()
- return
- try:
- if self.tools_table.selectedItems():
- for row_sel in self.tools_table.selectedItems():
- row = row_sel.row()
- if row < 0:
- continue
- tooluid_del = int(self.tools_table.item(row, 3).text())
- deleted_tools_list.append(tooluid_del)
- for t in deleted_tools_list:
- self.paint_tools.pop(t, None)
- except AttributeError:
- self.app.inform.emit(_("[WARNING_NOTCL] Delete failed. Select a tool to delete."))
- return
- except Exception as e:
- log.debug(str(e))
- self.app.inform.emit(_("[success] Tool(s) deleted from Tool Table."))
- self.build_ui()
- def on_paint_button_click(self):
- self.app.report_usage(_("geometry_on_paint_button"))
- # self.app.call_source = 'paint'
- try:
- overlap = float(self.paintoverlap_entry.get_value())
- except ValueError:
- # try to convert comma to decimal point. if it's still not working error message and return
- try:
- overlap = float(self.paintoverlap_entry.get_value().replace(',', '.'))
- except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number."))
- return
- if overlap >= 1 or overlap < 0:
- self.app.inform.emit(_("[ERROR_NOTCL] Overlap value must be between "
- "0 (inclusive) and 1 (exclusive), "))
- return
- self.app.inform.emit(_("[WARNING_NOTCL] Click inside the desired polygon."))
- connect = self.pathconnect_cb.get_value()
- contour = self.paintcontour_cb.get_value()
- select_method = self.selectmethod_combo.get_value()
- self.obj_name = self.object_combo.currentText()
- # Get source object.
- try:
- self.paint_obj = self.app.collection.get_by_name(str(self.obj_name))
- except:
- self.app.inform.emit(_("[ERROR_NOTCL] Could not retrieve object: %s") % self.obj_name)
- return
- if self.paint_obj is None:
- self.app.inform.emit(_("[ERROR_NOTCL] Object not found: %s") % self.paint_obj)
- return
- # test if the Geometry Object is multigeo and return Fail if True because
- # for now Paint don't work on MultiGeo
- if self.paint_obj.multigeo is True:
- self.app.inform.emit(_("[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."))
- return 'Fail'
- o_name = '%s_multitool_paint' % (self.obj_name)
- if select_method == "all":
- self.paint_poly_all(self.paint_obj,
- outname=o_name,
- overlap=overlap,
- connect=connect,
- contour=contour)
- if select_method == "single":
- self.app.inform.emit(_("[WARNING_NOTCL] Click inside the desired polygon."))
- # use the first tool in the tool table; get the diameter
- tooldia = float('%.4f' % float(self.tools_table.item(0, 1).text()))
- # To be called after clicking on the plot.
- def doit(event):
- # do paint single only for left mouse clicks
- if event.button == 1:
- self.app.inform.emit(_("Painting polygon..."))
- self.app.plotcanvas.vis_disconnect('mouse_press', doit)
- pos = self.app.plotcanvas.vispy_canvas.translate_coords(event.pos)
- self.paint_poly(self.paint_obj,
- inside_pt=[pos[0], pos[1]],
- tooldia=tooldia,
- overlap=overlap,
- connect=connect,
- contour=contour)
- self.app.plotcanvas.vis_connect('mouse_press', self.app.on_mouse_click_over_plot)
- self.app.plotcanvas.vis_disconnect('mouse_press', self.app.on_mouse_click_over_plot)
- self.app.plotcanvas.vis_connect('mouse_press', doit)
- def paint_poly(self, obj, inside_pt, tooldia, overlap,
- outname=None, connect=True,
- contour=True):
- """
- Paints a polygon selected by clicking on its interior.
- Note:
- * The margin is taken directly from the form.
- :param inside_pt: [x, y]
- :param tooldia: Diameter of the painting tool
- :param overlap: Overlap of the tool between passes.
- :param outname: Name of the resulting Geometry Object.
- :param connect: Connect lines to avoid tool lifts.
- :param contour: Paint around the edges.
- :return: None
- """
- # Which polygon.
- # poly = find_polygon(self.solid_geometry, inside_pt)
- poly = obj.find_polygon(inside_pt)
- paint_method = self.paintmethod_combo.get_value()
- try:
- paint_margin = float(self.paintmargin_entry.get_value())
- except ValueError:
- # try to convert comma to decimal point. if it's still not working error message and return
- try:
- paint_margin = float(self.paintmargin_entry.get_value().replace(',', '.'))
- except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number."))
- return
- # No polygon?
- if poly is None:
- self.app.log.warning('No polygon found.')
- self.app.inform.emit(_('[WARNING] No polygon found.'))
- return
- proc = self.app.proc_container.new(_("Painting polygon."))
- name = outname if outname else self.obj_name + "_paint"
- # Initializes the new geometry object
- def gen_paintarea(geo_obj, app_obj):
- assert isinstance(geo_obj, FlatCAMGeometry), \
- "Initializer expected a FlatCAMGeometry, got %s" % type(geo_obj)
- # assert isinstance(app_obj, App)
- def paint_p(polyg):
- if paint_method == "seed":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon2(polyg,
- tooldia=tooldia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=overlap,
- contour=contour,
- connect=connect)
- elif paint_method == "lines":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon3(polyg,
- tooldia=tooldia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=overlap,
- contour=contour,
- connect=connect)
- else:
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon(polyg,
- tooldia=tooldia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=overlap,
- contour=contour,
- connect=connect)
- if cp is not None:
- geo_obj.solid_geometry += list(cp.get_objects())
- return cp
- else:
- self.app.inform.emit(_('[ERROR_NOTCL] Geometry could not be painted completely'))
- return None
- geo_obj.solid_geometry = []
- try:
- a, b, c, d = poly.bounds
- geo_obj.options['xmin'] = a
- geo_obj.options['ymin'] = b
- geo_obj.options['xmax'] = c
- geo_obj.options['ymax'] = d
- except Exception as e:
- log.debug("ToolPaint.paint_poly.gen_paintarea() bounds error --> %s" % str(e))
- return
- try:
- poly_buf = poly.buffer(-paint_margin)
- if isinstance(poly_buf, MultiPolygon):
- cp = []
- for pp in poly_buf:
- cp.append(paint_p(pp))
- else:
- cp = paint_p(poly_buf)
- except Exception as e:
- log.debug("Could not Paint the polygons. %s" % str(e))
- self.app.inform.emit(
- _("[ERROR] Could not do Paint. Try a different combination of parameters. "
- "Or a different strategy of paint\n%s") % str(e))
- return
- if cp is not None:
- if isinstance(cp, list):
- for x in cp:
- geo_obj.solid_geometry += list(x.get_objects())
- else:
- geo_obj.solid_geometry = list(cp.get_objects())
- geo_obj.options["cnctooldia"] = tooldia
- # this turn on the FlatCAMCNCJob plot for multiple tools
- geo_obj.multigeo = False
- geo_obj.multitool = True
- current_uid = int(self.tools_table.item(0, 3).text())
- for k, v in self.paint_tools.items():
- if k == current_uid:
- v['data']['name'] = name
- geo_obj.tools = dict(self.paint_tools)
- # Experimental...
- # print("Indexing...", end=' ')
- # geo_obj.make_index()
- # if errors == 0:
- # print("[success] Paint single polygon Done")
- # self.app.inform.emit("[success] Paint single polygon Done")
- # else:
- # print("[WARNING] Paint single polygon done with errors")
- # self.app.inform.emit("[WARNING] Paint single polygon done with errors. "
- # "%d area(s) could not be painted.\n"
- # "Use different paint parameters or edit the paint geometry and correct"
- # "the issue."
- # % errors)
- def job_thread(app_obj):
- try:
- app_obj.new_object("geometry", name, gen_paintarea)
- except Exception as e:
- proc.done()
- self.app.inform.emit(_('[ERROR_NOTCL] PaintTool.paint_poly() --> %s') % str(e))
- return
- proc.done()
- # focus on Selected Tab
- self.app.ui.notebook.setCurrentWidget(self.app.ui.selected_tab)
- self.app.inform.emit(_("Polygon Paint started ..."))
- # Promise object with the new name
- self.app.collection.promise(name)
- # Background
- self.app.worker_task.emit({'fcn': job_thread, 'params': [self.app]})
- def paint_poly_all(self, obj, overlap, outname=None,
- connect=True, contour=True):
- """
- Paints all polygons in this object.
- :param tooldia:
- :param overlap:
- :param outname:
- :param connect: Connect lines to avoid tool lifts.
- :param contour: Paint around the edges.
- :return:
- """
- paint_method = self.paintmethod_combo.get_value()
- try:
- paint_margin = float(self.paintmargin_entry.get_value())
- except ValueError:
- # try to convert comma to decimal point. if it's still not working error message and return
- try:
- paint_margin = float(self.paintmargin_entry.get_value().replace(',', '.'))
- except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number."))
- return
- proc = self.app.proc_container.new(_("Painting polygon..."))
- name = outname if outname else self.obj_name + "_paint"
- over = overlap
- conn = connect
- cont = contour
- # This is a recursive generator of individual Polygons.
- # Note: Double check correct implementation. Might exit
- # early if it finds something that is not a Polygon?
- # def recurse(geo):
- # try:
- # for subg in geo:
- # for subsubg in recurse(subg):
- # yield subsubg
- # except TypeError:
- # if isinstance(geo, Polygon):
- # yield geo
- #
- # raise StopIteration
- def recurse(geometry, reset=True):
- """
- Creates a list of non-iterable linear geometry objects.
- Results are placed in self.flat_geometry
- :param geometry: Shapely type or list or list of list of such.
- :param reset: Clears the contents of self.flat_geometry.
- """
- if geometry is None:
- return
- if reset:
- self.flat_geometry = []
- ## If iterable, expand recursively.
- try:
- for geo in geometry:
- if geo is not None:
- recurse(geometry=geo, reset=False)
- ## Not iterable, do the actual indexing and add.
- except TypeError:
- self.flat_geometry.append(geometry)
- return self.flat_geometry
- # Initializes the new geometry object
- def gen_paintarea(geo_obj, app_obj):
- assert isinstance(geo_obj, FlatCAMGeometry), \
- "Initializer expected a FlatCAMGeometry, got %s" % type(geo_obj)
- sorted_tools = []
- for row in range(self.tools_table.rowCount()):
- sorted_tools.append(float(self.tools_table.item(row, 1).text()))
- sorted_tools.sort(reverse=True)
- try:
- a, b, c, d = obj.bounds()
- geo_obj.options['xmin'] = a
- geo_obj.options['ymin'] = b
- geo_obj.options['xmax'] = c
- geo_obj.options['ymax'] = d
- except Exception as e:
- log.debug("ToolPaint.paint_poly.gen_paintarea() bounds error --> %s" % str(e))
- return
- total_geometry = []
- current_uid = int(1)
- geo_obj.solid_geometry = []
- for tool_dia in sorted_tools:
- # find the tooluid associated with the current tool_dia so we know where to add the tool solid_geometry
- for k, v in self.paint_tools.items():
- if float('%.4f' % v['tooldia']) == float('%.4f' % tool_dia):
- current_uid = int(k)
- break
- for geo in recurse(obj.solid_geometry):
- try:
- #Polygons are the only really paintable geometries, lines in theory have no area to be painted
- if not isinstance(geo, Polygon):
- continue
- poly_buf = geo.buffer(-paint_margin)
- if paint_method == "seed":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon2(poly_buf,
- tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over,
- contour=cont,
- connect=conn)
- elif paint_method == "lines":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon3(poly_buf,
- tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over,
- contour=cont,
- connect=conn)
- else:
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon(poly_buf,
- tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over,
- contour=cont,
- connect=conn)
- if cp is not None:
- total_geometry += list(cp.get_objects())
- except Exception as e:
- log.debug("Could not Paint the polygons. %s" % str(e))
- self.app.inform.emit(
- _("[ERROR] Could not do Paint All. Try a different combination of parameters. "
- "Or a different Method of paint\n%s") % str(e))
- return
- # add the solid_geometry to the current too in self.paint_tools dictionary and then reset the
- # temporary list that stored that solid_geometry
- self.paint_tools[current_uid]['solid_geometry'] = deepcopy(total_geometry)
- self.paint_tools[current_uid]['data']['name'] = name
- total_geometry[:] = []
- geo_obj.options["cnctooldia"] = tool_dia
- # this turn on the FlatCAMCNCJob plot for multiple tools
- geo_obj.multigeo = True
- geo_obj.multitool = True
- geo_obj.tools.clear()
- geo_obj.tools = dict(self.paint_tools)
- # test if at least one tool has solid_geometry. If no tool has solid_geometry we raise an Exception
- has_solid_geo = 0
- for tooluid in geo_obj.tools:
- if geo_obj.tools[tooluid]['solid_geometry']:
- has_solid_geo += 1
- if has_solid_geo == 0:
- self.app.inform.emit(_("[ERROR] There is no Painting Geometry in the file.\n"
- "Usually it means that the tool diameter is too big for the painted geometry.\n"
- "Change the painting parameters and try again."))
- return
- # Experimental...
- # print("Indexing...", end=' ')
- # geo_obj.make_index()
- self.app.inform.emit(_("[success] Paint All Done."))
- # Initializes the new geometry object
- def gen_paintarea_rest_machining(geo_obj, app_obj):
- assert isinstance(geo_obj, FlatCAMGeometry), \
- "Initializer expected a FlatCAMGeometry, got %s" % type(geo_obj)
- sorted_tools = []
- for row in range(self.tools_table.rowCount()):
- sorted_tools.append(float(self.tools_table.item(row, 1).text()))
- sorted_tools.sort(reverse=True)
- cleared_geo = []
- current_uid = int(1)
- geo_obj.solid_geometry = []
- try:
- a, b, c, d = obj.bounds()
- geo_obj.options['xmin'] = a
- geo_obj.options['ymin'] = b
- geo_obj.options['xmax'] = c
- geo_obj.options['ymax'] = d
- except Exception as e:
- log.debug("ToolPaint.paint_poly.gen_paintarea() bounds error --> %s" % str(e))
- return
- for tool_dia in sorted_tools:
- for geo in recurse(obj.solid_geometry):
- try:
- geo = Polygon(geo) if not isinstance(geo, Polygon) else geo
- poly_buf = geo.buffer(-paint_margin)
- if paint_method == "standard":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon(poly_buf, tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over, contour=cont, connect=conn)
- elif paint_method == "seed":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon2(poly_buf, tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over, contour=cont, connect=conn)
- elif paint_method == "lines":
- # Type(cp) == FlatCAMRTreeStorage | None
- cp = self.clear_polygon3(poly_buf, tooldia=tool_dia,
- steps_per_circle=self.app.defaults["geometry_circle_steps"],
- overlap=over, contour=cont, connect=conn)
- if cp is not None:
- cleared_geo += list(cp.get_objects())
- except Exception as e:
- log.debug("Could not Paint the polygons. %s" % str(e))
- self.app.inform.emit(
- _("[ERROR] Could not do Paint All. Try a different combination of parameters. "
- "Or a different Method of paint\n%s") % str(e))
- return
- # find the tooluid associated with the current tool_dia so we know where to add the tool solid_geometry
- for k, v in self.paint_tools.items():
- if float('%.4f' % v['tooldia']) == float('%.4f' % tool_dia):
- current_uid = int(k)
- break
- # add the solid_geometry to the current too in self.paint_tools dictionary and then reset the
- # temporary list that stored that solid_geometry
- self.paint_tools[current_uid]['solid_geometry'] = deepcopy(cleared_geo)
- self.paint_tools[current_uid]['data']['name'] = name
- cleared_geo[:] = []
- geo_obj.options["cnctooldia"] = tool_dia
- # this turn on the FlatCAMCNCJob plot for multiple tools
- geo_obj.multigeo = True
- geo_obj.multitool = True
- geo_obj.tools.clear()
- geo_obj.tools = dict(self.paint_tools)
- # test if at least one tool has solid_geometry. If no tool has solid_geometry we raise an Exception
- has_solid_geo = 0
- for tooluid in geo_obj.tools:
- if geo_obj.tools[tooluid]['solid_geometry']:
- has_solid_geo += 1
- if has_solid_geo == 0:
- self.app.inform.emit(_("[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
- "Usually it means that the tool diameter is too big for the painted geometry.\n"
- "Change the painting parameters and try again."))
- return
- # Experimental...
- # print("Indexing...", end=' ')
- # geo_obj.make_index()
- self.app.inform.emit(_("[success] Paint All with Rest-Machining done."))
- def job_thread(app_obj):
- try:
- if self.rest_cb.isChecked():
- app_obj.new_object("geometry", name, gen_paintarea_rest_machining)
- else:
- app_obj.new_object("geometry", name, gen_paintarea)
- except Exception as e:
- proc.done()
- traceback.print_stack()
- return
- proc.done()
- # focus on Selected Tab
- self.app.ui.notebook.setCurrentWidget(self.app.ui.selected_tab)
- self.app.inform.emit(_("Polygon Paint started ..."))
- # Promise object with the new name
- self.app.collection.promise(name)
- # Background
- self.app.worker_task.emit({'fcn': job_thread, 'params': [self.app]})
- def reset_fields(self):
- self.object_combo.setRootModelIndex(self.app.collection.index(2, 0, QtCore.QModelIndex()))
|