| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534 |
- from PyQt5 import QtGui, QtCore, QtWidgets
- from appGUI.GUIElements import FCEntry, FCButton, FCDoubleSpinner, FCComboBox, FCCheckBox, FCSpinner, \
- FCTree, RadioSet, FCFileSaveDialog, FCLabel, FCComboBox2
- from camlib import to_dict
- import sys
- import json
- from copy import deepcopy
- from datetime import datetime
- import math
- import gettext
- import appTranslation as fcTranslate
- import builtins
- fcTranslate.apply_language('strings')
- if '_' not in builtins.__dict__:
- _ = gettext.gettext
- class ToolsDB2UI:
-
- def __init__(self, app, grid_layout):
- self.app = app
- self.decimals = self.app.decimals
- self.offset_item_options = ["Path", "In", "Out", "Custom"]
- self.type_item_options = [_("Iso"), _("Rough"), _("Finish")]
- self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
- settings = QtCore.QSettings("Open Source", "FlatCAM")
- if settings.contains("machinist"):
- self.machinist_setting = settings.value('machinist', type=int)
- else:
- self.machinist_setting = 0
- self.g_lay = grid_layout
- tree_layout = QtWidgets.QVBoxLayout()
- self.g_lay.addLayout(tree_layout, 0, 0)
- self.tree_widget = FCTree(columns=2, header_hidden=False, protected_column=[0])
- self.tree_widget.setHeaderLabels([_("ID"), _("Tool Name")])
- self.tree_widget.setIndentation(0)
- self.tree_widget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
- self.tree_widget.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
- # set alternating colors
- # self.tree_widget.setAlternatingRowColors(True)
- # p = QtGui.QPalette()
- # p.setColor(QtGui.QPalette.AlternateBase, QtGui.QColor(226, 237, 253) )
- # self.tree_widget.setPalette(p)
- self.tree_widget.setSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.MinimumExpanding)
- tree_layout.addWidget(self.tree_widget)
- param_hlay = QtWidgets.QHBoxLayout()
- param_area = QtWidgets.QScrollArea()
- param_widget = QtWidgets.QWidget()
- param_widget.setLayout(param_hlay)
- param_area.setWidget(param_widget)
- param_area.setWidgetResizable(True)
- self.g_lay.addWidget(param_area, 0, 1)
- # ###########################################################################
- # ############## The UI form ################################################
- # ###########################################################################
- # Tool description box
- self.tool_description_box = QtWidgets.QGroupBox()
- self.tool_description_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.description_vlay = QtWidgets.QVBoxLayout()
- self.tool_description_box.setTitle(_("Tool Description"))
- self.tool_description_box.setMinimumWidth(250)
- # Milling box
- self.milling_box = QtWidgets.QGroupBox()
- self.milling_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.milling_vlay = QtWidgets.QVBoxLayout()
- self.milling_box.setTitle(_("Milling Parameters"))
- self.milling_box.setMinimumWidth(250)
- # NCC TOOL BOX
- self.ncc_box = QtWidgets.QGroupBox()
- self.ncc_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.ncc_vlay = QtWidgets.QVBoxLayout()
- self.ncc_box.setTitle(_("NCC Parameters"))
- self.ncc_box.setMinimumWidth(250)
- # PAINT TOOL BOX
- self.paint_box = QtWidgets.QGroupBox()
- self.paint_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.paint_vlay = QtWidgets.QVBoxLayout()
- self.paint_box.setTitle(_("Paint Parameters"))
- self.paint_box.setMinimumWidth(250)
- # ISOLATION TOOL BOX
- self.iso_box = QtWidgets.QGroupBox()
- self.iso_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.iso_vlay = QtWidgets.QVBoxLayout()
- self.iso_box.setTitle(_("Isolation Parameters"))
- self.iso_box.setMinimumWidth(250)
- # DRILLING TOOL BOX
- self.drill_box = QtWidgets.QGroupBox()
- self.drill_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.drill_vlay = QtWidgets.QVBoxLayout()
- self.drill_box.setTitle(_("Drilling Parameters"))
- self.drill_box.setMinimumWidth(250)
- # CUTOUT TOOL BOX
- self.cutout_box = QtWidgets.QGroupBox()
- self.cutout_box.setStyleSheet("""
- QGroupBox
- {
- font-size: 16px;
- font-weight: bold;
- }
- """)
- self.cutout_vlay = QtWidgets.QVBoxLayout()
- self.cutout_box.setTitle(_("Cutout Parameters"))
- self.cutout_box.setMinimumWidth(250)
- # Layout Constructor
- self.tool_description_box.setLayout(self.description_vlay)
- self.milling_box.setLayout(self.milling_vlay)
- self.ncc_box.setLayout(self.ncc_vlay)
- self.paint_box.setLayout(self.paint_vlay)
- self.iso_box.setLayout(self.iso_vlay)
- self.drill_box.setLayout(self.drill_vlay)
- self.cutout_box.setLayout(self.cutout_vlay)
- tools_vlay = QtWidgets.QVBoxLayout()
- tools_vlay.addWidget(self.iso_box)
- tools_vlay.addWidget(self.paint_box)
- tools_vlay.addWidget(self.ncc_box)
- tools_vlay.addWidget(self.cutout_box)
- tools_vlay.addStretch()
- descript_vlay = QtWidgets.QVBoxLayout()
- descript_vlay.addWidget(self.tool_description_box)
- descript_vlay.addLayout(tools_vlay)
- descript_vlay.addStretch()
- mill_vlay = QtWidgets.QVBoxLayout()
- mill_vlay.addWidget(self.milling_box)
- mill_vlay.addStretch()
- drilling_vlay = QtWidgets.QVBoxLayout()
- drilling_vlay.addWidget(self.drill_box)
- param_hlay.addLayout(descript_vlay)
- param_hlay.addLayout(drilling_vlay)
- param_hlay.addLayout(tools_vlay)
- # always visible, always to be included last
- param_hlay.addLayout(mill_vlay)
- param_hlay.addStretch()
- # ###########################################################################
- # ################ Tool UI form #############################################
- # ###########################################################################
- self.grid_tool = QtWidgets.QGridLayout()
- self.description_vlay.addLayout(self.grid_tool)
- self.grid_tool.setColumnStretch(0, 0)
- self.grid_tool.setColumnStretch(1, 1)
- self.description_vlay.addStretch()
- # Tool Name
- self.name_label = FCLabel('<span style="color:red;"><b>%s:</b></span>' % _('Name'))
- self.name_label.setToolTip(
- _("Tool name.\n"
- "This is not used in the app, it's function\n"
- "is to serve as a note for the user."))
- self.name_entry = FCEntry()
- self.name_entry.setObjectName('gdb_name')
- self.grid_tool.addWidget(self.name_label, 0, 0)
- self.grid_tool.addWidget(self.name_entry, 0, 1)
- # Tool Dia
- self.dia_label = FCLabel('%s:' % _('Diameter'))
- self.dia_label.setToolTip(
- _("Tool Diameter."))
- self.dia_entry = FCDoubleSpinner()
- self.dia_entry.set_range(-9999.9999, 9999.9999)
- self.dia_entry.set_precision(self.decimals)
- self.dia_entry.setObjectName('gdb_dia')
- self.grid_tool.addWidget(self.dia_label, 1, 0)
- self.grid_tool.addWidget(self.dia_entry, 1, 1)
- # Tool Tolerance
- self.tol_label = FCLabel("<b>%s:</b>" % _("Diameter Tolerance"))
- self.tol_label.setToolTip(
- _("Tool tolerance. This tool will be used if the desired tool diameter\n"
- "is within the tolerance specified here.")
- )
- self.grid_tool.addWidget(self.tol_label, 2, 0, 1, 2)
- # Tolerance Min Limit
- self.min_limit_label = FCLabel('%s:' % _("Min"))
- self.min_limit_label.setToolTip(
- _("Set the tool tolerance minimum.")
- )
- self.tol_min_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.tol_min_entry.set_precision(self.decimals)
- self.tol_min_entry.set_range(0, 9999.9999)
- self.tol_min_entry.setSingleStep(0.1)
- self.tol_min_entry.setObjectName("gdb_tol_min")
- self.grid_tool.addWidget(self.min_limit_label, 4, 0)
- self.grid_tool.addWidget(self.tol_min_entry, 4, 1)
- # Tolerance Min Limit
- self.max_limit_label = FCLabel('%s:' % _("Max"))
- self.max_limit_label.setToolTip(
- _("Set the tool tolerance maximum.")
- )
- self.tol_max_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.tol_max_entry.set_precision(self.decimals)
- self.tol_max_entry.set_range(0, 9999.9999)
- self.tol_max_entry.setSingleStep(0.1)
- self.tol_max_entry.setObjectName("gdb_tol_max")
- self.grid_tool.addWidget(self.max_limit_label, 6, 0)
- self.grid_tool.addWidget(self.tol_max_entry, 6, 1)
- # Tool Object Type
- self.tool_op_label = FCLabel('<b>%s:</b>' % _('Operation'))
- self.tool_op_label.setToolTip(
- _("The kind of Application Tool where this tool is to be used."))
- self.tool_op_combo = FCComboBox2()
- self.tool_op_combo.addItems(
- [_("General"), _("Milling"), _("Drilling"), _('Isolation'), _('Paint'), _('NCC'), _('Cutout')])
- self.tool_op_combo.setObjectName('gdb_tool_target')
- self.grid_tool.addWidget(self.tool_op_label, 8, 0)
- self.grid_tool.addWidget(self.tool_op_combo, 8, 1)
- # ###########################################################################
- # ############### MILLING UI form ###########################################
- # ###########################################################################
- self.grid0 = QtWidgets.QGridLayout()
- self.milling_vlay.addLayout(self.grid0)
- self.grid0.setColumnStretch(0, 0)
- self.grid0.setColumnStretch(1, 1)
- self.milling_vlay.addStretch()
- # Tool Shape
- self.shape_label = FCLabel('%s:' % _('Shape'))
- self.shape_label.setToolTip(
- _("Tool Shape. \n"
- "Can be:\n"
- "C1 ... C4 = circular tool with x flutes\n"
- "B = ball tip milling tool\n"
- "V = v-shape milling tool"))
- self.mill_shape_combo = FCComboBox()
- self.mill_shape_combo.addItems(self.tool_type_item_options)
- self.mill_shape_combo.setObjectName('gdb_shape')
- self.grid0.addWidget(self.shape_label, 2, 0)
- self.grid0.addWidget(self.mill_shape_combo, 2, 1)
- # V-Dia
- self.vdia_label = FCLabel('%s:' % _("V-Dia"))
- self.vdia_label.setToolTip(
- _("V-Dia.\n"
- "Diameter of the tip for V-Shape Tools."))
- self.mill_vdia_entry = FCDoubleSpinner()
- self.mill_vdia_entry.set_range(0.0000, 9999.9999)
- self.mill_vdia_entry.set_precision(self.decimals)
- self.mill_vdia_entry.setObjectName('gdb_vdia')
- self.grid0.addWidget(self.vdia_label, 4, 0)
- self.grid0.addWidget(self.mill_vdia_entry, 4, 1)
- # V-Angle
- self.vangle_label = FCLabel('%s:' % _("V-Angle"))
- self.vangle_label.setToolTip(
- _("V-Agle.\n"
- "Angle at the tip for the V-Shape Tools."))
- self.mill_vangle_entry = FCDoubleSpinner()
- self.mill_vangle_entry.set_range(-360.0, 360.0)
- self.mill_vangle_entry.set_precision(self.decimals)
- self.mill_vangle_entry.setObjectName('gdb_vangle')
- self.grid0.addWidget(self.vangle_label, 6, 0)
- self.grid0.addWidget(self.mill_vangle_entry, 6, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid0.addWidget(separator_line, 8, 0, 1, 2)
- # Tool Type
- self.type_label = FCLabel('%s:' % _("Tool Type"))
- self.type_label.setToolTip(
- _("Tool Type.\n"
- "Can be:\n"
- "Iso = isolation cut\n"
- "Rough = rough cut, low feedrate, multiple passes\n"
- "Finish = finishing cut, high feedrate"))
- self.mill_type_combo = FCComboBox()
- self.mill_type_combo.addItems(self.type_item_options)
- self.mill_type_combo.setObjectName('gdb_type')
- self.grid0.addWidget(self.type_label, 10, 0)
- self.grid0.addWidget(self.mill_type_combo, 10, 1)
- # Tool Offset
- self.tooloffset_label = FCLabel('%s:' % _('Tool Offset'))
- self.tooloffset_label.setToolTip(
- _("Tool Offset.\n"
- "Can be of a few types:\n"
- "Path = zero offset\n"
- "In = offset inside by half of tool diameter\n"
- "Out = offset outside by half of tool diameter\n"
- "Custom = custom offset using the Custom Offset value"))
- self.mill_tooloffset_combo = FCComboBox()
- self.mill_tooloffset_combo.addItems(self.offset_item_options)
- self.mill_tooloffset_combo.setObjectName('gdb_tool_offset')
- self.grid0.addWidget(self.tooloffset_label, 12, 0)
- self.grid0.addWidget(self.mill_tooloffset_combo, 12, 1)
- # Custom Offset
- self.custom_offset_label = FCLabel('%s:' % _("Custom Offset"))
- self.custom_offset_label.setToolTip(
- _("Custom Offset.\n"
- "A value to be used as offset from the current path."))
- self.mill_custom_offset_entry = FCDoubleSpinner()
- self.mill_custom_offset_entry.set_range(-9999.9999, 9999.9999)
- self.mill_custom_offset_entry.set_precision(self.decimals)
- self.mill_custom_offset_entry.setObjectName('gdb_custom_offset')
- self.grid0.addWidget(self.custom_offset_label, 14, 0)
- self.grid0.addWidget(self.mill_custom_offset_entry, 14, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid0.addWidget(separator_line, 16, 0, 1, 2)
- # Cut Z
- self.cutz_label = FCLabel('%s:' % _("Cut Z"))
- self.cutz_label.setToolTip(
- _("Cutting Depth.\n"
- "The depth at which to cut into material."))
- self.mill_cutz_entry = FCDoubleSpinner()
- self.mill_cutz_entry.set_range(-9999.9999, 9999.9999)
- self.mill_cutz_entry.set_precision(self.decimals)
- self.mill_cutz_entry.setObjectName('gdb_cutz')
- self.grid0.addWidget(self.cutz_label, 18, 0)
- self.grid0.addWidget(self.mill_cutz_entry, 18, 1)
- # Multi Depth
- self.multidepth_label = FCLabel('%s:' % _("MultiDepth"))
- self.multidepth_label.setToolTip(
- _("Multi Depth.\n"
- "Selecting this will allow cutting in multiple passes,\n"
- "each pass adding a DPP parameter depth."))
- self.mill_multidepth_cb = FCCheckBox()
- self.mill_multidepth_cb.setObjectName('gdb_multidepth')
- self.grid0.addWidget(self.multidepth_label, 20, 0)
- self.grid0.addWidget(self.mill_multidepth_cb, 20, 1)
- # Depth Per Pass
- self.dpp_label = FCLabel('%s:' % _("DPP"))
- self.dpp_label.setToolTip(
- _("DPP. Depth per Pass.\n"
- "The value used to cut into material on each pass."))
- self.mill_multidepth_entry = FCDoubleSpinner()
- self.mill_multidepth_entry.set_range(-9999.9999, 9999.9999)
- self.mill_multidepth_entry.set_precision(self.decimals)
- self.mill_multidepth_entry.setObjectName('gdb_multidepth_entry')
- self.grid0.addWidget(self.dpp_label, 22, 0)
- self.grid0.addWidget(self.mill_multidepth_entry, 22, 1)
- # Travel Z
- self.travelz_label = FCLabel('%s:' % _("Travel Z"))
- self.travelz_label.setToolTip(
- _("Clearance Height.\n"
- "Height at which the milling bit will travel between cuts,\n"
- "above the surface of the material, avoiding all fixtures."))
- self.mill_travelz_entry = FCDoubleSpinner()
- self.mill_travelz_entry.set_range(-9999.9999, 9999.9999)
- self.mill_travelz_entry.set_precision(self.decimals)
- self.mill_travelz_entry.setObjectName('gdb_travelz')
- self.grid0.addWidget(self.travelz_label, 24, 0)
- self.grid0.addWidget(self.mill_travelz_entry, 24, 1)
- # Extra Cut
- self.ecut_label = FCLabel('%s:' % _("ExtraCut"))
- self.ecut_label.setToolTip(
- _("Extra Cut.\n"
- "If checked, after a isolation is finished an extra cut\n"
- "will be added where the start and end of isolation meet\n"
- "such as that this point is covered by this extra cut to\n"
- "ensure a complete isolation."))
- self.mill_ecut_cb = FCCheckBox()
- self.mill_ecut_cb.setObjectName('gdb_ecut')
- self.grid0.addWidget(self.ecut_label, 26, 0)
- self.grid0.addWidget(self.mill_ecut_cb, 26, 1)
- # Extra Cut Length
- self.ecut_length_label = FCLabel('%s:' % _("E-Cut Length"))
- self.ecut_length_label.setToolTip(
- _("Extra Cut length.\n"
- "If checked, after a isolation is finished an extra cut\n"
- "will be added where the start and end of isolation meet\n"
- "such as that this point is covered by this extra cut to\n"
- "ensure a complete isolation. This is the length of\n"
- "the extra cut."))
- self.mill_ecut_length_entry = FCDoubleSpinner()
- self.mill_ecut_length_entry.set_range(0.0000, 9999.9999)
- self.mill_ecut_length_entry.set_precision(self.decimals)
- self.mill_ecut_length_entry.setObjectName('gdb_ecut_length')
- self.grid0.addWidget(self.ecut_length_label, 28, 0)
- self.grid0.addWidget(self.mill_ecut_length_entry, 28, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid0.addWidget(separator_line, 30, 0, 1, 2)
- # Feedrate X-Y
- self.frxy_label = FCLabel('%s:' % _("Feedrate X-Y"))
- self.frxy_label.setToolTip(
- _("Feedrate X-Y. Feedrate\n"
- "The speed on XY plane used while cutting into material."))
- self.mill_frxy_entry = FCDoubleSpinner()
- self.mill_frxy_entry.set_range(-999999.9999, 999999.9999)
- self.mill_frxy_entry.set_precision(self.decimals)
- self.mill_frxy_entry.setObjectName('gdb_frxy')
- self.grid0.addWidget(self.frxy_label, 32, 0)
- self.grid0.addWidget(self.mill_frxy_entry, 32, 1)
- # Feedrate Z
- self.frz_label = FCLabel('%s:' % _("Feedrate Z"))
- self.frz_label.setToolTip(
- _("Feedrate Z\n"
- "The speed on Z plane."))
- self.mill_frz_entry = FCDoubleSpinner()
- self.mill_frz_entry.set_range(-999999.9999, 999999.9999)
- self.mill_frz_entry.set_precision(self.decimals)
- self.mill_frz_entry.setObjectName('gdb_frz')
- self.grid0.addWidget(self.frz_label, 34, 0)
- self.grid0.addWidget(self.mill_frz_entry, 34, 1)
- # Feedrate Rapids
- self.frapids_label = FCLabel('%s:' % _("FR Rapids"))
- self.frapids_label.setToolTip(
- _("FR Rapids. Feedrate Rapids\n"
- "Speed used while moving as fast as possible.\n"
- "This is used only by some devices that can't use\n"
- "the G0 g-code command. Mostly 3D printers."))
- self.mill_frapids_entry = FCDoubleSpinner()
- self.mill_frapids_entry.set_range(0.0000, 9999.9999)
- self.mill_frapids_entry.set_precision(self.decimals)
- self.mill_frapids_entry.setObjectName('gdb_frapids')
- self.grid0.addWidget(self.frapids_label, 36, 0)
- self.grid0.addWidget(self.mill_frapids_entry, 36, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid0.addWidget(separator_line, 38, 0, 1, 2)
- # Spindle Spped
- self.spindle_label = FCLabel('%s:' % _("Spindle Speed"))
- self.spindle_label.setToolTip(
- _("Spindle Speed.\n"
- "If it's left empty it will not be used.\n"
- "The speed of the spindle in RPM."))
- self.mill_spindle_entry = FCDoubleSpinner()
- self.mill_spindle_entry.set_range(-999999.9999, 999999.9999)
- self.mill_spindle_entry.set_precision(self.decimals)
- self.mill_spindle_entry.setObjectName('gdb_spindle')
- self.grid0.addWidget(self.spindle_label, 40, 0)
- self.grid0.addWidget(self.mill_spindle_entry, 40, 1)
- # Dwell
- self.dwell_label = FCLabel('%s:' % _("Dwell"))
- self.dwell_label.setToolTip(
- _("Dwell.\n"
- "Check this if a delay is needed to allow\n"
- "the spindle motor to reach its set speed."))
- self.mill_dwell_cb = FCCheckBox()
- self.mill_dwell_cb.setObjectName('gdb_dwell')
- self.grid0.addWidget(self.dwell_label, 42, 0)
- self.grid0.addWidget(self.mill_dwell_cb, 42, 1)
- # Dwell Time
- self.dwelltime_label = FCLabel('%s:' % _("Dwelltime"))
- self.dwelltime_label.setToolTip(
- _("Dwell Time.\n"
- "A delay used to allow the motor spindle reach its set speed."))
- self.mill_dwelltime_entry = FCDoubleSpinner()
- self.mill_dwelltime_entry.set_range(0.0000, 9999.9999)
- self.mill_dwelltime_entry.set_precision(self.decimals)
- self.mill_dwelltime_entry.setObjectName('gdb_dwelltime')
- self.grid0.addWidget(self.dwelltime_label, 44, 0)
- self.grid0.addWidget(self.mill_dwelltime_entry, 44, 1)
- # ###########################################################################
- # ############### NCC UI form ###############################################
- # ###########################################################################
- self.grid2 = QtWidgets.QGridLayout()
- self.ncc_vlay.addLayout(self.grid2)
- self.grid2.setColumnStretch(0, 0)
- self.grid2.setColumnStretch(1, 1)
- self.ncc_vlay.addStretch()
- # Operation
- op_label = FCLabel('%s:' % _('Operation'))
- op_label.setToolTip(
- _("The 'Operation' can be:\n"
- "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
- "If it's not successful then the non-copper clearing will fail, too.\n"
- "- Clear -> the regular non-copper clearing.")
- )
- self.ncc_op_radio = RadioSet([
- {"label": _("Clear"), "value": "clear"},
- {"label": _("Isolation"), "value": "iso"}
- ], orientation='horizontal', stretch=False)
- self.ncc_op_radio.setObjectName("gdb_n_operation")
- self.grid2.addWidget(op_label, 13, 0)
- self.grid2.addWidget(self.ncc_op_radio, 13, 1)
- # Milling Type Radio Button
- self.milling_type_label = FCLabel('%s:' % _('Milling Type'))
- self.milling_type_label.setToolTip(
- _("Milling type when the selected tool is of type: 'iso_op':\n"
- "- climb / best for precision milling and to reduce tool usage\n"
- "- conventional / useful when there is no backlash compensation")
- )
- self.ncc_milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
- {'label': _('Conventional'), 'value': 'cv'}])
- self.ncc_milling_type_radio.setToolTip(
- _("Milling type when the selected tool is of type: 'iso_op':\n"
- "- climb / best for precision milling and to reduce tool usage\n"
- "- conventional / useful when there is no backlash compensation")
- )
- self.ncc_milling_type_radio.setObjectName("gdb_n_milling_type")
- self.grid2.addWidget(self.milling_type_label, 14, 0)
- self.grid2.addWidget(self.ncc_milling_type_radio, 14, 1)
- # Overlap Entry
- nccoverlabel = FCLabel('%s:' % _('Overlap'))
- nccoverlabel.setToolTip(
- _("How much (percentage) of the tool width to overlap each tool pass.\n"
- "Adjust the value starting with lower values\n"
- "and increasing it if areas that should be cleared are still \n"
- "not cleared.\n"
- "Lower values = faster processing, faster execution on CNC.\n"
- "Higher values = slow processing and slow execution on CNC\n"
- "due of too many paths.")
- )
- self.ncc_overlap_entry = FCDoubleSpinner(suffix='%')
- self.ncc_overlap_entry.set_precision(self.decimals)
- self.ncc_overlap_entry.setWrapping(True)
- self.ncc_overlap_entry.setRange(0.000, 99.9999)
- self.ncc_overlap_entry.setSingleStep(0.1)
- self.ncc_overlap_entry.setObjectName("gdb_n_overlap")
- self.grid2.addWidget(nccoverlabel, 15, 0)
- self.grid2.addWidget(self.ncc_overlap_entry, 15, 1)
- # Margin
- nccmarginlabel = FCLabel('%s:' % _('Margin'))
- nccmarginlabel.setToolTip(
- _("Bounding box margin.")
- )
- self.ncc_margin_entry = FCDoubleSpinner()
- self.ncc_margin_entry.set_precision(self.decimals)
- self.ncc_margin_entry.set_range(-9999.9999, 9999.9999)
- self.ncc_margin_entry.setObjectName("gdb_n_margin")
- self.grid2.addWidget(nccmarginlabel, 16, 0)
- self.grid2.addWidget(self.ncc_margin_entry, 16, 1)
- # Method
- methodlabel = FCLabel('%s:' % _('Method'))
- methodlabel.setToolTip(
- _("Algorithm for copper clearing:\n"
- "- Standard: Fixed step inwards.\n"
- "- Seed-based: Outwards from seed.\n"
- "- Line-based: Parallel lines.")
- )
- self.ncc_method_combo = FCComboBox2()
- self.ncc_method_combo.addItems(
- [_("Standard"), _("Seed"), _("Lines"), _("Combo")]
- )
- self.ncc_method_combo.setObjectName("gdb_n_method")
- self.grid2.addWidget(methodlabel, 17, 0)
- self.grid2.addWidget(self.ncc_method_combo, 17, 1)
- # Connect lines
- self.ncc_connect_cb = FCCheckBox('%s' % _("Connect"))
- self.ncc_connect_cb.setObjectName("gdb_n_connect")
- self.ncc_connect_cb.setToolTip(
- _("Draw lines between resulting\n"
- "segments to minimize tool lifts.")
- )
- self.grid2.addWidget(self.ncc_connect_cb, 18, 0)
- # Contour
- self.ncc_contour_cb = FCCheckBox('%s' % _("Contour"))
- self.ncc_contour_cb.setObjectName("gdb_n_contour")
- self.ncc_contour_cb.setToolTip(
- _("Cut around the perimeter of the polygon\n"
- "to trim rough edges.")
- )
- self.grid2.addWidget(self.ncc_contour_cb, 18, 1)
- # ## NCC Offset choice
- self.ncc_choice_offset_cb = FCCheckBox('%s' % _("Offset"))
- self.ncc_choice_offset_cb.setObjectName("gdb_n_offset")
- self.ncc_choice_offset_cb.setToolTip(
- _("If used, it will add an offset to the copper features.\n"
- "The copper clearing will finish to a distance\n"
- "from the copper features.\n"
- "The value can be between 0 and 10 FlatCAM units.")
- )
- self.grid2.addWidget(self.ncc_choice_offset_cb, 19, 0)
- # ## NCC Offset Entry
- self.ncc_offset_spinner = FCDoubleSpinner()
- self.ncc_offset_spinner.set_range(0.00, 10.00)
- self.ncc_offset_spinner.set_precision(4)
- self.ncc_offset_spinner.setWrapping(True)
- self.ncc_offset_spinner.setObjectName("gdb_n_offset_value")
- units = self.app.defaults['units'].upper()
- if units == 'MM':
- self.ncc_offset_spinner.setSingleStep(0.1)
- else:
- self.ncc_offset_spinner.setSingleStep(0.01)
- self.grid2.addWidget(self.ncc_offset_spinner, 19, 1)
- # ###########################################################################
- # ############### Paint UI form #############################################
- # ###########################################################################
- self.grid3 = QtWidgets.QGridLayout()
- self.paint_vlay.addLayout(self.grid3)
- self.grid3.setColumnStretch(0, 0)
- self.grid3.setColumnStretch(1, 1)
- self.paint_vlay.addStretch()
- # Overlap
- ovlabel = FCLabel('%s:' % _('Overlap'))
- ovlabel.setToolTip(
- _("How much (percentage) of the tool width to overlap each tool pass.\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 CNC.\n"
- "Higher values = slow processing and slow execution on CNC\n"
- "due of too many paths.")
- )
- self.paint_overlap_entry = FCDoubleSpinner(suffix='%')
- self.paint_overlap_entry.set_precision(3)
- self.paint_overlap_entry.setWrapping(True)
- self.paint_overlap_entry.setRange(0.0000, 99.9999)
- self.paint_overlap_entry.setSingleStep(0.1)
- self.paint_overlap_entry.setObjectName('gdb_p_overlap')
- self.grid3.addWidget(ovlabel, 1, 0)
- self.grid3.addWidget(self.paint_overlap_entry, 1, 1)
- # Margin
- marginlabel = FCLabel('%s:' % _('Offset'))
- marginlabel.setToolTip(
- _("Distance by which to avoid\n"
- "the edges of the polygon to\n"
- "be painted.")
- )
- self.paint_offset_entry = FCDoubleSpinner()
- self.paint_offset_entry.set_precision(self.decimals)
- self.paint_offset_entry.set_range(-9999.9999, 9999.9999)
- self.paint_offset_entry.setObjectName('gdb_p_offset')
- self.grid3.addWidget(marginlabel, 2, 0)
- self.grid3.addWidget(self.paint_offset_entry, 2, 1)
- # Method
- methodlabel = FCLabel('%s:' % _('Method'))
- methodlabel.setToolTip(
- _("Algorithm for painting:\n"
- "- Standard: Fixed step inwards.\n"
- "- Seed-based: Outwards from seed.\n"
- "- Line-based: Parallel lines.\n"
- "- Laser-lines: Active only for Gerber objects.\n"
- "Will create lines that follow the traces.\n"
- "- Combo: In case of failure a new method will be picked from the above\n"
- "in the order specified.")
- )
- self.paint_method_combo = FCComboBox2()
- self.paint_method_combo.addItems(
- [_("Standard"), _("Seed"), _("Lines"), _("Laser_lines"), _("Combo")]
- )
- idx = self.paint_method_combo.findText(_("Laser_lines"))
- self.paint_method_combo.model().item(idx).setEnabled(False)
- self.paint_method_combo.setObjectName('gdb_p_method')
- self.grid3.addWidget(methodlabel, 7, 0)
- self.grid3.addWidget(self.paint_method_combo, 7, 1)
- # Connect lines
- self.path_connect_cb = FCCheckBox('%s' % _("Connect"))
- self.path_connect_cb.setObjectName('gdb_p_connect')
- self.path_connect_cb.setToolTip(
- _("Draw lines between resulting\n"
- "segments to minimize tool lifts.")
- )
- self.paint_contour_cb = FCCheckBox('%s' % _("Contour"))
- self.paint_contour_cb.setObjectName('gdb_p_contour')
- self.paint_contour_cb.setToolTip(
- _("Cut around the perimeter of the polygon\n"
- "to trim rough edges.")
- )
- self.grid3.addWidget(self.path_connect_cb, 10, 0)
- self.grid3.addWidget(self.paint_contour_cb, 10, 1)
- # ###########################################################################
- # ############### Isolation UI form #########################################
- # ###########################################################################
- self.grid4 = QtWidgets.QGridLayout()
- self.iso_vlay.addLayout(self.grid4)
- self.grid4.setColumnStretch(0, 0)
- self.grid4.setColumnStretch(1, 1)
- self.iso_vlay.addStretch()
- # Passes
- passlabel = FCLabel('%s:' % _('Passes'))
- passlabel.setToolTip(
- _("Width of the isolation gap in\n"
- "number (integer) of tool widths.")
- )
- self.iso_passes_entry = FCSpinner()
- self.iso_passes_entry.set_range(1, 999)
- self.iso_passes_entry.setObjectName("gdb_i_passes")
- self.grid4.addWidget(passlabel, 0, 0)
- self.grid4.addWidget(self.iso_passes_entry, 0, 1)
- # Overlap Entry
- overlabel = FCLabel('%s:' % _('Overlap'))
- overlabel.setToolTip(
- _("How much (percentage) of the tool width to overlap each tool pass.")
- )
- self.iso_overlap_entry = FCDoubleSpinner(suffix='%')
- self.iso_overlap_entry.set_precision(self.decimals)
- self.iso_overlap_entry.setWrapping(True)
- self.iso_overlap_entry.set_range(0.0000, 99.9999)
- self.iso_overlap_entry.setSingleStep(0.1)
- self.iso_overlap_entry.setObjectName("gdb_i_overlap")
- self.grid4.addWidget(overlabel, 2, 0)
- self.grid4.addWidget(self.iso_overlap_entry, 2, 1)
- # Milling Type Radio Button
- self.iso_milling_type_label = FCLabel('%s:' % _('Milling Type'))
- self.iso_milling_type_label.setToolTip(
- _("Milling type when the selected tool is of type: 'iso_op':\n"
- "- climb / best for precision milling and to reduce tool usage\n"
- "- conventional / useful when there is no backlash compensation")
- )
- self.iso_milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
- {'label': _('Conventional'), 'value': 'cv'}])
- self.iso_milling_type_radio.setToolTip(
- _("Milling type when the selected tool is of type: 'iso_op':\n"
- "- climb / best for precision milling and to reduce tool usage\n"
- "- conventional / useful when there is no backlash compensation")
- )
- self.iso_milling_type_radio.setObjectName("gdb_i_milling_type")
- self.grid4.addWidget(self.iso_milling_type_label, 4, 0)
- self.grid4.addWidget(self.iso_milling_type_radio, 4, 1)
- # Follow
- self.follow_label = FCLabel('%s:' % _('Follow'))
- self.follow_label.setToolTip(
- _("Generate a 'Follow' geometry.\n"
- "This means that it will cut through\n"
- "the middle of the trace.")
- )
- self.iso_follow_cb = FCCheckBox()
- self.iso_follow_cb.setToolTip(_("Generate a 'Follow' geometry.\n"
- "This means that it will cut through\n"
- "the middle of the trace."))
- self.iso_follow_cb.setObjectName("gdb_i_follow")
- self.grid4.addWidget(self.follow_label, 6, 0)
- self.grid4.addWidget(self.iso_follow_cb, 6, 1)
- # Isolation Type
- self.iso_type_label = FCLabel('%s:' % _('Isolation Type'))
- self.iso_type_label.setToolTip(
- _("Choose how the isolation will be executed:\n"
- "- 'Full' -> complete isolation of polygons\n"
- "- 'Ext' -> will isolate only on the outside\n"
- "- 'Int' -> will isolate only on the inside\n"
- "'Exterior' isolation is almost always possible\n"
- "(with the right tool) but 'Interior'\n"
- "isolation can be done only when there is an opening\n"
- "inside of the polygon (e.g polygon is a 'doughnut' shape).")
- )
- self.iso_type_radio = RadioSet([{'label': _('Full'), 'value': 'full'},
- {'label': _('Ext'), 'value': 'ext'},
- {'label': _('Int'), 'value': 'int'}])
- self.iso_type_radio.setObjectName("gdb_i_iso_type")
- self.grid4.addWidget(self.iso_type_label, 8, 0)
- self.grid4.addWidget(self.iso_type_radio, 8, 1)
- # ###########################################################################
- # ################ DRILLING UI form #########################################
- # ###########################################################################
- self.grid5 = QtWidgets.QGridLayout()
- self.drill_vlay.addLayout(self.grid5)
- self.grid5.setColumnStretch(0, 0)
- self.grid5.setColumnStretch(1, 1)
- self.drill_vlay.addStretch()
- # Cut Z
- self.cutzlabel = FCLabel('%s:' % _('Cut Z'))
- self.cutzlabel.setToolTip(
- _("Drill depth (negative)\n"
- "below the copper surface.")
- )
- self.drill_cutz_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_cutz_entry.set_precision(self.decimals)
- if self.machinist_setting == 0:
- self.drill_cutz_entry.set_range(-9999.9999, 0.0000)
- else:
- self.drill_cutz_entry.set_range(-9999.9999, 9999.9999)
- self.drill_cutz_entry.setSingleStep(0.1)
- self.drill_cutz_entry.setObjectName("gdb_e_cutz")
- self.grid5.addWidget(self.cutzlabel, 4, 0)
- self.grid5.addWidget(self.drill_cutz_entry, 4, 1)
- # Tool Offset
- self.tool_offset_label = FCLabel('%s:' % _('Offset Z'))
- self.tool_offset_label.setToolTip(
- _("Some drill bits (the larger ones) need to drill deeper\n"
- "to create the desired exit hole diameter due of the tip shape.\n"
- "The value here can compensate the Cut Z parameter.")
- )
- self.drill_offset_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_offset_entry.set_precision(self.decimals)
- self.drill_offset_entry.set_range(-9999.9999, 9999.9999)
- self.drill_offset_entry.setObjectName("gdb_e_offset")
- self.grid5.addWidget(self.tool_offset_label, 6, 0)
- self.grid5.addWidget(self.drill_offset_entry, 6, 1)
- # Multi-Depth
- self.multidepth_drill_label = FCLabel('%s:' % _("MultiDepth"))
- self.multidepth_drill_label.setToolTip(
- _(
- "Use multiple passes to limit\n"
- "the cut depth in each pass. Will\n"
- "cut multiple times until Cut Z is\n"
- "reached."
- )
- )
- self.drill_mpass_cb = FCCheckBox()
- self.drill_mpass_cb.setObjectName("gdb_e_multidepth")
- self.grid5.addWidget(self.multidepth_drill_label, 7, 0)
- self.grid5.addWidget(self.drill_mpass_cb, 7, 1)
- # Depth Per Pass
- self.dpp_drill_label = FCLabel('%s:' % _("DPP"))
- self.dpp_drill_label.setToolTip(
- _("DPP. Depth per Pass.\n"
- "The value used to cut into material on each pass."))
- self.drill_maxdepth_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_maxdepth_entry.set_precision(self.decimals)
- self.drill_maxdepth_entry.set_range(0, 9999.9999)
- self.drill_maxdepth_entry.setSingleStep(0.1)
- self.drill_maxdepth_entry.setToolTip(_("Depth of each pass (positive)."))
- self.drill_maxdepth_entry.setObjectName("gdb_e_depthperpass")
- self.grid5.addWidget(self.dpp_drill_label, 8, 0)
- self.grid5.addWidget(self.drill_maxdepth_entry, 8, 1)
- # Travel Z (z_move)
- self.travelzlabel = FCLabel('%s:' % _('Travel Z'))
- self.travelzlabel.setToolTip(
- _("Tool height when travelling\n"
- "across the XY plane.")
- )
- self.drill_travelz_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_travelz_entry.set_precision(self.decimals)
- if self.machinist_setting == 0:
- self.drill_travelz_entry.set_range(0.00001, 9999.9999)
- else:
- self.drill_travelz_entry.set_range(-9999.9999, 9999.9999)
- self.drill_travelz_entry.setSingleStep(0.1)
- self.drill_travelz_entry.setObjectName("gdb_e_travelz")
- self.grid5.addWidget(self.travelzlabel, 10, 0)
- self.grid5.addWidget(self.drill_travelz_entry, 10, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid5.addWidget(separator_line, 12, 0, 1, 2)
- # Excellon Feedrate Z
- self.frzlabel = FCLabel('%s:' % _('Feedrate Z'))
- self.frzlabel.setToolTip(
- _("Tool speed while drilling\n"
- "(in units per minute).\n"
- "So called 'Plunge' feedrate.\n"
- "This is for linear move G01.")
- )
- self.drill_feedrate_z_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_feedrate_z_entry.set_precision(self.decimals)
- self.drill_feedrate_z_entry.set_range(0.0, 99999.9999)
- self.drill_feedrate_z_entry.setSingleStep(0.1)
- self.drill_feedrate_z_entry.setObjectName("gdb_e_feedratez")
- self.grid5.addWidget(self.frzlabel, 14, 0)
- self.grid5.addWidget(self.drill_feedrate_z_entry, 14, 1)
- # Excellon Rapid Feedrate
- self.feedrate_rapid_label = FCLabel('%s:' % _('Feedrate Rapids'))
- self.feedrate_rapid_label.setToolTip(
- _("Tool speed while drilling\n"
- "(in units per minute).\n"
- "This is for the rapid move G00.\n"
- "It is useful only for Marlin,\n"
- "ignore for any other cases.")
- )
- self.drill_feedrate_rapid_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_feedrate_rapid_entry.set_precision(self.decimals)
- self.drill_feedrate_rapid_entry.set_range(0.0, 99999.9999)
- self.drill_feedrate_rapid_entry.setSingleStep(0.1)
- self.drill_feedrate_rapid_entry.setObjectName("gdb_e_fr_rapid")
- self.grid5.addWidget(self.feedrate_rapid_label, 16, 0)
- self.grid5.addWidget(self.drill_feedrate_rapid_entry, 16, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid5.addWidget(separator_line, 18, 0, 1, 2)
- # Spindlespeed
- self.spindle_label = FCLabel('%s:' % _('Spindle speed'))
- self.spindle_label.setToolTip(
- _("Speed of the spindle\n"
- "in RPM (optional)")
- )
- self.drill_spindlespeed_entry = FCSpinner(callback=self.confirmation_message_int)
- self.drill_spindlespeed_entry.set_range(0, 1000000)
- self.drill_spindlespeed_entry.set_step(100)
- self.drill_spindlespeed_entry.setObjectName("gdb_e_spindlespeed")
- self.grid5.addWidget(self.spindle_label, 20, 0)
- self.grid5.addWidget(self.drill_spindlespeed_entry, 20, 1)
- # Dwell
- self.dwell_drill_label = FCLabel('%s:' % _("Dwell"))
- self.dwell_drill_label.setToolTip(
- _("Dwell.\n"
- "Check this if a delay is needed to allow\n"
- "the spindle motor to reach its set speed."))
- self.drill_dwell_cb = FCCheckBox()
- self.drill_dwell_cb.setObjectName("gdb_e_dwell")
- self.grid5.addWidget(self.dwell_drill_label, 21, 0)
- self.grid5.addWidget(self.drill_dwell_cb, 21, 1)
- # Dwelltime
- self.dwelltime_drill_lbl = FCLabel('%s:' % _('Dwelltime'))
- self.dwelltime_drill_lbl.setToolTip(
- _("Dwell Time.\n"
- "A delay used to allow the motor spindle reach its set speed."))
- self.drill_dwelltime_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.drill_dwelltime_entry.set_precision(self.decimals)
- self.drill_dwelltime_entry.set_range(0.0, 9999.9999)
- self.drill_dwelltime_entry.setSingleStep(0.1)
- self.drill_dwelltime_entry.setObjectName("gdb_e_dwelltime")
- self.grid5.addWidget(self.dwelltime_drill_lbl, 22, 0)
- self.grid5.addWidget(self.drill_dwelltime_entry, 22, 1)
- separator_line = QtWidgets.QFrame()
- separator_line.setFrameShape(QtWidgets.QFrame.HLine)
- separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
- self.grid5.addWidget(separator_line, 24, 0, 1, 2)
- # Drill slots
- self.drill_slots_drill_lbl = FCLabel('%s:' % _('Drill slots'))
- self.drill_slots_drill_lbl.setToolTip(
- _("If the selected tool has slots then they will be drilled.")
- )
- self.drill_slots_cb = FCCheckBox()
- self.drill_slots_cb.setObjectName("gdb_e_drill_slots")
- self.grid5.addWidget(self.drill_slots_drill_lbl, 26, 0,)
- self.grid5.addWidget(self.drill_slots_cb, 26, 1)
- # Drill Overlap
- self.drill_overlap_label = FCLabel('%s:' % _('Overlap'))
- self.drill_overlap_label.setToolTip(
- _("How much (percentage) of the tool diameter to overlap previous drill hole.")
- )
- self.drill_overlap_entry = FCDoubleSpinner(suffix='%', callback=self.confirmation_message)
- self.drill_overlap_entry.set_precision(self.decimals)
- self.drill_overlap_entry.set_range(0.0, 100.0000)
- self.drill_overlap_entry.setSingleStep(0.1)
- self.drill_overlap_entry.setObjectName("gdb_e_drill_slots_over")
- self.grid5.addWidget(self.drill_overlap_label, 28, 0)
- self.grid5.addWidget(self.drill_overlap_entry, 28, 1)
- # Last drill in slot
- self.last_drill_drill_lbl = FCLabel('%s:' % _('Last drill'))
- self.last_drill_drill_lbl.setToolTip(
- _("If the slot length is not completely covered by drill holes,\n"
- "add a drill hole on the slot end point.")
- )
- self.drill_last_drill_cb = FCCheckBox()
- self.drill_last_drill_cb.setObjectName("gdb_e_drill_last_drill")
- self.grid5.addWidget(self.last_drill_drill_lbl, 30, 0, 1, 2)
- self.grid5.addWidget(self.drill_last_drill_cb, 30, 1)
- # ###########################################################################
- # ################### Cutout UI form ########################################
- # ###########################################################################
- self.grid6 = QtWidgets.QGridLayout()
- self.cutout_vlay.addLayout(self.grid6)
- self.grid6.setColumnStretch(0, 0)
- self.grid6.setColumnStretch(1, 1)
- self.cutout_vlay.addStretch()
- # Margin
- self.cutout_margin_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.cutout_margin_entry.set_range(-9999.9999, 9999.9999)
- self.cutout_margin_entry.setSingleStep(0.1)
- self.cutout_margin_entry.set_precision(self.decimals)
- self.cutout_margin_entry.setObjectName('gdb_ct_margin')
- self.cutout_margin_label = FCLabel('%s:' % _("Margin"))
- self.cutout_margin_label.setToolTip(
- _("Margin over bounds. A positive value here\n"
- "will make the cutout of the PCB further from\n"
- "the actual PCB border")
- )
- self.grid6.addWidget(self.cutout_margin_label, 11, 0)
- self.grid6.addWidget(self.cutout_margin_entry, 11, 1)
- # Gapsize
- self.cutout_gapsize = FCDoubleSpinner(callback=self.confirmation_message)
- self.cutout_gapsize.set_precision(self.decimals)
- self.cutout_gapsize.setObjectName('gdb_ct_gapsize')
- self.cutout_gapsize_label = FCLabel('%s:' % _("Gap size"))
- self.cutout_gapsize_label.setToolTip(
- _("The size of the bridge gaps in the cutout\n"
- "used to keep the board connected to\n"
- "the surrounding material (the one \n"
- "from which the PCB is cutout).")
- )
- self.grid6.addWidget(self.cutout_gapsize_label, 13, 0)
- self.grid6.addWidget(self.cutout_gapsize, 13, 1)
- # Gap Type
- self.gaptype_label = FCLabel('%s:' % _("Gap type"))
- self.gaptype_label.setToolTip(
- _("The type of gap:\n"
- "- Bridge -> the cutout will be interrupted by bridges\n"
- "- Thin -> same as 'bridge' but it will be thinner by partially milling the gap\n"
- "- M-Bites -> 'Mouse Bites' - same as 'bridge' but covered with drill holes")
- )
- self.cutout_gaptype_radio = RadioSet(
- [
- {'label': _('Bridge'), 'value': 'b'},
- {'label': _('Thin'), 'value': 'bt'},
- {'label': "M-Bites", 'value': 'mb'}
- ],
- stretch=True
- )
- self.cutout_gaptype_radio.setObjectName('gdb_ct_gap_type')
- self.grid6.addWidget(self.gaptype_label, 15, 0)
- self.grid6.addWidget(self.cutout_gaptype_radio, 15, 1)
- # Thin gaps Depth
- self.thin_depth_label = FCLabel('%s:' % _("Depth"))
- self.thin_depth_label.setToolTip(
- _("The depth until the milling is done\n"
- "in order to thin the gaps.")
- )
- self.cutout_thin_depth_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.cutout_thin_depth_entry.set_precision(self.decimals)
- self.cutout_thin_depth_entry.setObjectName('gdb_ct_gap_depth')
- if self.machinist_setting == 0:
- self.cutout_thin_depth_entry.setRange(-9999.9999, -0.00001)
- else:
- self.cutout_thin_depth_entry.setRange(-9999.9999, 9999.9999)
- self.cutout_thin_depth_entry.setSingleStep(0.1)
- self.grid6.addWidget(self.thin_depth_label, 17, 0)
- self.grid6.addWidget(self.cutout_thin_depth_entry, 17, 1)
- # Mouse Bites Tool Diameter
- self.mb_dia_label = FCLabel('%s:' % _("Tool Diameter"))
- self.mb_dia_label.setToolTip(
- _("The drill hole diameter when doing mouse bites.")
- )
- self.cutout_mb_dia_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.cutout_mb_dia_entry.set_precision(self.decimals)
- self.cutout_mb_dia_entry.setRange(0, 100.0000)
- self.cutout_mb_dia_entry.setObjectName('gdb_ct_mb_dia')
- self.grid6.addWidget(self.mb_dia_label, 19, 0)
- self.grid6.addWidget(self.cutout_mb_dia_entry, 19, 1)
- # Mouse Bites Holes Spacing
- self.mb_spacing_label = FCLabel('%s:' % _("Spacing"))
- self.mb_spacing_label.setToolTip(
- _("The spacing between drill holes when doing mouse bites.")
- )
- self.cutout_mb_spacing_entry = FCDoubleSpinner(callback=self.confirmation_message)
- self.cutout_mb_spacing_entry.set_precision(self.decimals)
- self.cutout_mb_spacing_entry.setRange(0, 100.0000)
- self.cutout_mb_spacing_entry.setObjectName('gdb_ct_mb_spacing')
- self.grid6.addWidget(self.mb_spacing_label, 21, 0)
- self.grid6.addWidget(self.cutout_mb_spacing_entry, 21, 1)
-
- # How gaps wil be rendered:
- # lr - left + right
- # tb - top + bottom
- # 4 - left + right +top + bottom
- # 2lr - 2*left + 2*right
- # 2tb - 2*top + 2*bottom
- # 8 - 2*left + 2*right +2*top + 2*bottom
- # Surrounding convex box shape
- self.cutout_convex_box = FCCheckBox('%s' % _("Convex Shape"))
- # self.convex_box_label = FCLabel('%s' % _("Convex Sh."))
- self.cutout_convex_box.setToolTip(
- _("Create a convex shape surrounding the entire PCB.\n"
- "Used only if the source object type is Gerber.")
- )
- self.cutout_convex_box.setObjectName('gdb_ct_convex')
- self.grid6.addWidget(self.cutout_convex_box, 23, 0, 1, 2)
- # Gaps
- self.cutout_gaps_label = FCLabel('%s:' % _('Gaps'))
- self.cutout_gaps_label.setToolTip(
- _("Number of gaps used for the Automatic cutout.\n"
- "There can be maximum 8 bridges/gaps.\n"
- "The choices are:\n"
- "- None - no gaps\n"
- "- lr - left + right\n"
- "- tb - top + bottom\n"
- "- 4 - left + right +top + bottom\n"
- "- 2lr - 2*left + 2*right\n"
- "- 2tb - 2*top + 2*bottom\n"
- "- 8 - 2*left + 2*right +2*top + 2*bottom")
- )
- self.cutout_gaps = FCComboBox()
- gaps_items = ['None', 'LR', 'TB', '4', '2LR', '2TB', '8']
- self.cutout_gaps.addItems(gaps_items)
- self.cutout_gaps.setObjectName('gdb_ct_gaps')
- self.grid6.addWidget(self.cutout_gaps_label, 25, 0)
- self.grid6.addWidget(self.cutout_gaps, 25, 1)
- # ####################################################################
- # ####################################################################
- # GUI for the lower part of the window
- # ####################################################################
- # ####################################################################
- new_vlay = QtWidgets.QVBoxLayout()
- self.g_lay.addLayout(new_vlay, 1, 0, 1, 2)
- self.buttons_frame = QtWidgets.QFrame()
- self.buttons_frame.setContentsMargins(0, 0, 0, 0)
- new_vlay.addWidget(self.buttons_frame)
- self.buttons_box = QtWidgets.QHBoxLayout()
- self.buttons_box.setContentsMargins(0, 0, 0, 0)
- self.buttons_frame.setLayout(self.buttons_box)
- self.buttons_frame.show()
- self.add_entry_btn = FCButton(_("Add Tool in DB"))
- self.add_entry_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/plus16.png'))
- self.add_entry_btn.setToolTip(
- _("Add a new tool in the Tools Database.\n"
- "It will be used in the Geometry UI.\n"
- "You can edit it after it is added.")
- )
- self.buttons_box.addWidget(self.add_entry_btn)
- # add_fct_entry_btn = FCButton(_("Add Paint/NCC Tool in DB"))
- # add_fct_entry_btn.setToolTip(
- # _("Add a new tool in the Tools Database.\n"
- # "It will be used in the Paint/NCC Tools UI.\n"
- # "You can edit it after it is added.")
- # )
- # self.buttons_box.addWidget(add_fct_entry_btn)
- self.remove_entry_btn = FCButton(_("Delete Tool from DB"))
- self.remove_entry_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/trash16.png'))
- self.remove_entry_btn.setToolTip(
- _("Remove a selection of tools in the Tools Database.")
- )
- self.buttons_box.addWidget(self.remove_entry_btn)
- self.export_db_btn = FCButton(_("Export DB"))
- self.export_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/export.png'))
- self.export_db_btn.setToolTip(
- _("Save the Tools Database to a custom text file.")
- )
- self.buttons_box.addWidget(self.export_db_btn)
- self.import_db_btn = FCButton(_("Import DB"))
- self.import_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/import.png'))
- self.import_db_btn.setToolTip(
- _("Load the Tools Database information's from a custom text file.")
- )
- self.buttons_box.addWidget(self.import_db_btn)
- self.save_db_btn = FCButton(_("Save DB"))
- self.save_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/save_as.png'))
- self.save_db_btn.setToolTip(
- _("Save the Tools Database information's.")
- )
- self.buttons_box.addWidget(self.save_db_btn)
- self.add_tool_from_db = FCButton(_("Transfer the Tool"))
- self.add_tool_from_db.setToolTip(
- _("Insert a new tool in the Tools Table of the\n"
- "object/application tool after selecting a tool\n"
- "in the Tools Database.")
- )
- self.add_tool_from_db.setStyleSheet("""
- QPushButton
- {
- font-weight: bold;
- color: green;
- }
- """)
- self.add_tool_from_db.hide()
- self.cancel_tool_from_db = FCButton(_("Cancel"))
- self.cancel_tool_from_db.hide()
- hlay = QtWidgets.QHBoxLayout()
- tree_layout.addLayout(hlay)
- hlay.addWidget(self.add_tool_from_db)
- hlay.addWidget(self.cancel_tool_from_db)
- # hlay.addStretch()
- # ############################ FINSIHED GUI ###################################
- # #############################################################################
- def confirmation_message(self, accepted, minval, maxval):
- if accepted is False:
- self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%.*f, %.*f]' % (_("Edited value is out of range"),
- self.decimals,
- minval,
- self.decimals,
- maxval), False)
- else:
- self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
- def confirmation_message_int(self, accepted, minval, maxval):
- if accepted is False:
- self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%d, %d]' %
- (_("Edited value is out of range"), minval, maxval), False)
- else:
- self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
-
- class ToolsDB2(QtWidgets.QWidget):
- mark_tools_rows = QtCore.pyqtSignal()
- def __init__(self, app, callback_on_tool_request, parent=None):
- super(ToolsDB2, self).__init__(parent)
- self.app = app
- self.app_ui = self.app.ui
- self.decimals = self.app.decimals
- self.on_tool_request = callback_on_tool_request
- self.tools_db_changed_flag = False
- '''
- dict to hold all the tools in the Tools DB
- format:
- {
- tool_id: {
- 'name': 'new_tool'
- 'tooldia': self.app.defaults["geometry_cnctooldia"]
- 'offset': 'Path'
- 'offset_value': 0.0
- 'type': _('Rough'),
- 'tool_type': 'C1'
- 'data': dict()
- }
- }
- '''
- self.db_tool_dict = {}
- self.old_color = QtGui.QColor('black')
- # ##############################################################################
- # ##############################################################################
- # TOOLS DATABASE UI
- # ##############################################################################
- # ##############################################################################
- layout = QtWidgets.QGridLayout()
- layout.setColumnStretch(0, 0)
- layout.setColumnStretch(1, 1)
- self.setLayout(layout)
- self.ui = ToolsDB2UI(app=self.app, grid_layout=layout)
- # ##############################################################################
- # ##############################################################################
- # ########## SETUP THE DICTIONARIES THAT HOLD THE WIDGETS #####################
- # ##############################################################################
- # ##############################################################################
- self.form_fields = {
- "tool_target": self.ui.tool_op_combo,
- "tol_min": self.ui.tol_min_entry,
- "tol_max": self.ui.tol_max_entry,
- "name": self.ui.name_entry,
- "tooldia": self.ui.dia_entry,
- # Milling
- "tool_type": self.ui.mill_shape_combo,
- "cutz": self.ui.mill_cutz_entry,
- "multidepth": self.ui.mill_multidepth_cb,
- "depthperpass": self.ui.mill_multidepth_entry,
- "travelz": self.ui.mill_travelz_entry,
- "feedrate": self.ui.mill_frxy_entry,
- "feedrate_z": self.ui.mill_frz_entry,
- "spindlespeed": self.ui.mill_spindle_entry,
- "dwell": self.ui.mill_dwell_cb,
- "dwelltime": self.ui.mill_dwelltime_entry,
- "type": self.ui.mill_type_combo,
- "offset": self.ui.mill_tooloffset_combo,
- "offset_value": self.ui.mill_custom_offset_entry,
- "vtipdia": self.ui.mill_vdia_entry,
- "vtipangle": self.ui.mill_vangle_entry,
- "feedrate_rapid": self.ui.mill_frapids_entry,
- "extracut": self.ui.mill_ecut_cb,
- "extracut_length": self.ui.mill_ecut_length_entry,
- # NCC
- "tools_ncc_operation": self.ui.ncc_op_radio,
- "tools_ncc_milling_type": self.ui.ncc_milling_type_radio,
- "tools_ncc_overlap": self.ui.ncc_overlap_entry,
- "tools_ncc_margin": self.ui.ncc_margin_entry,
- "tools_ncc_method": self.ui.ncc_method_combo,
- "tools_ncc_connect": self.ui.ncc_connect_cb,
- "tools_ncc_contour": self.ui.ncc_contour_cb,
- "tools_ncc_offset_choice": self.ui.ncc_choice_offset_cb,
- "tools_ncc_offset_value": self.ui.ncc_offset_spinner,
- # Paint
- "tools_paint_overlap": self.ui.paint_overlap_entry,
- "tools_paint_offset": self.ui.paint_offset_entry,
- "tools_paint_method": self.ui.paint_method_combo,
- "tools_paint_connect": self.ui.path_connect_cb,
- "tools_paint_contour": self.ui.paint_contour_cb,
- # Isolation
- "tools_iso_passes": self.ui.iso_passes_entry,
- "tools_iso_overlap": self.ui.iso_overlap_entry,
- "tools_iso_milling_type": self.ui.iso_milling_type_radio,
- "tools_iso_follow": self.ui.iso_follow_cb,
- "tools_iso_isotype": self.ui.iso_type_radio,
- # Drilling
- "tools_drill_cutz": self.ui.drill_cutz_entry,
- "tools_drill_multidepth": self.ui.drill_mpass_cb,
- "tools_drill_depthperpass": self.ui.drill_maxdepth_entry,
- "tools_drill_travelz": self.ui.drill_travelz_entry,
- "tools_drill_feedrate_z": self.ui.drill_feedrate_z_entry,
- "tools_drill_feedrate_rapid": self.ui.drill_feedrate_rapid_entry,
- "tools_drill_spindlespeed": self.ui.drill_spindlespeed_entry,
- "tools_drill_dwell": self.ui.drill_dwell_cb,
- "tools_drill_dwelltime": self.ui.drill_dwelltime_entry,
- "tools_drill_offset": self.ui.drill_offset_entry,
- "tools_drill_drill_slots": self.ui.drill_slots_cb,
- "tools_drill_drill_overlap": self.ui.drill_overlap_entry,
- "tools_drill_last_drill": self.ui.drill_last_drill_cb,
- # Cutout
- "tools_cutout_margin": self.ui.cutout_margin_entry,
- "tools_cutout_gapsize": self.ui.cutout_gapsize,
- "tools_cutout_gaps_ff": self.ui.cutout_gaps,
- "tools_cutout_convexshape": self.ui.cutout_convex_box,
- "tools_cutout_gap_type": self.ui.cutout_gaptype_radio,
- "tools_cutout_gap_depth": self.ui.cutout_thin_depth_entry,
- "tools_cutout_mb_dia": self.ui.cutout_mb_dia_entry,
- "tools_cutout_mb_spacing": self.ui.cutout_mb_spacing_entry,
- }
- self.name2option = {
- "gdb_tool_target": "tool_target",
- "gdb_tol_min": "tol_min",
- "gdb_tol_max": "tol_max",
- "gdb_name": "name",
- "gdb_dia": "tooldia",
- # Milling
- "gdb_shape": "tool_type",
- "gdb_cutz": "cutz",
- "gdb_multidepth": "multidepth",
- "gdb_multidepth_entry": "depthperpass",
- "gdb_travelz": "travelz",
- "gdb_frxy": "feedrate",
- "gdb_frz": "feedrate_z",
- "gdb_spindle": "spindlespeed",
- "gdb_dwell": "dwell",
- "gdb_dwelltime": "dwelltime",
- "gdb_type": "type",
- "gdb_tool_offset": "offset",
- "gdb_custom_offset": "offset_value",
- "gdb_vdia": "vtipdia",
- "gdb_vangle": "vtipangle",
- "gdb_frapids": "feedrate_rapid",
- "gdb_ecut": "extracut",
- "gdb_ecut_length": "extracut_length",
- # NCC
- "gdb_n_operation": "tools_ncc_operation",
- "gdb_n_overlap": "tools_ncc_overlap",
- "gdb_n_margin": "tools_ncc_margin",
- "gdb_n_method": "tools_ncc_method",
- "gdb_n_connect": "tools_ncc_connect",
- "gdb_n_contour": "tools_ncc_contour",
- "gdb_n_offset": "tools_ncc_offset_choice",
- "gdb_n_offset_value": "tools_ncc_offset_value",
- "gdb_n_milling_type": "tools_ncc_milling_type",
- # Paint
- 'gdb_p_overlap': "tools_paint_overlap",
- 'gdb_p_offset': "tools_paint_offset",
- 'gdb_p_method': "tools_paint_method",
- 'gdb_p_connect': "tools_paint_connect",
- 'gdb_p_contour': "tools_paint_contour",
- # Isolation
- "gdb_i_passes": "tools_iso_passes",
- "gdb_i_overlap": "tools_iso_overlap",
- "gdb_i_milling_type": "tools_iso_milling_type",
- "gdb_i_follow": "tools_iso_follow",
- "gdb_i_iso_type": "tools_iso_isotype",
- # Drilling
- "gdb_e_cutz": "tools_drill_cutz",
- "gdb_e_multidepth": "tools_drill_multidepth",
- "gdb_e_depthperpass": "tools_drill_depthperpass",
- "gdb_e_travelz": "tools_drill_travelz",
- "gdb_e_feedratez": "tools_drill_feedrate_z",
- "gdb_e_fr_rapid": "tools_drill_feedrate_rapid",
- "gdb_e_spindlespeed": "tools_drill_spindlespeed",
- "gdb_e_dwell": "tools_drill_dwell",
- "gdb_e_dwelltime": "tools_drill_dwelltime",
- "gdb_e_offset": "tools_drill_offset",
- "gdb_e_drill_slots": "tools_drill_drill_slots",
- "gdb_e_drill_slots_over": "tools_drill_drill_overlap",
- "gdb_e_drill_last_drill": "tools_drill_last_drill",
- # Cutout
- "gdb_ct_margin": "tools_cutout_margin",
- "gdb_ct_gapsize": "tools_cutout_gapsize",
- "gdb_ct_gaps": "tools_cutout_gaps_ff",
- "gdb_ct_convex": "tools_cutout_convexshape",
- "gdb_ct_gap_type": "tools_cutout_gap_type",
- "gdb_ct_gap_depth": "tools_cutout_gap_depth",
- "gdb_ct_mb_dia": "tools_cutout_mb_dia",
- "gdb_ct_mb_spacing": "tools_cutout_mb_spacing"
- }
- self.current_toolid = None
- # variable to show if double clicking and item will trigger adding a tool from DB
- self.ok_to_add = False
- # ##############################################################################
- # ######################## SIGNALS #############################################
- # ##############################################################################
- self.ui.add_entry_btn.clicked.connect(self.on_tool_add)
- self.ui.remove_entry_btn.clicked.connect(self.on_tool_delete)
- self.ui.export_db_btn.clicked.connect(self.on_export_tools_db_file)
- self.ui.import_db_btn.clicked.connect(self.on_import_tools_db_file)
- self.ui.save_db_btn.clicked.connect(self.on_save_db_btn_click)
- # closebtn.clicked.connect(self.accept)
- self.ui.add_tool_from_db.clicked.connect(self.on_tool_requested_from_app)
- self.ui.cancel_tool_from_db.clicked.connect(self.on_cancel_tool)
- # self.ui.tree_widget.selectionModel().selectionChanged.connect(self.on_list_selection_change)
- self.ui.tree_widget.currentItemChanged.connect(self.on_list_selection_change)
- self.ui.tree_widget.itemChanged.connect(self.on_list_item_edited)
- self.ui.tree_widget.customContextMenuRequested.connect(self.on_menu_request)
- self.ui.tree_widget.itemDoubleClicked.connect(self.on_item_double_clicked)
- self.ui.tool_op_combo.currentIndexChanged.connect(self.on_tool_target_changed)
- self.setup_db_ui()
- def on_menu_request(self, pos):
- menu = QtWidgets.QMenu()
- add_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/plus16.png'), _("Add to DB"))
- add_tool.triggered.connect(self.on_tool_add)
- copy_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/copy16.png'), _("Copy from DB"))
- copy_tool.triggered.connect(self.on_tool_copy)
- delete_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/delete32.png'), _("Delete from DB"))
- delete_tool.triggered.connect(self.on_tool_delete)
- # sep = menu.addSeparator()
- save_changes = menu.addAction(QtGui.QIcon(self.app.resource_location + '/save_as.png'), _("Save changes"))
- save_changes.triggered.connect(self.on_save_changes)
- # tree_item = self.ui.tree_widget.itemAt(pos)
- menu.exec(self.ui.tree_widget.viewport().mapToGlobal(pos))
- def on_save_changes(self):
- widget_name = self.app_ui.plot_tab_area.currentWidget().objectName()
- if widget_name == 'database_tab':
- # Tools DB saved, update flag
- self.app.tools_db_changed_flag = False
- self.app.tools_db_tab.on_save_tools_db()
- def on_item_double_clicked(self, item, column):
- if column == 0 and self.ok_to_add is True:
- self.ok_to_add = False
- self.on_tool_requested_from_app()
- def on_list_selection_change(self, current, previous):
- self.ui_disconnect()
- self.current_toolid = int(current.text(0))
- self.storage_to_form(self.db_tool_dict[current.text(0)])
- self.ui_connect()
- def on_list_item_edited(self, item, column):
- if column == 0:
- return
- self.ui.name_entry.set_value(item.text(1))
- def storage_to_form(self, dict_storage):
- self.ui_disconnect()
- for form_key in self.form_fields:
- for storage_key in dict_storage:
- if form_key == storage_key:
- try:
- self.form_fields[form_key].set_value(dict_storage[form_key])
- except Exception as e:
- print(str(e))
- if storage_key == 'data':
- for data_key in dict_storage[storage_key]:
- if form_key == data_key:
- try:
- self.form_fields[form_key].set_value(dict_storage['data'][data_key])
- except Exception as e:
- print(str(e))
- self.ui_connect()
- def form_to_storage(self, tool):
- self.ui_disconnect()
- widget_changed = self.sender()
- wdg_objname = widget_changed.objectName()
- option_changed = self.name2option[wdg_objname]
- tooluid_item = int(tool)
- for tooluid_key, tooluid_val in self.db_tool_dict.items():
- if int(tooluid_key) == tooluid_item:
- new_option_value = self.form_fields[option_changed].get_value()
- if option_changed in tooluid_val:
- tooluid_val[option_changed] = new_option_value
- if option_changed in tooluid_val['data']:
- tooluid_val['data'][option_changed] = new_option_value
- self.ui_connect()
- def setup_db_ui(self):
- # set the old color for the Tools Database Tab
- for idx in range(self.app.ui.plot_tab_area.count()):
- if self.app.ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- self.old_color = self.app.ui.plot_tab_area.tabBar.tabTextColor(idx)
- filename = self.app.tools_database_path()
- # load the database tools from the file
- try:
- with open(filename) as f:
- tools = f.read()
- except IOError:
- self.app.log.error("Could not load tools DB file.")
- self.app.inform.emit('[ERROR] %s' % _("Could not load Tools DB file."))
- return
- try:
- self.db_tool_dict = json.loads(tools)
- except Exception:
- e = sys.exc_info()[0]
- self.app.log.error(str(e))
- self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
- return
- self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
- self.build_db_ui()
- def build_db_ui(self):
- self.ui_disconnect()
- nr_crt = 0
- parent = self.ui.tree_widget
- self.ui.tree_widget.blockSignals(True)
- self.ui.tree_widget.clear()
- self.ui.tree_widget.blockSignals(False)
- for toolid, dict_val in self.db_tool_dict.items():
- row = nr_crt
- nr_crt += 1
- t_name = dict_val['name']
- try:
- # self.add_tool_table_line(row, name=t_name, tooldict=dict_val)
- self.ui.tree_widget.blockSignals(True)
- try:
- self.ui.tree_widget.addParentEditable(parent=parent, title=[str(row+1), t_name], editable=True)
- except Exception as e:
- print('FlatCAMCoomn.ToolDB2.build_db_ui() -> ', str(e))
- self.ui.tree_widget.blockSignals(False)
- except Exception as e:
- self.app.log.debug("ToolDB.build_db_ui.add_tool_table_line() --> %s" % str(e))
- if self.current_toolid is None or self.current_toolid < 1:
- if self.db_tool_dict:
- self.storage_to_form(self.db_tool_dict['1'])
- # Enable appGUI
- try:
- self.on_tool_target_changed(val=self.db_tool_dict['1']['data']['tool_target'])
- except KeyError:
- self.on_tool_target_changed(val=_("General"))
- self.ui.tree_widget.setCurrentItem(self.ui.tree_widget.topLevelItem(0))
- # self.ui.tree_widget.setFocus()
- else:
- # Disable appGUI
- self.ui.tool_description_box.show()
- self.ui.milling_box.show()
- self.ui.ncc_box.show()
- self.ui.paint_box.show()
- self.ui.iso_box.show()
- self.ui.drill_box.show()
- self.ui.cutout_box.show()
- self.ui.tool_description_box.setEnabled(False)
- self.ui.milling_box.setEnabled(False)
- self.ui.ncc_box.setEnabled(False)
- self.ui.paint_box.setEnabled(False)
- self.ui.iso_box.setEnabled(False)
- self.ui.drill_box.setEnabled(False)
- self.ui.cutout_box.setEnabled(False)
- else:
- self.storage_to_form(self.db_tool_dict[str(self.current_toolid)])
- self.ui_connect()
- def on_tool_target_changed(self, index=None, val=None):
- if val is None:
- tool_target = self.ui.tool_op_combo.get_value()
- else:
- tool_target = val
- self.ui.tool_description_box.setEnabled(True)
- if self.db_tool_dict:
- if tool_target == 0: # _("General")
- self.ui.milling_box.setEnabled(True)
- self.ui.ncc_box.setEnabled(True)
- self.ui.paint_box.setEnabled(True)
- self.ui.iso_box.setEnabled(True)
- self.ui.drill_box.setEnabled(True)
- self.ui.cutout_box.setEnabled(True)
- self.ui.milling_box.show()
- self.ui.ncc_box.show()
- self.ui.paint_box.show()
- self.ui.iso_box.show()
- self.ui.drill_box.show()
- self.ui.cutout_box.show()
- else:
- self.ui.milling_box.hide()
- self.ui.ncc_box.hide()
- self.ui.paint_box.hide()
- self.ui.iso_box.hide()
- self.ui.drill_box.hide()
- self.ui.cutout_box.hide()
- if tool_target == 1: # _("Milling")
- self.ui.milling_box.setEnabled(True)
- self.ui.milling_box.show()
- if tool_target == 2: # _("Drilling")
- self.ui.drill_box.setEnabled(True)
- self.ui.drill_box.show()
- if tool_target == 3: # _("Isolation")
- self.ui.iso_box.setEnabled(True)
- self.ui.iso_box.show()
- self.ui.milling_box.setEnabled(True)
- self.ui.milling_box.show()
- if tool_target == 4: # _("Paint")
- self.ui.paint_box.setEnabled(True)
- self.ui.paint_box.show()
- self.ui.milling_box.setEnabled(True)
- self.ui.milling_box.show()
- if tool_target == 5: # _("NCC")
- self.ui.ncc_box.setEnabled(True)
- self.ui.ncc_box.show()
- self.ui.milling_box.setEnabled(True)
- self.ui.milling_box.show()
- if tool_target == 6: # _("Cutout")
- self.ui.cutout_box.setEnabled(True)
- self.ui.cutout_box.show()
- self.ui.milling_box.setEnabled(True)
- self.ui.milling_box.show()
- def on_tool_add(self):
- """
- Add a tool in the DB Tool Table
- :return: None
- """
- default_data = {}
- default_data.update({
- "plot": True,
- "tool_target": 0, # _("General")
- "tol_min": 0.0,
- "tol_max": 0.0,
- # Milling
- "cutz": float(self.app.defaults["geometry_cutz"]),
- "multidepth": self.app.defaults["geometry_multidepth"],
- "depthperpass": float(self.app.defaults["geometry_depthperpass"]),
- "vtipdia": float(self.app.defaults["geometry_vtipdia"]),
- "vtipangle": float(self.app.defaults["geometry_vtipangle"]),
- "travelz": float(self.app.defaults["geometry_travelz"]),
- "feedrate": float(self.app.defaults["geometry_feedrate"]),
- "feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),
- "feedrate_rapid": float(self.app.defaults["geometry_feedrate_rapid"]),
- "spindlespeed": self.app.defaults["geometry_spindlespeed"],
- "dwell": self.app.defaults["geometry_dwell"],
- "dwelltime": float(self.app.defaults["geometry_dwelltime"]),
- "ppname_g": self.app.defaults["geometry_ppname_g"],
- "extracut": self.app.defaults["geometry_extracut"],
- "extracut_length": float(self.app.defaults["geometry_extracut_length"]),
- "toolchange": self.app.defaults["geometry_toolchange"],
- "toolchangexy": self.app.defaults["geometry_toolchangexy"],
- "toolchangez": float(self.app.defaults["geometry_toolchangez"]),
- "startz": self.app.defaults["geometry_startz"],
- "endz": float(self.app.defaults["geometry_endz"]),
- # NCC
- "tools_ncc_operation": self.app.defaults["tools_ncc_operation"],
- "tools_ncc_milling_type": self.app.defaults["tools_ncc_milling_type"],
- "tools_ncc_overlap": float(self.app.defaults["tools_ncc_overlap"]),
- "tools_ncc_margin": float(self.app.defaults["tools_ncc_margin"]),
- "tools_ncc_method": self.app.defaults["tools_ncc_method"],
- "tools_ncc_connect": self.app.defaults["tools_ncc_connect"],
- "tools_ncc_contour": self.app.defaults["tools_ncc_contour"],
- "tools_ncc_offset_choice": self.app.defaults["tools_ncc_offset_choice"],
- "tools_ncc_offset_value": float(self.app.defaults["tools_ncc_offset_value"]),
- # Paint
- "tools_paint_overlap": float(self.app.defaults["tools_paint_overlap"]),
- "tools_paint_offset": float(self.app.defaults["tools_paint_offset"]),
- "tools_paint_method": self.app.defaults["tools_paint_method"],
- "tools_paint_connect": self.app.defaults["tools_paint_connect"],
- "tools_paint_contour": self.app.defaults["tools_paint_contour"],
- # Isolation
- "tools_iso_passes": int(self.app.defaults["tools_iso_passes"]),
- "tools_iso_overlap": float(self.app.defaults["tools_iso_overlap"]),
- "tools_iso_milling_type": self.app.defaults["tools_iso_milling_type"],
- "tools_iso_follow": self.app.defaults["tools_iso_follow"],
- "tools_iso_isotype": self.app.defaults["tools_iso_isotype"],
- # Drilling
- "tools_drill_cutz": float(self.app.defaults["tools_drill_cutz"]),
- "tools_drill_multidepth": self.app.defaults["tools_drill_multidepth"],
- "tools_drill_depthperpass": float(self.app.defaults["tools_drill_depthperpass"]),
- "tools_drill_travelz": float(self.app.defaults["tools_drill_travelz"]),
- "tools_drill_feedrate_z": float(self.app.defaults["tools_drill_feedrate_z"]),
- "tools_drill_feedrate_rapid": float(self.app.defaults["tools_drill_feedrate_rapid"]),
- "tools_drill_spindlespeed": float(self.app.defaults["tools_drill_spindlespeed"]),
- "tools_drill_dwell": self.app.defaults["tools_drill_dwell"],
- "tools_drill_offset": float(self.app.defaults["tools_drill_offset"]),
- "tools_drill_drill_slots": self.app.defaults["tools_drill_drill_slots"],
- "tools_drill_drill_overlap": float(self.app.defaults["tools_drill_drill_overlap"]),
- "tools_drill_last_drill": self.app.defaults["tools_drill_last_drill"],
- # Cutout
- "tools_cutout_margin": float(self.app.defaults["tools_cutout_margin"]),
- "tools_cutout_gapsize": float(self.app.defaults["tools_cutout_gapsize"]),
- "tools_cutout_gaps_ff": self.app.defaults["tools_cutout_gaps_ff"],
- "tools_cutout_convexshape": self.app.defaults["tools_cutout_convexshape"],
- "tools_cutout_gap_type": self.app.defaults["tools_cutout_gap_type"],
- "tools_cutout_gap_depth": float(self.app.defaults["tools_cutout_gap_depth"]),
- "tools_cutout_mb_dia": float(self.app.defaults["tools_cutout_mb_dia"]),
- "tools_cutout_mb_spacing": float(self.app.defaults["tools_cutout_mb_spacing"])
- })
- temp = []
- for k, v in self.db_tool_dict.items():
- if "new_tool_" in v['name']:
- temp.append(float(v['name'].rpartition('_')[2]))
- if temp:
- new_name = "new_tool_%d" % int(max(temp) + 1)
- else:
- new_name = "new_tool_1"
- dict_elem = {}
- dict_elem['name'] = new_name
- if type(self.app.defaults["geometry_cnctooldia"]) == float:
- dict_elem['tooldia'] = self.app.defaults["geometry_cnctooldia"]
- else:
- try:
- tools_string = self.app.defaults["geometry_cnctooldia"].split(",")
- tools_diameters = [eval(a) for a in tools_string if a != '']
- dict_elem['tooldia'] = tools_diameters[0] if tools_diameters else 0.0
- except Exception as e:
- self.app.log.debug("ToolDB.on_tool_add() --> %s" % str(e))
- return
- dict_elem['offset'] = 'Path'
- dict_elem['offset_value'] = 0.0
- dict_elem['type'] = 'Rough'
- dict_elem['tool_type'] = 'C1'
- dict_elem['data'] = default_data
- new_toolid = len(self.db_tool_dict) + 1
- self.db_tool_dict[str(new_toolid)] = deepcopy(dict_elem)
- # add the new entry to the Tools DB table
- self.update_storage()
- self.build_db_ui()
- # select the last Tree item just added
- nr_items = self.ui.tree_widget.topLevelItemCount()
- if nr_items:
- last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
- self.ui.tree_widget.setCurrentItem(last_item)
- last_item.setSelected(True)
- self.on_tool_target_changed(val=dict_elem['data']['tool_target'])
- self.app.inform.emit('[success] %s' % _("Tool added to DB."))
- def on_tool_copy(self):
- """
- Copy a selection of Tools in the Tools DB table
- :return:
- """
- new_tool_id = len(self.db_tool_dict)
- for item in self.ui.tree_widget.selectedItems():
- old_tool_id = item.data(0, QtCore.Qt.DisplayRole)
- for toolid, dict_val in list(self.db_tool_dict.items()):
- if int(old_tool_id) == int(toolid):
- new_tool_id += 1
- new_key = str(new_tool_id)
- self.db_tool_dict.update({
- new_key: deepcopy(dict_val)
- })
- self.current_toolid = new_tool_id
- self.update_storage()
- self.build_db_ui()
- # select the last Tree item just added
- nr_items = self.ui.tree_widget.topLevelItemCount()
- if nr_items:
- last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
- self.ui.tree_widget.setCurrentItem(last_item)
- last_item.setSelected(True)
- self.on_tools_db_edited()
- self.app.inform.emit('[success] %s' % _("Tool copied from Tools DB."))
- def on_tool_delete(self):
- """
- Delete a selection of Tools in the Tools DB table
- :return:
- """
- for item in self.ui.tree_widget.selectedItems():
- toolname_to_remove = item.data(0, QtCore.Qt.DisplayRole)
- for toolid, dict_val in list(self.db_tool_dict.items()):
- if int(toolname_to_remove) == int(toolid):
- # remove from the storage
- self.db_tool_dict.pop(toolid, None)
- self.current_toolid -= 1
- self.update_storage()
- self.build_db_ui()
- # select the first Tree item
- nr_items = self.ui.tree_widget.topLevelItemCount()
- if nr_items:
- first_item = self.ui.tree_widget.topLevelItem(0)
- self.ui.tree_widget.setCurrentItem(first_item)
- first_item.setSelected(True)
- self.app.inform.emit('[success] %s' % _("Tool removed from Tools DB."))
- def on_export_tools_db_file(self):
- self.app.defaults.report_usage("on_export_tools_db_file")
- self.app.log.debug("on_export_tools_db_file()")
- date = str(datetime.today()).rpartition('.')[0]
- date = ''.join(c for c in date if c not in ':-')
- date = date.replace(' ', '_')
- filter__ = "Text File (*.TXT);;All Files (*.*)"
- filename, _f = FCFileSaveDialog.get_saved_filename(
- caption=_("Export Tools Database"),
- directory='{l_save}/FlatCAM_{n}_{date}'.format(l_save=str(self.app.get_last_save_folder()),
- n=_("Tools_Database"),
- date=date),
- ext_filter=filter__)
- filename = str(filename)
- if filename == "":
- self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
- return
- else:
- try:
- f = open(filename, 'w')
- f.close()
- except PermissionError:
- self.app.inform.emit('[WARNING] %s' %
- _("Permission denied, saving not possible.\n"
- "Most likely another app is holding the file open and not accessible."))
- return
- except IOError:
- self.app.log.debug('Creating a new Tools DB file ...')
- f = open(filename, 'w')
- f.close()
- except Exception:
- e = sys.exc_info()[0]
- self.app.log.error("Could not load Tools DB file.")
- self.app.log.error(str(e))
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
- return
- # Save update options
- try:
- # Save Tools DB in a file
- try:
- with open(filename, "w") as f:
- json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
- except Exception as e:
- self.app.log.debug("App.on_save_tools_db() --> %s" % str(e))
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- return
- except Exception:
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- return
- self.app.inform.emit('[success] %s: %s' % (_("Exported Tools DB to"), filename))
- def on_import_tools_db_file(self):
- self.app.defaults.report_usage("on_import_tools_db_file")
- self.app.log.debug("on_import_tools_db_file()")
- filter__ = "Text File (*.TXT);;All Files (*.*)"
- filename, _f = QtWidgets.QFileDialog.getOpenFileName(caption=_("Import FlatCAM Tools DB"), filter=filter__)
- if filename == "":
- self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
- else:
- try:
- with open(filename) as f:
- tools_in_db = f.read()
- except IOError:
- self.app.log.error("Could not load Tools DB file.")
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
- return
- try:
- self.db_tool_dict = json.loads(tools_in_db)
- except Exception:
- e = sys.exc_info()[0]
- self.app.log.error(str(e))
- self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
- return
- self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
- self.build_db_ui()
- self.update_storage()
- def on_save_tools_db(self, silent=False):
- self.app.log.debug("ToolsDB.on_save_button() --> Saving Tools Database to file.")
- filename = self.app.tools_database_path()
- # Preferences save, update the color of the Tools DB Tab text
- for idx in range(self.app_ui.plot_tab_area.count()):
- if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- self.app_ui.plot_tab_area.tabBar.setTabTextColor(idx, self.old_color)
- self.ui.save_db_btn.setStyleSheet("")
- # clean the dictionary and leave only keys of interest
- for tool_id in self.db_tool_dict.keys():
- if self.db_tool_dict[tool_id]['data']['tool_target'] != _('General'):
- continue
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Milling'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- self.db_tool_dict[tool_id]['data'].pop(k, None)
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Drilling'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- if str(k).startswith('tools_drill') or str(k).startswith('tools_mill'):
- pass
- else:
- self.db_tool_dict[tool_id]['data'].pop(k, None)
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Isolation'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- if str(k).startswith('tools_iso') or str(k).startswith('tools_mill'):
- pass
- else:
- self.db_tool_dict[tool_id]['data'].pop(k, None)
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Paint'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- if str(k).startswith('tools_paint') or str(k).startswith('tools_mill'):
- pass
- else:
- self.db_tool_dict[tool_id]['data'].pop(k, None)
-
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('NCC'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- if str(k).startswith('tools_ncc') or str(k).startswith('tools_mill'):
- pass
- else:
- self.db_tool_dict[tool_id]['data'].pop(k, None)
- if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Cutout'):
- for k in list(self.db_tool_dict[tool_id]['data'].keys()):
- if str(k).startswith('tools_'):
- if str(k).startswith('tools_cutout') or str(k).startswith('tools_mill'):
- pass
- else:
- self.db_tool_dict[tool_id]['data'].pop(k, None)
- # Save Tools DB in a file
- try:
- f = open(filename, "w")
- json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
- f.close()
- except Exception as e:
- self.app.log.debug("ToolsDB.on_save_tools_db() --> %s" % str(e))
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- return
- if not silent:
- self.app.inform.emit('[success] %s' % _("Saved Tools DB."))
- def on_save_db_btn_click(self):
- self.app.tools_db_changed_flag = False
- self.on_save_tools_db()
- def on_calculate_tooldia(self):
- if self.ui.mill_shape_combo.get_value() == 'V':
- tip_dia = float(self.ui.mill_vdia_entry.get_value())
- half_tip_angle = float(self.ui.mill_vangle_entry.get_value()) / 2.0
- cut_z = float(self.ui.mill_cutz_entry.get_value())
- cut_z = -cut_z if cut_z < 0 else cut_z
- # calculated tool diameter so the cut_z parameter is obeyed
- tool_dia = tip_dia + (2 * cut_z * math.tan(math.radians(half_tip_angle)))
- self.ui.dia_entry.set_value(tool_dia)
- def ui_connect(self):
- # make sure that we don't make multiple connections to the widgets
- self.ui_disconnect()
- self.ui.name_entry.editingFinished.connect(self.update_tree_name)
- for key in self.form_fields:
- wdg = self.form_fields[key]
- # FCEntry
- if isinstance(wdg, FCEntry):
- wdg.textChanged.connect(self.update_storage)
- # ComboBox
- if isinstance(wdg, FCComboBox):
- wdg.currentIndexChanged.connect(self.update_storage)
- # CheckBox
- if isinstance(wdg, FCCheckBox):
- wdg.toggled.connect(self.update_storage)
- # FCRadio
- if isinstance(wdg, RadioSet):
- wdg.activated_custom.connect(self.update_storage)
- # SpinBox, DoubleSpinBox
- if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
- wdg.valueChanged.connect(self.update_storage)
- # connect the calculate tooldia method to the controls
- # if the tool shape is 'V' the tool dia will be calculated to obey Cut Z parameter
- self.ui.mill_shape_combo.currentIndexChanged.connect(self.on_calculate_tooldia)
- self.ui.mill_cutz_entry.valueChanged.connect(self.on_calculate_tooldia)
- self.ui.mill_vdia_entry.valueChanged.connect(self.on_calculate_tooldia)
- self.ui.mill_vangle_entry.valueChanged.connect(self.on_calculate_tooldia)
- def ui_disconnect(self):
- try:
- self.ui.name_entry.editingFinished.disconnect(self.update_tree_name)
- except (TypeError, AttributeError):
- pass
- try:
- self.ui.mill_shape_combo.currentIndexChanged.disconnect(self.on_calculate_tooldia)
- except (TypeError, AttributeError):
- pass
- try:
- self.ui.mill_cutz_entry.valueChanged.disconnect(self.on_calculate_tooldia)
- except (TypeError, AttributeError):
- pass
- try:
- self.ui.mill_vdia_entry.valueChanged.disconnect(self.on_calculate_tooldia)
- except (TypeError, AttributeError):
- pass
- try:
- self.ui.mill_vangle_entry.valueChanged.disconnect(self.on_calculate_tooldia)
- except (TypeError, AttributeError):
- pass
- for key in self.form_fields:
- wdg = self.form_fields[key]
- # FCEntry
- if isinstance(wdg, FCEntry):
- try:
- wdg.textChanged.disconnect(self.update_storage)
- except (TypeError, AttributeError):
- pass
- # ComboBox
- if isinstance(wdg, FCComboBox):
- try:
- wdg.currentIndexChanged.disconnect(self.update_storage)
- except (TypeError, AttributeError):
- pass
- # CheckBox
- if isinstance(wdg, FCCheckBox):
- try:
- wdg.toggled.disconnect(self.update_storage)
- except (TypeError, AttributeError):
- pass
- # FCRadio
- if isinstance(wdg, RadioSet):
- try:
- wdg.activated_custom.disconnect(self.update_storage)
- except (TypeError, AttributeError):
- pass
- # SpinBox, DoubleSpinBox
- if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
- try:
- wdg.valueChanged.disconnect(self.update_storage)
- except (TypeError, AttributeError):
- pass
- def update_tree_name(self):
- val = self.ui.name_entry.get_value()
- item = self.ui.tree_widget.currentItem()
- if item is None:
- return
- # I'm setting the value for the second column (designated by 1) because first column holds the ID
- # and second column holds the Name (this behavior is set in the build_ui method)
- item.setData(1, QtCore.Qt.DisplayRole, val)
- def update_storage(self):
- """
- Update the dictionary that is the storage of the tools 'database'
- :return:
- """
- tool_id = str(self.current_toolid)
- try:
- wdg = self.sender()
- assert isinstance(wdg, QtWidgets.QWidget) or isinstance(wdg, QtWidgets.QAction), \
- "Expected a QWidget got %s" % type(wdg)
- if wdg is None:
- return
- if isinstance(wdg, FCButton) or isinstance(wdg, QtWidgets.QAction):
- # this is called when adding a new tool; no need to run the update below since that section is for
- # when editing a tool
- self.on_tools_db_edited()
- return
- wdg_name = wdg.objectName()
- val = wdg.get_value()
- except AttributeError as err:
- self.app.log.debug("ToolsDB2.update_storage() -> %s" % str(err))
- return
- # #############################################################################################################
- # #############################################################################################################
- # ################ EDITING PARAMETERS IN A TOOL SECTION
- # #############################################################################################################
- # #############################################################################################################
- # #############################################################################################################
- # this might change in the future; it makes sense to change values at once for all tools
- # for now change values only for one tool at once
- sel_rows = []
- for item in self.ui.tree_widget.selectedItems():
- sel_rows.append(item.data(0, QtCore.Qt.DisplayRole))
- len_sel_rows = len(sel_rows)
- if len_sel_rows > 1:
- msg = '[ERROR_NOTCL] %s: %s' % \
- (_("To change tool properties select only one tool. Tools currently selected"), str(len_sel_rows))
- self.app.inform.emit(msg)
- old_value = self.db_tool_dict[tool_id]['data'][self.name2option[wdg_name]]
- wdg.set_value(old_value)
- wdg.clearFocus()
- return
- # #############################################################################################################
- if wdg_name == "gdb_name":
- self.db_tool_dict[tool_id]['name'] = val
- elif wdg_name == "gdb_dia":
- self.db_tool_dict[tool_id]['tooldia'] = val
- elif wdg_name == "gdb_tool_offset":
- self.db_tool_dict[tool_id]['offset'] = val
- elif wdg_name == "gdb_custom_offset":
- self.db_tool_dict[tool_id]['offset_value'] = val
- elif wdg_name == "gdb_type":
- self.db_tool_dict[tool_id]['type'] = val
- elif wdg_name == "gdb_shape":
- self.db_tool_dict[tool_id]['tool_type'] = val
- else:
- # Milling Tool
- if wdg_name == "gdb_tool_target":
- self.db_tool_dict[tool_id]['data']['tool_target'] = val
- elif wdg_name == "gdb_tol_min":
- self.db_tool_dict[tool_id]['data']['tol_min'] = val
- elif wdg_name == "gdb_tol_max":
- self.db_tool_dict[tool_id]['data']['tol_max'] = val
- elif wdg_name == "gdb_cutz":
- self.db_tool_dict[tool_id]['data']['cutz'] = val
- elif wdg_name == "gdb_multidepth":
- self.db_tool_dict[tool_id]['data']['multidepth'] = val
- elif wdg_name == "gdb_multidepth_entry":
- self.db_tool_dict[tool_id]['data']['depthperpass'] = val
- elif wdg_name == "gdb_travelz":
- self.db_tool_dict[tool_id]['data']['travelz'] = val
- elif wdg_name == "gdb_frxy":
- self.db_tool_dict[tool_id]['data']['feedrate'] = val
- elif wdg_name == "gdb_frz":
- self.db_tool_dict[tool_id]['data']['feedrate_z'] = val
- elif wdg_name == "gdb_spindle":
- self.db_tool_dict[tool_id]['data']['spindlespeed'] = val
- elif wdg_name == "gdb_dwell":
- self.db_tool_dict[tool_id]['data']['dwell'] = val
- elif wdg_name == "gdb_dwelltime":
- self.db_tool_dict[tool_id]['data']['dwelltime'] = val
- elif wdg_name == "gdb_vdia":
- self.db_tool_dict[tool_id]['data']['vtipdia'] = val
- elif wdg_name == "gdb_vangle":
- self.db_tool_dict[tool_id]['data']['vtipangle'] = val
- elif wdg_name == "gdb_frapids":
- self.db_tool_dict[tool_id]['data']['feedrate_rapid'] = val
- elif wdg_name == "gdb_ecut":
- self.db_tool_dict[tool_id]['data']['extracut'] = val
- elif wdg_name == "gdb_ecut_length":
- self.db_tool_dict[tool_id]['data']['extracut_length'] = val
- # NCC Tool
- elif wdg_name == "gdb_n_operation":
- self.db_tool_dict[tool_id]['data']['tools_ncc_operation'] = val
- elif wdg_name == "gdb_n_overlap":
- self.db_tool_dict[tool_id]['data']['tools_ncc_overlap'] = val
- elif wdg_name == "gdb_n_margin":
- self.db_tool_dict[tool_id]['data']['tools_ncc_margin'] = val
- elif wdg_name == "gdb_n_method":
- self.db_tool_dict[tool_id]['data']['tools_ncc_method'] = val
- elif wdg_name == "gdb_n_connect":
- self.db_tool_dict[tool_id]['data']['tools_ncc_connect'] = val
- elif wdg_name == "gdb_n_contour":
- self.db_tool_dict[tool_id]['data']['tools_ncc_contour'] = val
- elif wdg_name == "gdb_n_offset":
- self.db_tool_dict[tool_id]['data']['tools_ncc_offset_choice'] = val
- elif wdg_name == "gdb_n_offset_value":
- self.db_tool_dict[tool_id]['data']['tools_ncc_offset_value'] = val
- elif wdg_name == "gdb_n_milling_type":
- self.db_tool_dict[tool_id]['data']['tools_ncc_milling_type'] = val
- # Paint Tool
- elif wdg_name == "gdb_p_overlap":
- self.db_tool_dict[tool_id]['data']['tools_paint_overlap'] = val
- elif wdg_name == "gdb_p_offset":
- self.db_tool_dict[tool_id]['data']['tools_paint_offset'] = val
- elif wdg_name == "gdb_p_method":
- self.db_tool_dict[tool_id]['data']['tools_paint_method'] = val
- elif wdg_name == "gdb_p_connect":
- self.db_tool_dict[tool_id]['data']['tools_paint_connect'] = val
- elif wdg_name == "gdb_p_contour":
- self.db_tool_dict[tool_id]['data']['tools_paint_contour'] = val
- # Isolation Tool
- elif wdg_name == "gdb_i_passes":
- self.db_tool_dict[tool_id]['data']['tools_iso_passes'] = val
- elif wdg_name == "gdb_i_overlap":
- self.db_tool_dict[tool_id]['data']['tools_iso_overlap'] = val
- elif wdg_name == "gdb_i_milling_type":
- self.db_tool_dict[tool_id]['data']['tools_iso_milling_type'] = val
- elif wdg_name == "gdb_i_follow":
- self.db_tool_dict[tool_id]['data']['tools_iso_follow'] = val
- elif wdg_name == "gdb_i_iso_type":
- self.db_tool_dict[tool_id]['data']['tools_iso_isotype'] = val
- # Drilling Tool
- elif wdg_name == "gdb_e_cutz":
- self.db_tool_dict[tool_id]['data']['tools_drill_cutz'] = val
- elif wdg_name == "gdb_e_multidepth":
- self.db_tool_dict[tool_id]['data']['tools_drill_multidepth'] = val
- elif wdg_name == "gdb_e_depthperpass":
- self.db_tool_dict[tool_id]['data']['tools_drill_depthperpass'] = val
- elif wdg_name == "gdb_e_travelz":
- self.db_tool_dict[tool_id]['data']['tools_drill_travelz'] = val
- elif wdg_name == "gdb_e_feedratez":
- self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_z'] = val
- elif wdg_name == "gdb_e_fr_rapid":
- self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_rapid'] = val
- elif wdg_name == "gdb_e_spindlespeed":
- self.db_tool_dict[tool_id]['data']['tools_drill_spindlespeed'] = val
- elif wdg_name == "gdb_e_dwell":
- self.db_tool_dict[tool_id]['data']['tools_drill_dwell'] = val
- elif wdg_name == "gdb_e_dwelltime":
- self.db_tool_dict[tool_id]['data']['tools_drill_dwelltime'] = val
- elif wdg_name == "gdb_e_offset":
- self.db_tool_dict[tool_id]['data']['tools_drill_offset'] = val
- elif wdg_name == "gdb_e_drill_slots":
- self.db_tool_dict[tool_id]['data']['tools_drill_drill_slots'] = val
- elif wdg_name == "gdb_e_drill_slots_over":
- self.db_tool_dict[tool_id]['data']['tools_drill_drill_overlap'] = val
- elif wdg_name == "gdb_e_drill_last_drill":
- self.db_tool_dict[tool_id]['data']['tools_drill_last_drill'] = val
- # Cutout Tool
- elif wdg_name == "gdb_ct_margin":
- self.db_tool_dict[tool_id]['data']['tools_cutout_margin'] = val
- elif wdg_name == "gdb_ct_gapsize":
- self.db_tool_dict[tool_id]['data']['tools_cutout_gapsize'] = val
- elif wdg_name == "gdb_ct_gaps":
- self.db_tool_dict[tool_id]['data']['tools_cutout_gaps_ff'] = val
- elif wdg_name == "gdb_ct_convex":
- self.db_tool_dict[tool_id]['data']['tools_cutout_convexshape'] = val
- elif wdg_name == "gdb_ct_gap_type":
- self.db_tool_dict[tool_id]['data']['tools_cutout_gap_type'] = val
- elif wdg_name == "gdb_ct_gap_depth":
- self.db_tool_dict[tool_id]['data']['tools_cutout_gap_depth'] = val
- elif wdg_name == "gdb_ct_mb_dia":
- self.db_tool_dict[tool_id]['data']['tools_cutout_mb_dia'] = val
- elif wdg_name == "gdb_ct_mb_spacing":
- self.db_tool_dict[tool_id]['data']['tools_cutout_mb_spacing'] = val
- self.on_tools_db_edited()
- def on_tool_requested_from_app(self):
- if not self.ui.tree_widget.selectedItems():
- self.app.inform.emit('[WARNING_NOTCL] %s...' % _("No Tool/row selected in the Tools Database table"))
- return
- if not self.db_tool_dict:
- self.app.inform.emit('[ERROR_NOTCL] %s' % _("Tools DB empty."))
- return
- for item in self.ui.tree_widget.selectedItems():
- tool_uid = item.data(0, QtCore.Qt.DisplayRole)
- for key in self.db_tool_dict.keys():
- if str(key) == str(tool_uid):
- selected_tool = self.db_tool_dict[key]
- self.on_tool_request(tool=selected_tool)
- def on_tools_db_edited(self, silent=None):
- """
- Executed whenever a tool is edited in Tools Database.
- Will color the text of the Tools Database tab to Red color.
- :return:
- """
- for idx in range(self.app.ui.plot_tab_area.count()):
- if self.app.ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- self.app.ui.plot_tab_area.tabBar.setTabTextColor(idx, QtGui.QColor('red'))
- self.ui.save_db_btn.setStyleSheet("QPushButton {color: red;}")
- self.tools_db_changed_flag = True
- if silent is None:
- msg = '[WARNING_NOTCL] %s' % _("Tools in Tools Database edited but not saved.")
- self.app.inform[str, bool].emit(msg, False)
- def on_cancel_tool(self):
- for idx in range(self.app_ui.plot_tab_area.count()):
- if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- wdg = self.app_ui.plot_tab_area.widget(idx)
- wdg.deleteLater()
- self.app_ui.plot_tab_area.removeTab(idx)
- self.app.inform.emit('%s' % _("Cancelled adding tool from DB."))
- # def resize_new_tool_table_widget(self, min_size, max_size):
- # """
- # Resize the table widget responsible for adding new tool in the Tool Database
- #
- # :param min_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
- # :param max_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
- # :return:
- # """
- # t_height = self.t_height
- # if max_size > min_size:
- # t_height = self.t_height + self.new_tool_table_widget.verticalScrollBar().height()
- #
- # self.new_tool_table_widget.setMaximumHeight(t_height)
- def closeEvent(self, QCloseEvent):
- super().closeEvent(QCloseEvent)
- # class ToolsDB(QtWidgets.QWidget):
- #
- # mark_tools_rows = QtCore.pyqtSignal()
- #
- # def __init__(self, app, callback_on_edited, callback_on_tool_request, parent=None):
- # super(ToolsDB, self).__init__(parent)
- #
- # self.app = app
- # self.decimals = 4
- # self.callback_app = callback_on_edited
- #
- # self.on_tool_request = callback_on_tool_request
- #
- # self.offset_item_options = ["Path", "In", "Out", "Custom"]
- # self.type_item_options = ["Iso", "Rough", "Finish"]
- # self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
- #
- # '''
- # dict to hold all the tools in the Tools DB
- # format:
- # {
- # tool_id: {
- # 'name': 'new_tool'
- # 'tooldia': self.app.defaults["geometry_cnctooldia"]
- # 'offset': 'Path'
- # 'offset_value': 0.0
- # 'type': _('Rough'),
- # 'tool_type': 'C1'
- # 'data': dict()
- # }
- # }
- # '''
- # self.db_tool_dict = {}
- #
- # # layouts
- # layout = QtWidgets.QVBoxLayout()
- # self.setLayout(layout)
- #
- # table_hlay = QtWidgets.QHBoxLayout()
- # layout.addLayout(table_hlay)
- #
- # self.table_widget = FCTable(drag_drop=True)
- # self.table_widget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
- # table_hlay.addWidget(self.table_widget)
- #
- # # set the number of columns and the headers tool tips
- # self.configure_table()
- #
- # # pal = QtGui.QPalette()
- # # pal.setColor(QtGui.QPalette.Background, Qt.white)
- #
- # # New Bookmark
- # new_vlay = QtWidgets.QVBoxLayout()
- # layout.addLayout(new_vlay)
- #
- # # new_tool_lbl = FCLabel('<b>%s</b>' % _("New Tool"))
- # # new_vlay.addWidget(new_tool_lbl, alignment=QtCore.Qt.AlignBottom)
- #
- # self.buttons_frame = QtWidgets.QFrame()
- # self.buttons_frame.setContentsMargins(0, 0, 0, 0)
- # layout.addWidget(self.buttons_frame)
- # self.buttons_box = QtWidgets.QHBoxLayout()
- # self.buttons_box.setContentsMargins(0, 0, 0, 0)
- # self.buttons_frame.setLayout(self.buttons_box)
- # self.buttons_frame.show()
- #
- # add_entry_btn = FCButton(_("Add Geometry Tool in DB"))
- # add_entry_btn.setToolTip(
- # _("Add a new tool in the Tools Database.\n"
- # "It will be used in the Geometry UI.\n"
- # "You can edit it after it is added.")
- # )
- # self.buttons_box.addWidget(add_entry_btn)
- #
- # # add_fct_entry_btn = FCButton(_("Add Paint/NCC Tool in DB"))
- # # add_fct_entry_btn.setToolTip(
- # # _("Add a new tool in the Tools Database.\n"
- # # "It will be used in the Paint/NCC Tools UI.\n"
- # # "You can edit it after it is added.")
- # # )
- # # self.buttons_box.addWidget(add_fct_entry_btn)
- #
- # remove_entry_btn = FCButton(_("Delete Tool from DB"))
- # remove_entry_btn.setToolTip(
- # _("Remove a selection of tools in the Tools Database.")
- # )
- # self.buttons_box.addWidget(remove_entry_btn)
- #
- # export_db_btn = FCButton(_("Export DB"))
- # export_db_btn.setToolTip(
- # _("Save the Tools Database to a custom text file.")
- # )
- # self.buttons_box.addWidget(export_db_btn)
- #
- # import_db_btn = FCButton(_("Import DB"))
- # import_db_btn.setToolTip(
- # _("Load the Tools Database information's from a custom text file.")
- # )
- # self.buttons_box.addWidget(import_db_btn)
- #
- # self.add_tool_from_db = FCButton(_("Transfer the Tool"))
- # self.add_tool_from_db.setToolTip(
- # _("Add a new tool in the Tools Table of the\n"
- # "active Geometry object after selecting a tool\n"
- # "in the Tools Database.")
- # )
- # self.add_tool_from_db.hide()
- #
- # self.cancel_tool_from_db = FCButton(_("Cancel"))
- # self.cancel_tool_from_db.hide()
- #
- # hlay = QtWidgets.QHBoxLayout()
- # layout.addLayout(hlay)
- # hlay.addWidget(self.add_tool_from_db)
- # hlay.addWidget(self.cancel_tool_from_db)
- # hlay.addStretch()
- #
- # # ##############################################################################
- # # ######################## SIGNALS #############################################
- # # ##############################################################################
- #
- # add_entry_btn.clicked.connect(self.on_tool_add)
- # remove_entry_btn.clicked.connect(self.on_tool_delete)
- # export_db_btn.clicked.connect(self.on_export_tools_db_file)
- # import_db_btn.clicked.connect(self.on_import_tools_db_file)
- # # closebtn.clicked.connect(self.accept)
- #
- # self.add_tool_from_db.clicked.connect(self.on_tool_requested_from_app)
- # self.cancel_tool_from_db.clicked.connect(self.on_cancel_tool)
- #
- # self.setup_db_ui()
- #
- # def configure_table(self):
- # self.table_widget.setColumnCount(27)
- # # self.table_widget.setColumnWidth(0, 20)
- # self.table_widget.setHorizontalHeaderLabels(
- # [
- # '#',
- # _("Tool Name"),
- # _("Tool Dia"),
- # _("Tool Offset"),
- # _("Custom Offset"),
- # _("Tool Type"),
- # _("Tool Shape"),
- # _("Cut Z"),
- # _("MultiDepth"),
- # _("DPP"),
- # _("V-Dia"),
- # _("V-Angle"),
- # _("Travel Z"),
- # _("FR"),
- # _("FR Z"),
- # _("FR Rapids"),
- # _("Spindle Speed"),
- # _("Dwell"),
- # _("Dwelltime"),
- # _("Preprocessor"),
- # _("ExtraCut"),
- # _("E-Cut Length"),
- # _("Toolchange"),
- # _("Toolchange XY"),
- # _("Toolchange Z"),
- # _("Start Z"),
- # _("End Z"),
- # ]
- # )
- # self.table_widget.horizontalHeaderItem(0).setToolTip(
- # _("Tool Index."))
- # self.table_widget.horizontalHeaderItem(1).setToolTip(
- # _("Tool name.\n"
- # "This is not used in the app, it's function\n"
- # "is to serve as a note for the user."))
- # self.table_widget.horizontalHeaderItem(2).setToolTip(
- # _("Tool Diameter."))
- # self.table_widget.horizontalHeaderItem(3).setToolTip(
- # _("Tool Offset.\n"
- # "Can be of a few types:\n"
- # "Path = zero offset\n"
- # "In = offset inside by half of tool diameter\n"
- # "Out = offset outside by half of tool diameter\n"
- # "Custom = custom offset using the Custom Offset value"))
- # self.table_widget.horizontalHeaderItem(4).setToolTip(
- # _("Custom Offset.\n"
- # "A value to be used as offset from the current path."))
- # self.table_widget.horizontalHeaderItem(5).setToolTip(
- # _("Tool Type.\n"
- # "Can be:\n"
- # "Iso = isolation cut\n"
- # "Rough = rough cut, low feedrate, multiple passes\n"
- # "Finish = finishing cut, high feedrate"))
- # self.table_widget.horizontalHeaderItem(6).setToolTip(
- # _("Tool Shape. \n"
- # "Can be:\n"
- # "C1 ... C4 = circular tool with x flutes\n"
- # "B = ball tip milling tool\n"
- # "V = v-shape milling tool"))
- # self.table_widget.horizontalHeaderItem(7).setToolTip(
- # _("Cutting Depth.\n"
- # "The depth at which to cut into material."))
- # self.table_widget.horizontalHeaderItem(8).setToolTip(
- # _("Multi Depth.\n"
- # "Selecting this will allow cutting in multiple passes,\n"
- # "each pass adding a DPP parameter depth."))
- # self.table_widget.horizontalHeaderItem(9).setToolTip(
- # _("DPP. Depth per Pass.\n"
- # "The value used to cut into material on each pass."))
- # self.table_widget.horizontalHeaderItem(10).setToolTip(
- # _("V-Dia.\n"
- # "Diameter of the tip for V-Shape Tools."))
- # self.table_widget.horizontalHeaderItem(11).setToolTip(
- # _("V-Agle.\n"
- # "Angle at the tip for the V-Shape Tools."))
- # self.table_widget.horizontalHeaderItem(12).setToolTip(
- # _("Clearance Height.\n"
- # "Height at which the milling bit will travel between cuts,\n"
- # "above the surface of the material, avoiding all fixtures."))
- # self.table_widget.horizontalHeaderItem(13).setToolTip(
- # _("FR. Feedrate\n"
- # "The speed on XY plane used while cutting into material."))
- # self.table_widget.horizontalHeaderItem(14).setToolTip(
- # _("FR Z. Feedrate Z\n"
- # "The speed on Z plane."))
- # self.table_widget.horizontalHeaderItem(15).setToolTip(
- # _("FR Rapids. Feedrate Rapids\n"
- # "Speed used while moving as fast as possible.\n"
- # "This is used only by some devices that can't use\n"
- # "the G0 g-code command. Mostly 3D printers."))
- # self.table_widget.horizontalHeaderItem(16).setToolTip(
- # _("Spindle Speed.\n"
- # "If it's left empty it will not be used.\n"
- # "The speed of the spindle in RPM."))
- # self.table_widget.horizontalHeaderItem(17).setToolTip(
- # _("Dwell.\n"
- # "Check this if a delay is needed to allow\n"
- # "the spindle motor to reach its set speed."))
- # self.table_widget.horizontalHeaderItem(18).setToolTip(
- # _("Dwell Time.\n"
- # "A delay used to allow the motor spindle reach its set speed."))
- # self.table_widget.horizontalHeaderItem(19).setToolTip(
- # _("Preprocessor.\n"
- # "A selection of files that will alter the generated G-code\n"
- # "to fit for a number of use cases."))
- # self.table_widget.horizontalHeaderItem(20).setToolTip(
- # _("Extra Cut.\n"
- # "If checked, after a isolation is finished an extra cut\n"
- # "will be added where the start and end of isolation meet\n"
- # "such as that this point is covered by this extra cut to\n"
- # "ensure a complete isolation."))
- # self.table_widget.horizontalHeaderItem(21).setToolTip(
- # _("Extra Cut length.\n"
- # "If checked, after a isolation is finished an extra cut\n"
- # "will be added where the start and end of isolation meet\n"
- # "such as that this point is covered by this extra cut to\n"
- # "ensure a complete isolation. This is the length of\n"
- # "the extra cut."))
- # self.table_widget.horizontalHeaderItem(22).setToolTip(
- # _("Toolchange.\n"
- # "It will create a toolchange event.\n"
- # "The kind of toolchange is determined by\n"
- # "the preprocessor file."))
- # self.table_widget.horizontalHeaderItem(23).setToolTip(
- # _("Toolchange XY.\n"
- # "A set of coordinates in the format (x, y).\n"
- # "Will determine the cartesian position of the point\n"
- # "where the tool change event take place."))
- # self.table_widget.horizontalHeaderItem(24).setToolTip(
- # _("Toolchange Z.\n"
- # "The position on Z plane where the tool change event take place."))
- # self.table_widget.horizontalHeaderItem(25).setToolTip(
- # _("Start Z.\n"
- # "If it's left empty it will not be used.\n"
- # "A position on Z plane to move immediately after job start."))
- # self.table_widget.horizontalHeaderItem(26).setToolTip(
- # _("End Z.\n"
- # "A position on Z plane to move immediately after job stop."))
- #
- # def setup_db_ui(self):
- # filename = self.app.tools_database_path()
- #
- # # load the database tools from the file
- # try:
- # with open(filename) as f:
- # tools = f.read()
- # except IOError:
- # self.app.log.error("Could not load tools DB file.")
- # self.app.inform.emit('[ERROR] %s' % _("Could not load Tools DB file."))
- # return
- #
- # try:
- # self.db_tool_dict = json.loads(tools)
- # except Exception:
- # e = sys.exc_info()[0]
- # self.app.log.error(str(e))
- # self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
- # return
- #
- # self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
- #
- # self.build_db_ui()
- #
- # self.table_widget.setupContextMenu()
- # self.table_widget.addContextMenu(
- # _("Add to DB"), self.on_tool_add, icon=QtGui.QIcon(self.app.resource_location + "/plus16.png"))
- # self.table_widget.addContextMenu(
- # _("Copy from DB"), self.on_tool_copy, icon=QtGui.QIcon(self.app.resource_location + "/copy16.png"))
- # self.table_widget.addContextMenu(
- # _("Delete from DB"), self.on_tool_delete, icon=QtGui.QIcon(self.app.resource_location + "/delete32.png"))
- #
- # def build_db_ui(self):
- # self.ui_disconnect()
- # self.table_widget.setRowCount(len(self.db_tool_dict))
- #
- # nr_crt = 0
- #
- # for toolid, dict_val in self.db_tool_dict.items():
- # row = nr_crt
- # nr_crt += 1
- #
- # t_name = dict_val['name']
- # try:
- # self.add_tool_table_line(row, name=t_name, widget=self.table_widget, tooldict=dict_val)
- # except Exception as e:
- # self.app.log.debug("ToolDB.build_db_ui.add_tool_table_line() --> %s" % str(e))
- # vertical_header = self.table_widget.verticalHeader()
- # vertical_header.hide()
- #
- # horizontal_header = self.table_widget.horizontalHeader()
- # horizontal_header.setMinimumSectionSize(10)
- # horizontal_header.setDefaultSectionSize(70)
- #
- # self.table_widget.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents)
- # for x in range(27):
- # self.table_widget.resizeColumnToContents(x)
- #
- # horizontal_header.setSectionResizeMode(0, QtWidgets.QHeaderView.Fixed)
- # # horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.Stretch)
- # # horizontal_header.setSectionResizeMode(13, QtWidgets.QHeaderView.Fixed)
- #
- # horizontal_header.resizeSection(0, 20)
- # # horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.ResizeToContents)
- # # horizontal_header.setSectionResizeMode(2, QtWidgets.QHeaderView.Stretch)
- #
- # self.ui_connect()
- #
- # def add_tool_table_line(self, row, name, widget, tooldict):
- # data = tooldict['data']
- #
- # nr_crt = row + 1
- # id_item = QtWidgets.QTableWidgetItem('%d' % int(nr_crt))
- # # id_item.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
- # flags = id_item.flags() & ~QtCore.Qt.ItemIsEditable
- # id_item.setFlags(flags)
- # widget.setItem(row, 0, id_item) # Tool name/id
- #
- # tool_name_item = QtWidgets.QTableWidgetItem(name)
- # widget.setItem(row, 1, tool_name_item)
- #
- # dia_item = FCDoubleSpinner()
- # dia_item.set_precision(self.decimals)
- # dia_item.setSingleStep(0.1)
- # dia_item.set_range(0.0, 9999.9999)
- # dia_item.set_value(float(tooldict['tooldia']))
- # widget.setCellWidget(row, 2, dia_item)
- #
- # tool_offset_item = FCComboBox()
- # for item in self.offset_item_options:
- # tool_offset_item.addItem(item)
- # tool_offset_item.set_value(tooldict['offset'])
- # widget.setCellWidget(row, 3, tool_offset_item)
- #
- # c_offset_item = FCDoubleSpinner()
- # c_offset_item.set_precision(self.decimals)
- # c_offset_item.setSingleStep(0.1)
- # c_offset_item.set_range(-9999.9999, 9999.9999)
- # c_offset_item.set_value(float(tooldict['offset_value']))
- # widget.setCellWidget(row, 4, c_offset_item)
- #
- # tt_item = FCComboBox()
- # for item in self.type_item_options:
- # tt_item.addItem(item)
- # tt_item.set_value(tooldict['type'])
- # widget.setCellWidget(row, 5, tt_item)
- #
- # tshape_item = FCComboBox()
- # for item in self.tool_type_item_options:
- # tshape_item.addItem(item)
- # tshape_item.set_value(tooldict['tool_type'])
- # widget.setCellWidget(row, 6, tshape_item)
- #
- # cutz_item = FCDoubleSpinner()
- # cutz_item.set_precision(self.decimals)
- # cutz_item.setSingleStep(0.1)
- # if self.app.defaults['global_machinist_setting']:
- # cutz_item.set_range(-9999.9999, 9999.9999)
- # else:
- # cutz_item.set_range(-9999.9999, -0.0000)
- #
- # cutz_item.set_value(float(data['cutz']))
- # widget.setCellWidget(row, 7, cutz_item)
- #
- # multidepth_item = FCCheckBox()
- # multidepth_item.set_value(data['multidepth'])
- # widget.setCellWidget(row, 8, multidepth_item)
- #
- # # to make the checkbox centered but it can no longer have it's value accessed - needs a fix using findchild()
- # # multidepth_item = QtWidgets.QWidget()
- # # cb = FCCheckBox()
- # # cb.set_value(data['multidepth'])
- # # qhboxlayout = QtWidgets.QHBoxLayout(multidepth_item)
- # # qhboxlayout.addWidget(cb)
- # # qhboxlayout.setAlignment(QtCore.Qt.AlignCenter)
- # # qhboxlayout.setContentsMargins(0, 0, 0, 0)
- # # widget.setCellWidget(row, 8, multidepth_item)
- #
- # depth_per_pass_item = FCDoubleSpinner()
- # depth_per_pass_item.set_precision(self.decimals)
- # depth_per_pass_item.setSingleStep(0.1)
- # depth_per_pass_item.set_range(0.0, 9999.9999)
- # depth_per_pass_item.set_value(float(data['depthperpass']))
- # widget.setCellWidget(row, 9, depth_per_pass_item)
- #
- # vtip_dia_item = FCDoubleSpinner()
- # vtip_dia_item.set_precision(self.decimals)
- # vtip_dia_item.setSingleStep(0.1)
- # vtip_dia_item.set_range(0.0, 9999.9999)
- # vtip_dia_item.set_value(float(data['vtipdia']))
- # widget.setCellWidget(row, 10, vtip_dia_item)
- #
- # vtip_angle_item = FCDoubleSpinner()
- # vtip_angle_item.set_precision(self.decimals)
- # vtip_angle_item.setSingleStep(0.1)
- # vtip_angle_item.set_range(-360.0, 360.0)
- # vtip_angle_item.set_value(float(data['vtipangle']))
- # widget.setCellWidget(row, 11, vtip_angle_item)
- #
- # travelz_item = FCDoubleSpinner()
- # travelz_item.set_precision(self.decimals)
- # travelz_item.setSingleStep(0.1)
- # if self.app.defaults['global_machinist_setting']:
- # travelz_item.set_range(-9999.9999, 9999.9999)
- # else:
- # travelz_item.set_range(0.0000, 9999.9999)
- #
- # travelz_item.set_value(float(data['travelz']))
- # widget.setCellWidget(row, 12, travelz_item)
- #
- # fr_item = FCDoubleSpinner()
- # fr_item.set_precision(self.decimals)
- # fr_item.set_range(0.0, 9999.9999)
- # fr_item.set_value(float(data['feedrate']))
- # widget.setCellWidget(row, 13, fr_item)
- #
- # frz_item = FCDoubleSpinner()
- # frz_item.set_precision(self.decimals)
- # frz_item.set_range(0.0, 9999.9999)
- # frz_item.set_value(float(data['feedrate_z']))
- # widget.setCellWidget(row, 14, frz_item)
- #
- # frrapids_item = FCDoubleSpinner()
- # frrapids_item.set_precision(self.decimals)
- # frrapids_item.set_range(0.0, 9999.9999)
- # frrapids_item.set_value(float(data['feedrate_rapid']))
- # widget.setCellWidget(row, 15, frrapids_item)
- #
- # spindlespeed_item = FCSpinner()
- # spindlespeed_item.set_range(0, 1000000)
- # spindlespeed_item.set_value(int(data['spindlespeed']))
- # spindlespeed_item.set_step(100)
- # widget.setCellWidget(row, 16, spindlespeed_item)
- #
- # dwell_item = FCCheckBox()
- # dwell_item.set_value(data['dwell'])
- # widget.setCellWidget(row, 17, dwell_item)
- #
- # dwelltime_item = FCDoubleSpinner()
- # dwelltime_item.set_precision(self.decimals)
- # dwelltime_item.set_range(0.0000, 9999.9999)
- # dwelltime_item.set_value(float(data['dwelltime']))
- # widget.setCellWidget(row, 18, dwelltime_item)
- #
- # pp_item = FCComboBox()
- # for item in self.app.preprocessors:
- # pp_item.addItem(item)
- # pp_item.set_value(data['ppname_g'])
- # widget.setCellWidget(row, 19, pp_item)
- #
- # ecut_item = FCCheckBox()
- # ecut_item.set_value(data['extracut'])
- # widget.setCellWidget(row, 20, ecut_item)
- #
- # ecut_length_item = FCDoubleSpinner()
- # ecut_length_item.set_precision(self.decimals)
- # ecut_length_item.set_range(0.0000, 9999.9999)
- # ecut_length_item.set_value(data['extracut_length'])
- # widget.setCellWidget(row, 21, ecut_length_item)
- #
- # toolchange_item = FCCheckBox()
- # toolchange_item.set_value(data['toolchange'])
- # widget.setCellWidget(row, 22, toolchange_item)
- #
- # toolchangexy_item = QtWidgets.QTableWidgetItem(str(data['toolchangexy']) if data['toolchangexy'] else '')
- # widget.setItem(row, 23, toolchangexy_item)
- #
- # toolchangez_item = FCDoubleSpinner()
- # toolchangez_item.set_precision(self.decimals)
- # toolchangez_item.setSingleStep(0.1)
- # if self.app.defaults['global_machinist_setting']:
- # toolchangez_item.set_range(-9999.9999, 9999.9999)
- # else:
- # toolchangez_item.set_range(0.0000, 9999.9999)
- #
- # toolchangez_item.set_value(float(data['toolchangez']))
- # widget.setCellWidget(row, 24, toolchangez_item)
- #
- # startz_item = QtWidgets.QTableWidgetItem(str(data['startz']) if data['startz'] else '')
- # widget.setItem(row, 25, startz_item)
- #
- # endz_item = FCDoubleSpinner()
- # endz_item.set_precision(self.decimals)
- # endz_item.setSingleStep(0.1)
- # if self.app.defaults['global_machinist_setting']:
- # endz_item.set_range(-9999.9999, 9999.9999)
- # else:
- # endz_item.set_range(0.0000, 9999.9999)
- #
- # endz_item.set_value(float(data['endz']))
- # widget.setCellWidget(row, 26, endz_item)
- #
- # def on_tool_add(self):
- # """
- # Add a tool in the DB Tool Table
- # :return: None
- # """
- #
- # default_data = {}
- # default_data.update({
- # "cutz": float(self.app.defaults["geometry_cutz"]),
- # "multidepth": self.app.defaults["geometry_multidepth"],
- # "depthperpass": float(self.app.defaults["geometry_depthperpass"]),
- # "vtipdia": float(self.app.defaults["geometry_vtipdia"]),
- # "vtipangle": float(self.app.defaults["geometry_vtipangle"]),
- # "travelz": float(self.app.defaults["geometry_travelz"]),
- # "feedrate": float(self.app.defaults["geometry_feedrate"]),
- # "feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),
- # "feedrate_rapid": float(self.app.defaults["geometry_feedrate_rapid"]),
- # "spindlespeed": self.app.defaults["geometry_spindlespeed"],
- # "dwell": self.app.defaults["geometry_dwell"],
- # "dwelltime": float(self.app.defaults["geometry_dwelltime"]),
- # "ppname_g": self.app.defaults["geometry_ppname_g"],
- # "extracut": self.app.defaults["geometry_extracut"],
- # "extracut_length": float(self.app.defaults["geometry_extracut_length"]),
- # "toolchange": self.app.defaults["geometry_toolchange"],
- # "toolchangexy": self.app.defaults["geometry_toolchangexy"],
- # "toolchangez": float(self.app.defaults["geometry_toolchangez"]),
- # "startz": self.app.defaults["geometry_startz"],
- # "endz": float(self.app.defaults["geometry_endz"])
- # })
- #
- # dict_elem = {}
- # dict_elem['name'] = 'new_tool'
- # if type(self.app.defaults["geometry_cnctooldia"]) == float:
- # dict_elem['tooldia'] = self.app.defaults["geometry_cnctooldia"]
- # else:
- # try:
- # tools_string = self.app.defaults["geometry_cnctooldia"].split(",")
- # tools_diameters = [eval(a) for a in tools_string if a != '']
- # dict_elem['tooldia'] = tools_diameters[0] if tools_diameters else 0.0
- # except Exception as e:
- # self.app.log.debug("ToolDB.on_tool_add() --> %s" % str(e))
- # return
- #
- # dict_elem['offset'] = 'Path'
- # dict_elem['offset_value'] = 0.0
- # dict_elem['type'] = 'Rough'
- # dict_elem['tool_type'] = 'C1'
- # dict_elem['data'] = default_data
- #
- # new_toolid = len(self.db_tool_dict) + 1
- # self.db_tool_dict[new_toolid] = deepcopy(dict_elem)
- #
- # # add the new entry to the Tools DB table
- # self.build_db_ui()
- # self.callback_on_edited()
- # self.app.inform.emit('[success] %s' % _("Tool added to DB."))
- #
- # def on_tool_copy(self):
- # """
- # Copy a selection of Tools in the Tools DB table
- # :return:
- # """
- # new_tool_id = self.table_widget.rowCount() + 1
- # for model_index in self.table_widget.selectionModel().selectedRows():
- # # index = QtCore.QPersistentModelIndex(model_index)
- # old_tool_id = self.table_widget.item(model_index.row(), 0).text()
- # new_tool_id += 1
- #
- # for toolid, dict_val in list(self.db_tool_dict.items()):
- # if int(old_tool_id) == int(toolid):
- # self.db_tool_dict.update({
- # new_tool_id: deepcopy(dict_val)
- # })
- #
- # self.build_db_ui()
- # self.callback_on_edited()
- # self.app.inform.emit('[success] %s' % _("Tool copied from Tools DB."))
- #
- # def on_tool_delete(self):
- # """
- # Delete a selection of Tools in the Tools DB table
- # :return:
- # """
- # for model_index in self.table_widget.selectionModel().selectedRows():
- # # index = QtCore.QPersistentModelIndex(model_index)
- # toolname_to_remove = self.table_widget.item(model_index.row(), 0).text()
- #
- # for toolid, dict_val in list(self.db_tool_dict.items()):
- # if int(toolname_to_remove) == int(toolid):
- # # remove from the storage
- # self.db_tool_dict.pop(toolid, None)
- #
- # self.build_db_ui()
- # self.callback_on_edited()
- # self.app.inform.emit('[success] %s' % _("Tool removed from Tools DB."))
- #
- # def on_export_tools_db_file(self):
- # self.app.defaults.report_usage("on_export_tools_db_file")
- # self.app.log.debug("on_export_tools_db_file()")
- #
- # date = str(datetime.today()).rpartition('.')[0]
- # date = ''.join(c for c in date if c not in ':-')
- # date = date.replace(' ', '_')
- #
- # filter__ = "Text File (*.TXT);;All Files (*.*)"
- # filename, _f = FCFileSaveDialog.get_saved_filename(caption=_("Export Tools Database"),
- # directory='{l_save}/FlatCAM_{n}_{date}'.format(
- # l_save=str(self.app.get_last_save_folder()),
- # n=_("Tools_Database"),
- # date=date),
- # ext_filter=filter__)
- #
- # filename = str(filename)
- #
- # if filename == "":
- # self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
- # return
- # else:
- # try:
- # f = open(filename, 'w')
- # f.close()
- # except PermissionError:
- # self.app.inform.emit('[WARNING] %s' %
- # _("Permission denied, saving not possible.\n"
- # "Most likely another app is holding the file open and not accessible."))
- # return
- # except IOError:
- # self.app.log.debug('Creating a new Tools DB file ...')
- # f = open(filename, 'w')
- # f.close()
- # except Exception:
- # e = sys.exc_info()[0]
- # self.app.log.error("Could not load Tools DB file.")
- # self.app.log.error(str(e))
- # self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
- # return
- #
- # # Save update options
- # try:
- # # Save Tools DB in a file
- # try:
- # with open(filename, "w") as f:
- # json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
- # except Exception as e:
- # self.app.log.debug("App.on_save_tools_db() --> %s" % str(e))
- # self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- # return
- # except Exception:
- # self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- # return
- #
- # self.app.inform.emit('[success] %s: %s' % (_("Exported Tools DB to"), filename))
- #
- # def on_import_tools_db_file(self):
- # self.app.defaults.report_usage("on_import_tools_db_file")
- # self.app.log.debug("on_import_tools_db_file()")
- #
- # filter__ = "Text File (*.TXT);;All Files (*.*)"
- # filename, _f = QtWidgets.QFileDialog.getOpenFileName(caption=_("Import FlatCAM Tools DB"), filter=filter__)
- #
- # if filename == "":
- # self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
- # else:
- # try:
- # with open(filename) as f:
- # tools_in_db = f.read()
- # except IOError:
- # self.app.log.error("Could not load Tools DB file.")
- # self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
- # return
- #
- # try:
- # self.db_tool_dict = json.loads(tools_in_db)
- # except Exception:
- # e = sys.exc_info()[0]
- # self.app.log.error(str(e))
- # self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
- # return
- #
- # self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
- # self.build_db_ui()
- # self.callback_on_edited()
- #
- # def on_save_tools_db(self, silent=False):
- # self.app.log.debug("ToolsDB.on_save_button() --> Saving Tools Database to file.")
- #
- # filename = self.app.tools_database_path()
- #
- # # Preferences save, update the color of the Tools DB Tab text
- # for idx in range(self.app_ui.plot_tab_area.count()):
- # if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- # self.app_ui.plot_tab_area.tabBar.setTabTextColor(idx, QtGui.QColor('black'))
- #
- # # Save Tools DB in a file
- # try:
- # f = open(filename, "w")
- # json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
- # f.close()
- # except Exception as e:
- # self.app.log.debug("ToolsDB.on_save_tools_db() --> %s" % str(e))
- # self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
- # return
- #
- # if not silent:
- # self.app.inform.emit('[success] %s' % _("Saved Tools DB."))
- #
- # def ui_connect(self):
- # try:
- # try:
- # self.table_widget.itemChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- # self.table_widget.itemChanged.connect(self.callback_on_edited)
- # except AttributeError:
- # pass
- #
- # for row in range(self.table_widget.rowCount()):
- # for col in range(self.table_widget.columnCount()):
- # # ComboBox
- # try:
- # try:
- # self.table_widget.cellWidget(row, col).currentIndexChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- # self.table_widget.cellWidget(row, col).currentIndexChanged.connect(self.callback_on_edited)
- # except AttributeError:
- # pass
- #
- # # CheckBox
- # try:
- # try:
- # self.table_widget.cellWidget(row, col).toggled.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- # self.table_widget.cellWidget(row, col).toggled.connect(self.callback_on_edited)
- # except AttributeError:
- # pass
- #
- # # SpinBox, DoubleSpinBox
- # try:
- # try:
- # self.table_widget.cellWidget(row, col).valueChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- # self.table_widget.cellWidget(row, col).valueChanged.connect(self.callback_on_edited)
- # except AttributeError:
- # pass
- #
- # def ui_disconnect(self):
- # try:
- # self.table_widget.itemChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- #
- # for row in range(self.table_widget.rowCount()):
- # for col in range(self.table_widget.columnCount()):
- # # ComboBox
- # try:
- # self.table_widget.cellWidget(row, col).currentIndexChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- #
- # # CheckBox
- # try:
- # self.table_widget.cellWidget(row, col).toggled.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- #
- # # SpinBox, DoubleSpinBox
- # try:
- # self.table_widget.cellWidget(row, col).valueChanged.disconnect(self.callback_on_edited)
- # except (TypeError, AttributeError):
- # pass
- #
- # def callback_on_edited(self):
- #
- # # update the dictionary storage self.db_tool_dict
- # self.db_tool_dict.clear()
- # dict_elem = {}
- # default_data = {}
- #
- # for row in range(self.table_widget.rowCount()):
- # new_toolid = row + 1
- # for col in range(self.table_widget.columnCount()):
- # column_header_text = self.table_widget.horizontalHeaderItem(col).text()
- # if column_header_text == _('Tool Name'):
- # dict_elem['name'] = self.table_widget.item(row, col).text()
- # elif column_header_text == _('Tool Dia'):
- # dict_elem['tooldia'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Tool Offset'):
- # dict_elem['offset'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Custom Offset'):
- # dict_elem['offset_value'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Tool Type'):
- # dict_elem['type'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Tool Shape'):
- # dict_elem['tool_type'] = self.table_widget.cellWidget(row, col).get_value()
- # else:
- # if column_header_text == _('Cut Z'):
- # default_data['cutz'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('MultiDepth'):
- # default_data['multidepth'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('DPP'):
- # default_data['depthperpass'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('V-Dia'):
- # default_data['vtipdia'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('V-Angle'):
- # default_data['vtipangle'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Travel Z'):
- # default_data['travelz'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('FR'):
- # default_data['feedrate'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('FR Z'):
- # default_data['feedrate_z'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('FR Rapids'):
- # default_data['feedrate_rapid'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Spindle Speed'):
- # default_data['spindlespeed'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Dwell'):
- # default_data['dwell'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Dwelltime'):
- # default_data['dwelltime'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Preprocessor'):
- # default_data['ppname_g'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('ExtraCut'):
- # default_data['extracut'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _("E-Cut Length"):
- # default_data['extracut_length'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Toolchange'):
- # default_data['toolchange'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Toolchange XY'):
- # default_data['toolchangexy'] = self.table_widget.item(row, col).text()
- # elif column_header_text == _('Toolchange Z'):
- # default_data['toolchangez'] = self.table_widget.cellWidget(row, col).get_value()
- # elif column_header_text == _('Start Z'):
- # default_data['startz'] = float(self.table_widget.item(row, col).text()) \
- # if self.table_widget.item(row, col).text() != '' else None
- # elif column_header_text == _('End Z'):
- # default_data['endz'] = self.table_widget.cellWidget(row, col).get_value()
- #
- # dict_elem['data'] = default_data
- # self.db_tool_dict.update(
- # {
- # new_toolid: deepcopy(dict_elem)
- # }
- # )
- #
- # self.callback_app()
- #
- # def on_tool_requested_from_app(self):
- # if not self.table_widget.selectionModel().selectedRows():
- # self.app.inform.emit('[WARNING_NOTCL] %s...' % _("No Tool/row selected in the Tools Database table"))
- # return
- #
- # model_index_list = self.table_widget.selectionModel().selectedRows()
- # for model_index in model_index_list:
- # selected_row = model_index.row()
- # tool_uid = selected_row + 1
- # for key in self.db_tool_dict.keys():
- # if str(key) == str(tool_uid):
- # selected_tool = self.db_tool_dict[key]
- # self.on_tool_request(tool=selected_tool)
- #
- # def on_cancel_tool(self):
- # for idx in range(self.app_ui.plot_tab_area.count()):
- # if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
- # wdg = self.app_ui.plot_tab_area.widget(idx)
- # wdg.deleteLater()
- # self.app_ui.plot_tab_area.removeTab(idx)
- # self.app.inform.emit('%s' % _("Cancelled adding tool from DB."))
- #
- # # def resize_new_tool_table_widget(self, min_size, max_size):
- # # """
- # # Resize the table widget responsible for adding new tool in the Tool Database
- # #
- # # :param min_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
- # # :param max_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
- # # :return:
- # # """
- # # t_height = self.t_height
- # # if max_size > min_size:
- # # t_height = self.t_height + self.new_tool_table_widget.verticalScrollBar().height()
- # #
- # # self.new_tool_table_widget.setMaximumHeight(t_height)
- #
- # def closeEvent(self, QCloseEvent):
- # super().closeEvent(QCloseEvent)
|