appDatabase.py 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390
  1. from PyQt5 import QtGui, QtCore, QtWidgets
  2. from appGUI.GUIElements import FCTable, FCEntry, FCButton, FCDoubleSpinner, FCComboBox, FCCheckBox, FCSpinner, \
  3. FCTree, RadioSet, FCFileSaveDialog
  4. from camlib import to_dict
  5. import sys
  6. import json
  7. from copy import deepcopy
  8. from datetime import datetime
  9. import math
  10. import gettext
  11. import appTranslation as fcTranslate
  12. import builtins
  13. fcTranslate.apply_language('strings')
  14. if '_' not in builtins.__dict__:
  15. _ = gettext.gettext
  16. class ToolsDB(QtWidgets.QWidget):
  17. mark_tools_rows = QtCore.pyqtSignal()
  18. def __init__(self, app, callback_on_edited, callback_on_tool_request, parent=None):
  19. super(ToolsDB, self).__init__(parent)
  20. self.app = app
  21. self.decimals = 4
  22. self.callback_app = callback_on_edited
  23. self.on_tool_request = callback_on_tool_request
  24. self.offset_item_options = ["Path", "In", "Out", "Custom"]
  25. self.type_item_options = ["Iso", "Rough", "Finish"]
  26. self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
  27. '''
  28. dict to hold all the tools in the Tools DB
  29. format:
  30. {
  31. tool_id: {
  32. 'name': 'new_tool'
  33. 'tooldia': self.app.defaults["geometry_cnctooldia"]
  34. 'offset': 'Path'
  35. 'offset_value': 0.0
  36. 'type': _('Rough'),
  37. 'tool_type': 'C1'
  38. 'data': dict()
  39. }
  40. }
  41. '''
  42. self.db_tool_dict = {}
  43. # layouts
  44. layout = QtWidgets.QVBoxLayout()
  45. self.setLayout(layout)
  46. table_hlay = QtWidgets.QHBoxLayout()
  47. layout.addLayout(table_hlay)
  48. self.table_widget = FCTable(drag_drop=True)
  49. self.table_widget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
  50. table_hlay.addWidget(self.table_widget)
  51. # set the number of columns and the headers tool tips
  52. self.configure_table()
  53. # pal = QtGui.QPalette()
  54. # pal.setColor(QtGui.QPalette.Background, Qt.white)
  55. # New Bookmark
  56. new_vlay = QtWidgets.QVBoxLayout()
  57. layout.addLayout(new_vlay)
  58. # new_tool_lbl = QtWidgets.QLabel('<b>%s</b>' % _("New Tool"))
  59. # new_vlay.addWidget(new_tool_lbl, alignment=QtCore.Qt.AlignBottom)
  60. self.buttons_frame = QtWidgets.QFrame()
  61. self.buttons_frame.setContentsMargins(0, 0, 0, 0)
  62. layout.addWidget(self.buttons_frame)
  63. self.buttons_box = QtWidgets.QHBoxLayout()
  64. self.buttons_box.setContentsMargins(0, 0, 0, 0)
  65. self.buttons_frame.setLayout(self.buttons_box)
  66. self.buttons_frame.show()
  67. add_entry_btn = FCButton(_("Add Geometry Tool in DB"))
  68. add_entry_btn.setToolTip(
  69. _("Add a new tool in the Tools Database.\n"
  70. "It will be used in the Geometry UI.\n"
  71. "You can edit it after it is added.")
  72. )
  73. self.buttons_box.addWidget(add_entry_btn)
  74. # add_fct_entry_btn = FCButton(_("Add Paint/NCC Tool in DB"))
  75. # add_fct_entry_btn.setToolTip(
  76. # _("Add a new tool in the Tools Database.\n"
  77. # "It will be used in the Paint/NCC Tools UI.\n"
  78. # "You can edit it after it is added.")
  79. # )
  80. # self.buttons_box.addWidget(add_fct_entry_btn)
  81. remove_entry_btn = FCButton(_("Delete Tool from DB"))
  82. remove_entry_btn.setToolTip(
  83. _("Remove a selection of tools in the Tools Database.")
  84. )
  85. self.buttons_box.addWidget(remove_entry_btn)
  86. export_db_btn = FCButton(_("Export DB"))
  87. export_db_btn.setToolTip(
  88. _("Save the Tools Database to a custom text file.")
  89. )
  90. self.buttons_box.addWidget(export_db_btn)
  91. import_db_btn = FCButton(_("Import DB"))
  92. import_db_btn.setToolTip(
  93. _("Load the Tools Database information's from a custom text file.")
  94. )
  95. self.buttons_box.addWidget(import_db_btn)
  96. self.add_tool_from_db = FCButton(_("Transfer the Tool"))
  97. self.add_tool_from_db.setToolTip(
  98. _("Add a new tool in the Tools Table of the\n"
  99. "active Geometry object after selecting a tool\n"
  100. "in the Tools Database.")
  101. )
  102. self.add_tool_from_db.hide()
  103. self.cancel_tool_from_db = FCButton(_("Cancel"))
  104. self.cancel_tool_from_db.hide()
  105. hlay = QtWidgets.QHBoxLayout()
  106. layout.addLayout(hlay)
  107. hlay.addWidget(self.add_tool_from_db)
  108. hlay.addWidget(self.cancel_tool_from_db)
  109. hlay.addStretch()
  110. # ##############################################################################
  111. # ######################## SIGNALS #############################################
  112. # ##############################################################################
  113. add_entry_btn.clicked.connect(self.on_tool_add)
  114. remove_entry_btn.clicked.connect(self.on_tool_delete)
  115. export_db_btn.clicked.connect(self.on_export_tools_db_file)
  116. import_db_btn.clicked.connect(self.on_import_tools_db_file)
  117. # closebtn.clicked.connect(self.accept)
  118. self.add_tool_from_db.clicked.connect(self.on_tool_requested_from_app)
  119. self.cancel_tool_from_db.clicked.connect(self.on_cancel_tool)
  120. self.setup_db_ui()
  121. def configure_table(self):
  122. self.table_widget.setColumnCount(27)
  123. # self.table_widget.setColumnWidth(0, 20)
  124. self.table_widget.setHorizontalHeaderLabels(
  125. [
  126. '#',
  127. _("Tool Name"),
  128. _("Tool Dia"),
  129. _("Tool Offset"),
  130. _("Custom Offset"),
  131. _("Tool Type"),
  132. _("Tool Shape"),
  133. _("Cut Z"),
  134. _("MultiDepth"),
  135. _("DPP"),
  136. _("V-Dia"),
  137. _("V-Angle"),
  138. _("Travel Z"),
  139. _("FR"),
  140. _("FR Z"),
  141. _("FR Rapids"),
  142. _("Spindle Speed"),
  143. _("Dwell"),
  144. _("Dwelltime"),
  145. _("Preprocessor"),
  146. _("ExtraCut"),
  147. _("E-Cut Length"),
  148. _("Toolchange"),
  149. _("Toolchange XY"),
  150. _("Toolchange Z"),
  151. _("Start Z"),
  152. _("End Z"),
  153. ]
  154. )
  155. self.table_widget.horizontalHeaderItem(0).setToolTip(
  156. _("Tool Index."))
  157. self.table_widget.horizontalHeaderItem(1).setToolTip(
  158. _("Tool name.\n"
  159. "This is not used in the app, it's function\n"
  160. "is to serve as a note for the user."))
  161. self.table_widget.horizontalHeaderItem(2).setToolTip(
  162. _("Tool Diameter."))
  163. self.table_widget.horizontalHeaderItem(3).setToolTip(
  164. _("Tool Offset.\n"
  165. "Can be of a few types:\n"
  166. "Path = zero offset\n"
  167. "In = offset inside by half of tool diameter\n"
  168. "Out = offset outside by half of tool diameter\n"
  169. "Custom = custom offset using the Custom Offset value"))
  170. self.table_widget.horizontalHeaderItem(4).setToolTip(
  171. _("Custom Offset.\n"
  172. "A value to be used as offset from the current path."))
  173. self.table_widget.horizontalHeaderItem(5).setToolTip(
  174. _("Tool Type.\n"
  175. "Can be:\n"
  176. "Iso = isolation cut\n"
  177. "Rough = rough cut, low feedrate, multiple passes\n"
  178. "Finish = finishing cut, high feedrate"))
  179. self.table_widget.horizontalHeaderItem(6).setToolTip(
  180. _("Tool Shape. \n"
  181. "Can be:\n"
  182. "C1 ... C4 = circular tool with x flutes\n"
  183. "B = ball tip milling tool\n"
  184. "V = v-shape milling tool"))
  185. self.table_widget.horizontalHeaderItem(7).setToolTip(
  186. _("Cutting Depth.\n"
  187. "The depth at which to cut into material."))
  188. self.table_widget.horizontalHeaderItem(8).setToolTip(
  189. _("Multi Depth.\n"
  190. "Selecting this will allow cutting in multiple passes,\n"
  191. "each pass adding a DPP parameter depth."))
  192. self.table_widget.horizontalHeaderItem(9).setToolTip(
  193. _("DPP. Depth per Pass.\n"
  194. "The value used to cut into material on each pass."))
  195. self.table_widget.horizontalHeaderItem(10).setToolTip(
  196. _("V-Dia.\n"
  197. "Diameter of the tip for V-Shape Tools."))
  198. self.table_widget.horizontalHeaderItem(11).setToolTip(
  199. _("V-Agle.\n"
  200. "Angle at the tip for the V-Shape Tools."))
  201. self.table_widget.horizontalHeaderItem(12).setToolTip(
  202. _("Clearance Height.\n"
  203. "Height at which the milling bit will travel between cuts,\n"
  204. "above the surface of the material, avoiding all fixtures."))
  205. self.table_widget.horizontalHeaderItem(13).setToolTip(
  206. _("FR. Feedrate\n"
  207. "The speed on XY plane used while cutting into material."))
  208. self.table_widget.horizontalHeaderItem(14).setToolTip(
  209. _("FR Z. Feedrate Z\n"
  210. "The speed on Z plane."))
  211. self.table_widget.horizontalHeaderItem(15).setToolTip(
  212. _("FR Rapids. Feedrate Rapids\n"
  213. "Speed used while moving as fast as possible.\n"
  214. "This is used only by some devices that can't use\n"
  215. "the G0 g-code command. Mostly 3D printers."))
  216. self.table_widget.horizontalHeaderItem(16).setToolTip(
  217. _("Spindle Speed.\n"
  218. "If it's left empty it will not be used.\n"
  219. "The speed of the spindle in RPM."))
  220. self.table_widget.horizontalHeaderItem(17).setToolTip(
  221. _("Dwell.\n"
  222. "Check this if a delay is needed to allow\n"
  223. "the spindle motor to reach its set speed."))
  224. self.table_widget.horizontalHeaderItem(18).setToolTip(
  225. _("Dwell Time.\n"
  226. "A delay used to allow the motor spindle reach its set speed."))
  227. self.table_widget.horizontalHeaderItem(19).setToolTip(
  228. _("Preprocessor.\n"
  229. "A selection of files that will alter the generated G-code\n"
  230. "to fit for a number of use cases."))
  231. self.table_widget.horizontalHeaderItem(20).setToolTip(
  232. _("Extra Cut.\n"
  233. "If checked, after a isolation is finished an extra cut\n"
  234. "will be added where the start and end of isolation meet\n"
  235. "such as that this point is covered by this extra cut to\n"
  236. "ensure a complete isolation."))
  237. self.table_widget.horizontalHeaderItem(21).setToolTip(
  238. _("Extra Cut length.\n"
  239. "If checked, after a isolation is finished an extra cut\n"
  240. "will be added where the start and end of isolation meet\n"
  241. "such as that this point is covered by this extra cut to\n"
  242. "ensure a complete isolation. This is the length of\n"
  243. "the extra cut."))
  244. self.table_widget.horizontalHeaderItem(22).setToolTip(
  245. _("Toolchange.\n"
  246. "It will create a toolchange event.\n"
  247. "The kind of toolchange is determined by\n"
  248. "the preprocessor file."))
  249. self.table_widget.horizontalHeaderItem(23).setToolTip(
  250. _("Toolchange XY.\n"
  251. "A set of coordinates in the format (x, y).\n"
  252. "Will determine the cartesian position of the point\n"
  253. "where the tool change event take place."))
  254. self.table_widget.horizontalHeaderItem(24).setToolTip(
  255. _("Toolchange Z.\n"
  256. "The position on Z plane where the tool change event take place."))
  257. self.table_widget.horizontalHeaderItem(25).setToolTip(
  258. _("Start Z.\n"
  259. "If it's left empty it will not be used.\n"
  260. "A position on Z plane to move immediately after job start."))
  261. self.table_widget.horizontalHeaderItem(26).setToolTip(
  262. _("End Z.\n"
  263. "A position on Z plane to move immediately after job stop."))
  264. def setup_db_ui(self):
  265. filename = self.app.data_path + '/tools_db.FlatDB'
  266. # load the database tools from the file
  267. try:
  268. with open(filename) as f:
  269. tools = f.read()
  270. except IOError:
  271. self.app.log.error("Could not load tools DB file.")
  272. self.app.inform.emit('[ERROR] %s' % _("Could not load Tools DB file."))
  273. return
  274. try:
  275. self.db_tool_dict = json.loads(tools)
  276. except Exception:
  277. e = sys.exc_info()[0]
  278. self.app.log.error(str(e))
  279. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  280. return
  281. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  282. self.build_db_ui()
  283. self.table_widget.setupContextMenu()
  284. self.table_widget.addContextMenu(
  285. _("Add to DB"), self.on_tool_add, icon=QtGui.QIcon(self.app.resource_location + "/plus16.png"))
  286. self.table_widget.addContextMenu(
  287. _("Copy from DB"), self.on_tool_copy, icon=QtGui.QIcon(self.app.resource_location + "/copy16.png"))
  288. self.table_widget.addContextMenu(
  289. _("Delete from DB"), self.on_tool_delete, icon=QtGui.QIcon(self.app.resource_location + "/delete32.png"))
  290. def build_db_ui(self):
  291. self.ui_disconnect()
  292. self.table_widget.setRowCount(len(self.db_tool_dict))
  293. nr_crt = 0
  294. for toolid, dict_val in self.db_tool_dict.items():
  295. row = nr_crt
  296. nr_crt += 1
  297. t_name = dict_val['name']
  298. try:
  299. self.add_tool_table_line(row, name=t_name, widget=self.table_widget, tooldict=dict_val)
  300. except Exception as e:
  301. self.app.log.debug("ToolDB.build_db_ui.add_tool_table_line() --> %s" % str(e))
  302. vertical_header = self.table_widget.verticalHeader()
  303. vertical_header.hide()
  304. horizontal_header = self.table_widget.horizontalHeader()
  305. horizontal_header.setMinimumSectionSize(10)
  306. horizontal_header.setDefaultSectionSize(70)
  307. self.table_widget.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents)
  308. for x in range(27):
  309. self.table_widget.resizeColumnToContents(x)
  310. horizontal_header.setSectionResizeMode(0, QtWidgets.QHeaderView.Fixed)
  311. # horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.Stretch)
  312. # horizontal_header.setSectionResizeMode(13, QtWidgets.QHeaderView.Fixed)
  313. horizontal_header.resizeSection(0, 20)
  314. # horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.ResizeToContents)
  315. # horizontal_header.setSectionResizeMode(2, QtWidgets.QHeaderView.Stretch)
  316. self.ui_connect()
  317. def add_tool_table_line(self, row, name, widget, tooldict):
  318. data = tooldict['data']
  319. nr_crt = row + 1
  320. id_item = QtWidgets.QTableWidgetItem('%d' % int(nr_crt))
  321. # id_item.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
  322. flags = id_item.flags() & ~QtCore.Qt.ItemIsEditable
  323. id_item.setFlags(flags)
  324. widget.setItem(row, 0, id_item) # Tool name/id
  325. tool_name_item = QtWidgets.QTableWidgetItem(name)
  326. widget.setItem(row, 1, tool_name_item)
  327. dia_item = FCDoubleSpinner()
  328. dia_item.set_precision(self.decimals)
  329. dia_item.setSingleStep(0.1)
  330. dia_item.set_range(0.0, 9999.9999)
  331. dia_item.set_value(float(tooldict['tooldia']))
  332. widget.setCellWidget(row, 2, dia_item)
  333. tool_offset_item = FCComboBox()
  334. for item in self.offset_item_options:
  335. tool_offset_item.addItem(item)
  336. tool_offset_item.set_value(tooldict['offset'])
  337. widget.setCellWidget(row, 3, tool_offset_item)
  338. c_offset_item = FCDoubleSpinner()
  339. c_offset_item.set_precision(self.decimals)
  340. c_offset_item.setSingleStep(0.1)
  341. c_offset_item.set_range(-9999.9999, 9999.9999)
  342. c_offset_item.set_value(float(tooldict['offset_value']))
  343. widget.setCellWidget(row, 4, c_offset_item)
  344. tt_item = FCComboBox()
  345. for item in self.type_item_options:
  346. tt_item.addItem(item)
  347. tt_item.set_value(tooldict['type'])
  348. widget.setCellWidget(row, 5, tt_item)
  349. tshape_item = FCComboBox()
  350. for item in self.tool_type_item_options:
  351. tshape_item.addItem(item)
  352. tshape_item.set_value(tooldict['tool_type'])
  353. widget.setCellWidget(row, 6, tshape_item)
  354. cutz_item = FCDoubleSpinner()
  355. cutz_item.set_precision(self.decimals)
  356. cutz_item.setSingleStep(0.1)
  357. if self.app.defaults['global_machinist_setting']:
  358. cutz_item.set_range(-9999.9999, 9999.9999)
  359. else:
  360. cutz_item.set_range(-9999.9999, -0.0000)
  361. cutz_item.set_value(float(data['cutz']))
  362. widget.setCellWidget(row, 7, cutz_item)
  363. multidepth_item = FCCheckBox()
  364. multidepth_item.set_value(data['multidepth'])
  365. widget.setCellWidget(row, 8, multidepth_item)
  366. # to make the checkbox centered but it can no longer have it's value accessed - needs a fix using findchild()
  367. # multidepth_item = QtWidgets.QWidget()
  368. # cb = FCCheckBox()
  369. # cb.set_value(data['multidepth'])
  370. # qhboxlayout = QtWidgets.QHBoxLayout(multidepth_item)
  371. # qhboxlayout.addWidget(cb)
  372. # qhboxlayout.setAlignment(QtCore.Qt.AlignCenter)
  373. # qhboxlayout.setContentsMargins(0, 0, 0, 0)
  374. # widget.setCellWidget(row, 8, multidepth_item)
  375. depth_per_pass_item = FCDoubleSpinner()
  376. depth_per_pass_item.set_precision(self.decimals)
  377. depth_per_pass_item.setSingleStep(0.1)
  378. depth_per_pass_item.set_range(0.0, 9999.9999)
  379. depth_per_pass_item.set_value(float(data['depthperpass']))
  380. widget.setCellWidget(row, 9, depth_per_pass_item)
  381. vtip_dia_item = FCDoubleSpinner()
  382. vtip_dia_item.set_precision(self.decimals)
  383. vtip_dia_item.setSingleStep(0.1)
  384. vtip_dia_item.set_range(0.0, 9999.9999)
  385. vtip_dia_item.set_value(float(data['vtipdia']))
  386. widget.setCellWidget(row, 10, vtip_dia_item)
  387. vtip_angle_item = FCDoubleSpinner()
  388. vtip_angle_item.set_precision(self.decimals)
  389. vtip_angle_item.setSingleStep(0.1)
  390. vtip_angle_item.set_range(-360.0, 360.0)
  391. vtip_angle_item.set_value(float(data['vtipangle']))
  392. widget.setCellWidget(row, 11, vtip_angle_item)
  393. travelz_item = FCDoubleSpinner()
  394. travelz_item.set_precision(self.decimals)
  395. travelz_item.setSingleStep(0.1)
  396. if self.app.defaults['global_machinist_setting']:
  397. travelz_item.set_range(-9999.9999, 9999.9999)
  398. else:
  399. travelz_item.set_range(0.0000, 9999.9999)
  400. travelz_item.set_value(float(data['travelz']))
  401. widget.setCellWidget(row, 12, travelz_item)
  402. fr_item = FCDoubleSpinner()
  403. fr_item.set_precision(self.decimals)
  404. fr_item.set_range(0.0, 9999.9999)
  405. fr_item.set_value(float(data['feedrate']))
  406. widget.setCellWidget(row, 13, fr_item)
  407. frz_item = FCDoubleSpinner()
  408. frz_item.set_precision(self.decimals)
  409. frz_item.set_range(0.0, 9999.9999)
  410. frz_item.set_value(float(data['feedrate_z']))
  411. widget.setCellWidget(row, 14, frz_item)
  412. frrapids_item = FCDoubleSpinner()
  413. frrapids_item.set_precision(self.decimals)
  414. frrapids_item.set_range(0.0, 9999.9999)
  415. frrapids_item.set_value(float(data['feedrate_rapid']))
  416. widget.setCellWidget(row, 15, frrapids_item)
  417. spindlespeed_item = FCSpinner()
  418. spindlespeed_item.set_range(0, 1000000)
  419. spindlespeed_item.set_value(int(data['spindlespeed']))
  420. spindlespeed_item.set_step(100)
  421. widget.setCellWidget(row, 16, spindlespeed_item)
  422. dwell_item = FCCheckBox()
  423. dwell_item.set_value(data['dwell'])
  424. widget.setCellWidget(row, 17, dwell_item)
  425. dwelltime_item = FCDoubleSpinner()
  426. dwelltime_item.set_precision(self.decimals)
  427. dwelltime_item.set_range(0.0000, 9999.9999)
  428. dwelltime_item.set_value(float(data['dwelltime']))
  429. widget.setCellWidget(row, 18, dwelltime_item)
  430. pp_item = FCComboBox()
  431. for item in self.app.preprocessors:
  432. pp_item.addItem(item)
  433. pp_item.set_value(data['ppname_g'])
  434. widget.setCellWidget(row, 19, pp_item)
  435. ecut_item = FCCheckBox()
  436. ecut_item.set_value(data['extracut'])
  437. widget.setCellWidget(row, 20, ecut_item)
  438. ecut_length_item = FCDoubleSpinner()
  439. ecut_length_item.set_precision(self.decimals)
  440. ecut_length_item.set_range(0.0000, 9999.9999)
  441. ecut_length_item.set_value(data['extracut_length'])
  442. widget.setCellWidget(row, 21, ecut_length_item)
  443. toolchange_item = FCCheckBox()
  444. toolchange_item.set_value(data['toolchange'])
  445. widget.setCellWidget(row, 22, toolchange_item)
  446. toolchangexy_item = QtWidgets.QTableWidgetItem(str(data['toolchangexy']) if data['toolchangexy'] else '')
  447. widget.setItem(row, 23, toolchangexy_item)
  448. toolchangez_item = FCDoubleSpinner()
  449. toolchangez_item.set_precision(self.decimals)
  450. toolchangez_item.setSingleStep(0.1)
  451. if self.app.defaults['global_machinist_setting']:
  452. toolchangez_item.set_range(-9999.9999, 9999.9999)
  453. else:
  454. toolchangez_item.set_range(0.0000, 9999.9999)
  455. toolchangez_item.set_value(float(data['toolchangez']))
  456. widget.setCellWidget(row, 24, toolchangez_item)
  457. startz_item = QtWidgets.QTableWidgetItem(str(data['startz']) if data['startz'] else '')
  458. widget.setItem(row, 25, startz_item)
  459. endz_item = FCDoubleSpinner()
  460. endz_item.set_precision(self.decimals)
  461. endz_item.setSingleStep(0.1)
  462. if self.app.defaults['global_machinist_setting']:
  463. endz_item.set_range(-9999.9999, 9999.9999)
  464. else:
  465. endz_item.set_range(0.0000, 9999.9999)
  466. endz_item.set_value(float(data['endz']))
  467. widget.setCellWidget(row, 26, endz_item)
  468. def on_tool_add(self):
  469. """
  470. Add a tool in the DB Tool Table
  471. :return: None
  472. """
  473. default_data = {}
  474. default_data.update({
  475. "cutz": float(self.app.defaults["geometry_cutz"]),
  476. "multidepth": self.app.defaults["geometry_multidepth"],
  477. "depthperpass": float(self.app.defaults["geometry_depthperpass"]),
  478. "vtipdia": float(self.app.defaults["geometry_vtipdia"]),
  479. "vtipangle": float(self.app.defaults["geometry_vtipangle"]),
  480. "travelz": float(self.app.defaults["geometry_travelz"]),
  481. "feedrate": float(self.app.defaults["geometry_feedrate"]),
  482. "feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),
  483. "feedrate_rapid": float(self.app.defaults["geometry_feedrate_rapid"]),
  484. "spindlespeed": self.app.defaults["geometry_spindlespeed"],
  485. "dwell": self.app.defaults["geometry_dwell"],
  486. "dwelltime": float(self.app.defaults["geometry_dwelltime"]),
  487. "ppname_g": self.app.defaults["geometry_ppname_g"],
  488. "extracut": self.app.defaults["geometry_extracut"],
  489. "extracut_length": float(self.app.defaults["geometry_extracut_length"]),
  490. "toolchange": self.app.defaults["geometry_toolchange"],
  491. "toolchangexy": self.app.defaults["geometry_toolchangexy"],
  492. "toolchangez": float(self.app.defaults["geometry_toolchangez"]),
  493. "startz": self.app.defaults["geometry_startz"],
  494. "endz": float(self.app.defaults["geometry_endz"])
  495. })
  496. dict_elem = {}
  497. dict_elem['name'] = 'new_tool'
  498. if type(self.app.defaults["geometry_cnctooldia"]) == float:
  499. dict_elem['tooldia'] = self.app.defaults["geometry_cnctooldia"]
  500. else:
  501. try:
  502. tools_string = self.app.defaults["geometry_cnctooldia"].split(",")
  503. tools_diameters = [eval(a) for a in tools_string if a != '']
  504. dict_elem['tooldia'] = tools_diameters[0] if tools_diameters else 0.0
  505. except Exception as e:
  506. self.app.log.debug("ToolDB.on_tool_add() --> %s" % str(e))
  507. return
  508. dict_elem['offset'] = 'Path'
  509. dict_elem['offset_value'] = 0.0
  510. dict_elem['type'] = 'Rough'
  511. dict_elem['tool_type'] = 'C1'
  512. dict_elem['data'] = default_data
  513. new_toolid = len(self.db_tool_dict) + 1
  514. self.db_tool_dict[new_toolid] = deepcopy(dict_elem)
  515. # add the new entry to the Tools DB table
  516. self.build_db_ui()
  517. self.callback_on_edited()
  518. self.app.inform.emit('[success] %s' % _("Tool added to DB."))
  519. def on_tool_copy(self):
  520. """
  521. Copy a selection of Tools in the Tools DB table
  522. :return:
  523. """
  524. new_tool_id = self.table_widget.rowCount() + 1
  525. for model_index in self.table_widget.selectionModel().selectedRows():
  526. # index = QtCore.QPersistentModelIndex(model_index)
  527. old_tool_id = self.table_widget.item(model_index.row(), 0).text()
  528. new_tool_id += 1
  529. for toolid, dict_val in list(self.db_tool_dict.items()):
  530. if int(old_tool_id) == int(toolid):
  531. self.db_tool_dict.update({
  532. new_tool_id: deepcopy(dict_val)
  533. })
  534. self.build_db_ui()
  535. self.callback_on_edited()
  536. self.app.inform.emit('[success] %s' % _("Tool copied from Tools DB."))
  537. def on_tool_delete(self):
  538. """
  539. Delete a selection of Tools in the Tools DB table
  540. :return:
  541. """
  542. for model_index in self.table_widget.selectionModel().selectedRows():
  543. # index = QtCore.QPersistentModelIndex(model_index)
  544. toolname_to_remove = self.table_widget.item(model_index.row(), 0).text()
  545. for toolid, dict_val in list(self.db_tool_dict.items()):
  546. if int(toolname_to_remove) == int(toolid):
  547. # remove from the storage
  548. self.db_tool_dict.pop(toolid, None)
  549. self.build_db_ui()
  550. self.callback_on_edited()
  551. self.app.inform.emit('[success] %s' % _("Tool removed from Tools DB."))
  552. def on_export_tools_db_file(self):
  553. self.app.defaults.report_usage("on_export_tools_db_file")
  554. self.app.log.debug("on_export_tools_db_file()")
  555. date = str(datetime.today()).rpartition('.')[0]
  556. date = ''.join(c for c in date if c not in ':-')
  557. date = date.replace(' ', '_')
  558. filter__ = "Text File (*.TXT);;All Files (*.*)"
  559. filename, _f = FCFileSaveDialog.get_saved_filename(caption=_("Export Tools Database"),
  560. directory='{l_save}/FlatCAM_{n}_{date}'.format(
  561. l_save=str(self.app.get_last_save_folder()),
  562. n=_("Tools_Database"),
  563. date=date),
  564. ext_filter=filter__)
  565. filename = str(filename)
  566. if filename == "":
  567. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  568. return
  569. else:
  570. try:
  571. f = open(filename, 'w')
  572. f.close()
  573. except PermissionError:
  574. self.app.inform.emit('[WARNING] %s' %
  575. _("Permission denied, saving not possible.\n"
  576. "Most likely another app is holding the file open and not accessible."))
  577. return
  578. except IOError:
  579. self.app.log.debug('Creating a new Tools DB file ...')
  580. f = open(filename, 'w')
  581. f.close()
  582. except Exception:
  583. e = sys.exc_info()[0]
  584. self.app.log.error("Could not load Tools DB file.")
  585. self.app.log.error(str(e))
  586. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  587. return
  588. # Save update options
  589. try:
  590. # Save Tools DB in a file
  591. try:
  592. with open(filename, "w") as f:
  593. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  594. except Exception as e:
  595. self.app.log.debug("App.on_save_tools_db() --> %s" % str(e))
  596. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  597. return
  598. except Exception:
  599. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  600. return
  601. self.app.inform.emit('[success] %s: %s' % (_("Exported Tools DB to"), filename))
  602. def on_import_tools_db_file(self):
  603. self.app.defaults.report_usage("on_import_tools_db_file")
  604. self.app.log.debug("on_import_tools_db_file()")
  605. filter__ = "Text File (*.TXT);;All Files (*.*)"
  606. filename, _f = QtWidgets.QFileDialog.getOpenFileName(caption=_("Import FlatCAM Tools DB"), filter=filter__)
  607. if filename == "":
  608. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  609. else:
  610. try:
  611. with open(filename) as f:
  612. tools_in_db = f.read()
  613. except IOError:
  614. self.app.log.error("Could not load Tools DB file.")
  615. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  616. return
  617. try:
  618. self.db_tool_dict = json.loads(tools_in_db)
  619. except Exception:
  620. e = sys.exc_info()[0]
  621. self.app.log.error(str(e))
  622. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  623. return
  624. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  625. self.build_db_ui()
  626. self.callback_on_edited()
  627. def on_save_tools_db(self, silent=False):
  628. self.app.log.debug("ToolsDB.on_save_button() --> Saving Tools Database to file.")
  629. filename = self.app.data_path + "/tools_db.FlatDB"
  630. # Preferences save, update the color of the Tools DB Tab text
  631. for idx in range(self.app_ui.plot_tab_area.count()):
  632. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  633. self.app_ui.plot_tab_area.tabBar.setTabTextColor(idx, QtGui.QColor('black'))
  634. # Save Tools DB in a file
  635. try:
  636. f = open(filename, "w")
  637. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  638. f.close()
  639. except Exception as e:
  640. self.app.log.debug("ToolsDB.on_save_tools_db() --> %s" % str(e))
  641. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  642. return
  643. if not silent:
  644. self.app.inform.emit('[success] %s' % _("Saved Tools DB."))
  645. def ui_connect(self):
  646. try:
  647. try:
  648. self.table_widget.itemChanged.disconnect(self.callback_on_edited)
  649. except (TypeError, AttributeError):
  650. pass
  651. self.table_widget.itemChanged.connect(self.callback_on_edited)
  652. except AttributeError:
  653. pass
  654. for row in range(self.table_widget.rowCount()):
  655. for col in range(self.table_widget.columnCount()):
  656. # ComboBox
  657. try:
  658. try:
  659. self.table_widget.cellWidget(row, col).currentIndexChanged.disconnect(self.callback_on_edited)
  660. except (TypeError, AttributeError):
  661. pass
  662. self.table_widget.cellWidget(row, col).currentIndexChanged.connect(self.callback_on_edited)
  663. except AttributeError:
  664. pass
  665. # CheckBox
  666. try:
  667. try:
  668. self.table_widget.cellWidget(row, col).toggled.disconnect(self.callback_on_edited)
  669. except (TypeError, AttributeError):
  670. pass
  671. self.table_widget.cellWidget(row, col).toggled.connect(self.callback_on_edited)
  672. except AttributeError:
  673. pass
  674. # SpinBox, DoubleSpinBox
  675. try:
  676. try:
  677. self.table_widget.cellWidget(row, col).valueChanged.disconnect(self.callback_on_edited)
  678. except (TypeError, AttributeError):
  679. pass
  680. self.table_widget.cellWidget(row, col).valueChanged.connect(self.callback_on_edited)
  681. except AttributeError:
  682. pass
  683. def ui_disconnect(self):
  684. try:
  685. self.table_widget.itemChanged.disconnect(self.callback_on_edited)
  686. except (TypeError, AttributeError):
  687. pass
  688. for row in range(self.table_widget.rowCount()):
  689. for col in range(self.table_widget.columnCount()):
  690. # ComboBox
  691. try:
  692. self.table_widget.cellWidget(row, col).currentIndexChanged.disconnect(self.callback_on_edited)
  693. except (TypeError, AttributeError):
  694. pass
  695. # CheckBox
  696. try:
  697. self.table_widget.cellWidget(row, col).toggled.disconnect(self.callback_on_edited)
  698. except (TypeError, AttributeError):
  699. pass
  700. # SpinBox, DoubleSpinBox
  701. try:
  702. self.table_widget.cellWidget(row, col).valueChanged.disconnect(self.callback_on_edited)
  703. except (TypeError, AttributeError):
  704. pass
  705. def callback_on_edited(self):
  706. # update the dictionary storage self.db_tool_dict
  707. self.db_tool_dict.clear()
  708. dict_elem = {}
  709. default_data = {}
  710. for row in range(self.table_widget.rowCount()):
  711. new_toolid = row + 1
  712. for col in range(self.table_widget.columnCount()):
  713. column_header_text = self.table_widget.horizontalHeaderItem(col).text()
  714. if column_header_text == _('Tool Name'):
  715. dict_elem['name'] = self.table_widget.item(row, col).text()
  716. elif column_header_text == _('Tool Dia'):
  717. dict_elem['tooldia'] = self.table_widget.cellWidget(row, col).get_value()
  718. elif column_header_text == _('Tool Offset'):
  719. dict_elem['offset'] = self.table_widget.cellWidget(row, col).get_value()
  720. elif column_header_text == _('Custom Offset'):
  721. dict_elem['offset_value'] = self.table_widget.cellWidget(row, col).get_value()
  722. elif column_header_text == _('Tool Type'):
  723. dict_elem['type'] = self.table_widget.cellWidget(row, col).get_value()
  724. elif column_header_text == _('Tool Shape'):
  725. dict_elem['tool_type'] = self.table_widget.cellWidget(row, col).get_value()
  726. else:
  727. if column_header_text == _('Cut Z'):
  728. default_data['cutz'] = self.table_widget.cellWidget(row, col).get_value()
  729. elif column_header_text == _('MultiDepth'):
  730. default_data['multidepth'] = self.table_widget.cellWidget(row, col).get_value()
  731. elif column_header_text == _('DPP'):
  732. default_data['depthperpass'] = self.table_widget.cellWidget(row, col).get_value()
  733. elif column_header_text == _('V-Dia'):
  734. default_data['vtipdia'] = self.table_widget.cellWidget(row, col).get_value()
  735. elif column_header_text == _('V-Angle'):
  736. default_data['vtipangle'] = self.table_widget.cellWidget(row, col).get_value()
  737. elif column_header_text == _('Travel Z'):
  738. default_data['travelz'] = self.table_widget.cellWidget(row, col).get_value()
  739. elif column_header_text == _('FR'):
  740. default_data['feedrate'] = self.table_widget.cellWidget(row, col).get_value()
  741. elif column_header_text == _('FR Z'):
  742. default_data['feedrate_z'] = self.table_widget.cellWidget(row, col).get_value()
  743. elif column_header_text == _('FR Rapids'):
  744. default_data['feedrate_rapid'] = self.table_widget.cellWidget(row, col).get_value()
  745. elif column_header_text == _('Spindle Speed'):
  746. default_data['spindlespeed'] = self.table_widget.cellWidget(row, col).get_value()
  747. elif column_header_text == _('Dwell'):
  748. default_data['dwell'] = self.table_widget.cellWidget(row, col).get_value()
  749. elif column_header_text == _('Dwelltime'):
  750. default_data['dwelltime'] = self.table_widget.cellWidget(row, col).get_value()
  751. elif column_header_text == _('Preprocessor'):
  752. default_data['ppname_g'] = self.table_widget.cellWidget(row, col).get_value()
  753. elif column_header_text == _('ExtraCut'):
  754. default_data['extracut'] = self.table_widget.cellWidget(row, col).get_value()
  755. elif column_header_text == _("E-Cut Length"):
  756. default_data['extracut_length'] = self.table_widget.cellWidget(row, col).get_value()
  757. elif column_header_text == _('Toolchange'):
  758. default_data['toolchange'] = self.table_widget.cellWidget(row, col).get_value()
  759. elif column_header_text == _('Toolchange XY'):
  760. default_data['toolchangexy'] = self.table_widget.item(row, col).text()
  761. elif column_header_text == _('Toolchange Z'):
  762. default_data['toolchangez'] = self.table_widget.cellWidget(row, col).get_value()
  763. elif column_header_text == _('Start Z'):
  764. default_data['startz'] = float(self.table_widget.item(row, col).text()) \
  765. if self.table_widget.item(row, col).text() != '' else None
  766. elif column_header_text == _('End Z'):
  767. default_data['endz'] = self.table_widget.cellWidget(row, col).get_value()
  768. dict_elem['data'] = default_data
  769. self.db_tool_dict.update(
  770. {
  771. new_toolid: deepcopy(dict_elem)
  772. }
  773. )
  774. self.callback_app()
  775. def on_tool_requested_from_app(self):
  776. if not self.table_widget.selectionModel().selectedRows():
  777. self.app.inform.emit('[WARNING_NOTCL] %s...' % _("No Tool/row selected in the Tools Database table"))
  778. return
  779. model_index_list = self.table_widget.selectionModel().selectedRows()
  780. for model_index in model_index_list:
  781. selected_row = model_index.row()
  782. tool_uid = selected_row + 1
  783. for key in self.db_tool_dict.keys():
  784. if str(key) == str(tool_uid):
  785. selected_tool = self.db_tool_dict[key]
  786. self.on_tool_request(tool=selected_tool)
  787. def on_cancel_tool(self):
  788. for idx in range(self.app_ui.plot_tab_area.count()):
  789. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  790. wdg = self.app_ui.plot_tab_area.widget(idx)
  791. wdg.deleteLater()
  792. self.app_ui.plot_tab_area.removeTab(idx)
  793. self.app.inform.emit('%s' % _("Cancelled adding tool from DB."))
  794. # def resize_new_tool_table_widget(self, min_size, max_size):
  795. # """
  796. # Resize the table widget responsible for adding new tool in the Tool Database
  797. #
  798. # :param min_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  799. # :param max_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  800. # :return:
  801. # """
  802. # t_height = self.t_height
  803. # if max_size > min_size:
  804. # t_height = self.t_height + self.new_tool_table_widget.verticalScrollBar().height()
  805. #
  806. # self.new_tool_table_widget.setMaximumHeight(t_height)
  807. def closeEvent(self, QCloseEvent):
  808. super().closeEvent(QCloseEvent)
  809. class ToolsDB2UI:
  810. def __init__(self, app, grid_layout):
  811. self.app = app
  812. self.decimals = self.app.decimals
  813. settings = QtCore.QSettings("Open Source", "FlatCAM")
  814. if settings.contains("machinist"):
  815. self.machinist_setting = settings.value('machinist', type=int)
  816. else:
  817. self.machinist_setting = 0
  818. self.g_lay = grid_layout
  819. tree_layout = QtWidgets.QVBoxLayout()
  820. self.g_lay.addLayout(tree_layout, 0, 0)
  821. self.tree_widget = FCTree(columns=2, header_hidden=False, protected_column=[0])
  822. self.tree_widget.setHeaderLabels(["ID", "Tool Name"])
  823. self.tree_widget.setIndentation(0)
  824. self.tree_widget.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
  825. self.tree_widget.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
  826. # set alternating colors
  827. # self.tree_widget.setAlternatingRowColors(True)
  828. # p = QtGui.QPalette()
  829. # p.setColor(QtGui.QPalette.AlternateBase, QtGui.QColor(226, 237, 253) )
  830. # self.tree_widget.setPalette(p)
  831. self.tree_widget.setSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.MinimumExpanding)
  832. tree_layout.addWidget(self.tree_widget)
  833. param_hlay = QtWidgets.QHBoxLayout()
  834. param_area = QtWidgets.QScrollArea()
  835. param_widget = QtWidgets.QWidget()
  836. param_widget.setLayout(param_hlay)
  837. param_area.setWidget(param_widget)
  838. param_area.setWidgetResizable(True)
  839. self.g_lay.addWidget(param_area, 0, 1)
  840. # ###########################################################################
  841. # ############## The UI form ################################################
  842. # ###########################################################################
  843. # Tool description box
  844. self.tool_description_box = QtWidgets.QGroupBox()
  845. self.tool_description_box.setStyleSheet("""
  846. QGroupBox
  847. {
  848. font-size: 16px;
  849. font-weight: bold;
  850. }
  851. """)
  852. self.description_vlay = QtWidgets.QVBoxLayout()
  853. self.tool_description_box.setTitle(_("Tool Description"))
  854. self.tool_description_box.setFixedWidth(250)
  855. # Milling box
  856. self.milling_box = QtWidgets.QGroupBox()
  857. self.milling_box.setStyleSheet("""
  858. QGroupBox
  859. {
  860. font-size: 16px;
  861. font-weight: bold;
  862. }
  863. """)
  864. self.milling_vlay = QtWidgets.QVBoxLayout()
  865. self.milling_box.setTitle(_("Milling Parameters"))
  866. self.milling_box.setFixedWidth(250)
  867. # NCC TOOL BOX
  868. self.ncc_box = QtWidgets.QGroupBox()
  869. self.ncc_box.setStyleSheet("""
  870. QGroupBox
  871. {
  872. font-size: 16px;
  873. font-weight: bold;
  874. }
  875. """)
  876. self.ncc_vlay = QtWidgets.QVBoxLayout()
  877. self.ncc_box.setTitle(_("NCC Parameters"))
  878. self.ncc_box.setFixedWidth(250)
  879. # PAINT TOOL BOX
  880. self.paint_box = QtWidgets.QGroupBox()
  881. self.paint_box.setStyleSheet("""
  882. QGroupBox
  883. {
  884. font-size: 16px;
  885. font-weight: bold;
  886. }
  887. """)
  888. self.paint_vlay = QtWidgets.QVBoxLayout()
  889. self.paint_box.setTitle(_("Paint Parameters"))
  890. self.paint_box.setFixedWidth(250)
  891. # ISOLATION TOOL BOX
  892. self.iso_box = QtWidgets.QGroupBox()
  893. self.iso_box.setStyleSheet("""
  894. QGroupBox
  895. {
  896. font-size: 16px;
  897. font-weight: bold;
  898. }
  899. """)
  900. self.iso_vlay = QtWidgets.QVBoxLayout()
  901. self.iso_box.setTitle(_("Isolation Parameters"))
  902. self.iso_box.setFixedWidth(250)
  903. # DRILLING TOOL BOX
  904. self.drill_box = QtWidgets.QGroupBox()
  905. self.drill_box.setStyleSheet("""
  906. QGroupBox
  907. {
  908. font-size: 16px;
  909. font-weight: bold;
  910. }
  911. """)
  912. self.drill_vlay = QtWidgets.QVBoxLayout()
  913. self.drill_box.setTitle(_("Drilling Parameters"))
  914. self.drill_box.setFixedWidth(250)
  915. # CUTOUT TOOL BOX
  916. self.cutout_box = QtWidgets.QGroupBox()
  917. self.cutout_box.setStyleSheet("""
  918. QGroupBox
  919. {
  920. font-size: 16px;
  921. font-weight: bold;
  922. }
  923. """)
  924. self.cutout_vlay = QtWidgets.QVBoxLayout()
  925. self.cutout_box.setTitle(_("Cutout Parameters"))
  926. self.cutout_box.setFixedWidth(250)
  927. # Layout Constructor
  928. self.tool_description_box.setLayout(self.description_vlay)
  929. self.milling_box.setLayout(self.milling_vlay)
  930. self.ncc_box.setLayout(self.ncc_vlay)
  931. self.paint_box.setLayout(self.paint_vlay)
  932. self.iso_box.setLayout(self.iso_vlay)
  933. self.drill_box.setLayout(self.drill_vlay)
  934. self.cutout_box.setLayout(self.cutout_vlay)
  935. tools_vlay = QtWidgets.QVBoxLayout()
  936. tools_vlay.addWidget(self.iso_box)
  937. tools_vlay.addWidget(self.paint_box)
  938. tools_vlay.addWidget(self.ncc_box)
  939. tools_vlay.addWidget(self.cutout_box)
  940. tools_vlay.addStretch()
  941. descript_vlay = QtWidgets.QVBoxLayout()
  942. descript_vlay.addWidget(self.tool_description_box)
  943. descript_vlay.addLayout(tools_vlay)
  944. descript_vlay.addStretch()
  945. milling_vlay = QtWidgets.QVBoxLayout()
  946. milling_vlay.addWidget(self.milling_box)
  947. milling_vlay.addStretch()
  948. drilling_vlay = QtWidgets.QVBoxLayout()
  949. drilling_vlay.addWidget(self.drill_box)
  950. param_hlay.addLayout(descript_vlay)
  951. param_hlay.addLayout(milling_vlay)
  952. param_hlay.addLayout(drilling_vlay)
  953. param_hlay.addLayout(tools_vlay)
  954. # always visible, always to be included last
  955. param_hlay.addLayout(milling_vlay)
  956. param_hlay.addStretch()
  957. # ###########################################################################
  958. # ################ Tool UI form #############################################
  959. # ###########################################################################
  960. self.grid_tool = QtWidgets.QGridLayout()
  961. self.description_vlay.addLayout(self.grid_tool)
  962. self.grid_tool.setColumnStretch(0, 0)
  963. self.grid_tool.setColumnStretch(1, 1)
  964. self.description_vlay.addStretch()
  965. # Tool Name
  966. self.name_label = QtWidgets.QLabel('<span style="color:red;"><b>%s:</b></span>' % _('Name'))
  967. self.name_label.setToolTip(
  968. _("Tool name.\n"
  969. "This is not used in the app, it's function\n"
  970. "is to serve as a note for the user."))
  971. self.name_entry = FCEntry()
  972. self.name_entry.setObjectName('gdb_name')
  973. self.grid_tool.addWidget(self.name_label, 0, 0)
  974. self.grid_tool.addWidget(self.name_entry, 0, 1)
  975. # Tool Dia
  976. self.dia_label = QtWidgets.QLabel('%s:' % _('Diameter'))
  977. self.dia_label.setToolTip(
  978. _("Tool Diameter."))
  979. self.dia_entry = FCDoubleSpinner()
  980. self.dia_entry.set_range(-9999.9999, 9999.9999)
  981. self.dia_entry.set_precision(self.decimals)
  982. self.dia_entry.setObjectName('gdb_dia')
  983. self.grid_tool.addWidget(self.dia_label, 1, 0)
  984. self.grid_tool.addWidget(self.dia_entry, 1, 1)
  985. # Tool Tolerance
  986. self.tol_label = QtWidgets.QLabel("<b>%s:</b>" % _("Diameter Tolerance"))
  987. self.tol_label.setToolTip(
  988. _("Tool tolerance. If there is a tool in the targeted tools table with\n"
  989. "the value within the limits then this tool from DB will be used.")
  990. )
  991. self.grid_tool.addWidget(self.tol_label, 2, 0, 1, 2)
  992. # Tolerance Min Limit
  993. self.min_limit_label = QtWidgets.QLabel('%s:' % _("Min"))
  994. self.min_limit_label.setToolTip(
  995. _("Set the tool tolerance minimum.")
  996. )
  997. self.tol_min_entry = FCDoubleSpinner(callback=self.confirmation_message)
  998. self.tol_min_entry.set_precision(self.decimals)
  999. self.tol_min_entry.set_range(0, 9999.9999)
  1000. self.tol_min_entry.setSingleStep(0.1)
  1001. self.tol_min_entry.setObjectName("gdb_tol_min")
  1002. self.grid_tool.addWidget(self.min_limit_label, 4, 0)
  1003. self.grid_tool.addWidget(self.tol_min_entry, 4, 1)
  1004. # Tolerance Min Limit
  1005. self.max_limit_label = QtWidgets.QLabel('%s:' % _("Max"))
  1006. self.max_limit_label.setToolTip(
  1007. _("Set the tool tolerance maximum.")
  1008. )
  1009. self.tol_max_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1010. self.tol_max_entry.set_precision(self.decimals)
  1011. self.tol_max_entry.set_range(0, 9999.9999)
  1012. self.tol_max_entry.setSingleStep(0.1)
  1013. self.tol_max_entry.setObjectName("gdb_tol_max")
  1014. self.grid_tool.addWidget(self.max_limit_label, 6, 0)
  1015. self.grid_tool.addWidget(self.tol_max_entry, 6, 1)
  1016. # Tool Object Type
  1017. self.tool_op_label = QtWidgets.QLabel('<b>%s:</b>' % _('Operation'))
  1018. self.tool_op_label.setToolTip(
  1019. _("The kind of Application Tool where this tool is to be used."))
  1020. self.tool_op_combo = FCComboBox()
  1021. self.tool_op_combo.addItems(
  1022. [_("General"), _("Milling"), _("Drilling"), _('Isolation'), _('Paint'), _('NCC'), _("Cutout")])
  1023. self.tool_op_combo.setObjectName('gdb_tool_target')
  1024. self.grid_tool.addWidget(self.tool_op_label, 8, 0)
  1025. self.grid_tool.addWidget(self.tool_op_combo, 8, 1)
  1026. # ###########################################################################
  1027. # ############### MILLING UI form ###########################################
  1028. # ###########################################################################
  1029. self.grid0 = QtWidgets.QGridLayout()
  1030. self.milling_vlay.addLayout(self.grid0)
  1031. self.grid0.setColumnStretch(0, 0)
  1032. self.grid0.setColumnStretch(1, 1)
  1033. self.milling_vlay.addStretch()
  1034. # Tool Shape
  1035. self.shape_label = QtWidgets.QLabel('%s:' % _('Shape'))
  1036. self.shape_label.setToolTip(
  1037. _("Tool Shape. \n"
  1038. "Can be:\n"
  1039. "C1 ... C4 = circular tool with x flutes\n"
  1040. "B = ball tip milling tool\n"
  1041. "V = v-shape milling tool"))
  1042. self.shape_combo = FCComboBox()
  1043. self.shape_combo.addItems(["C1", "C2", "C3", "C4", "B", "V"])
  1044. self.shape_combo.setObjectName('gdb_shape')
  1045. self.grid0.addWidget(self.shape_label, 2, 0)
  1046. self.grid0.addWidget(self.shape_combo, 2, 1)
  1047. # V-Dia
  1048. self.vdia_label = QtWidgets.QLabel('%s:' % _("V-Dia"))
  1049. self.vdia_label.setToolTip(
  1050. _("V-Dia.\n"
  1051. "Diameter of the tip for V-Shape Tools."))
  1052. self.vdia_entry = FCDoubleSpinner()
  1053. self.vdia_entry.set_range(0.0000, 9999.9999)
  1054. self.vdia_entry.set_precision(self.decimals)
  1055. self.vdia_entry.setObjectName('gdb_vdia')
  1056. self.grid0.addWidget(self.vdia_label, 4, 0)
  1057. self.grid0.addWidget(self.vdia_entry, 4, 1)
  1058. # V-Angle
  1059. self.vangle_label = QtWidgets.QLabel('%s:' % _("V-Angle"))
  1060. self.vangle_label.setToolTip(
  1061. _("V-Agle.\n"
  1062. "Angle at the tip for the V-Shape Tools."))
  1063. self.vangle_entry = FCDoubleSpinner()
  1064. self.vangle_entry.set_range(-360.0, 360.0)
  1065. self.vangle_entry.set_precision(self.decimals)
  1066. self.vangle_entry.setObjectName('gdb_vangle')
  1067. self.grid0.addWidget(self.vangle_label, 6, 0)
  1068. self.grid0.addWidget(self.vangle_entry, 6, 1)
  1069. separator_line = QtWidgets.QFrame()
  1070. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1071. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1072. self.grid0.addWidget(separator_line, 8, 0, 1, 2)
  1073. # Tool Type
  1074. self.type_label = QtWidgets.QLabel('%s:' % _("Tool Type"))
  1075. self.type_label.setToolTip(
  1076. _("Tool Type.\n"
  1077. "Can be:\n"
  1078. "Iso = isolation cut\n"
  1079. "Rough = rough cut, low feedrate, multiple passes\n"
  1080. "Finish = finishing cut, high feedrate"))
  1081. self.type_combo = FCComboBox()
  1082. self.type_combo.addItems(["Iso", "Rough", "Finish"])
  1083. self.type_combo.setObjectName('gdb_type')
  1084. self.grid0.addWidget(self.type_label, 10, 0)
  1085. self.grid0.addWidget(self.type_combo, 10, 1)
  1086. # Tool Offset
  1087. self.tooloffset_label = QtWidgets.QLabel('%s:' % _('Tool Offset'))
  1088. self.tooloffset_label.setToolTip(
  1089. _("Tool Offset.\n"
  1090. "Can be of a few types:\n"
  1091. "Path = zero offset\n"
  1092. "In = offset inside by half of tool diameter\n"
  1093. "Out = offset outside by half of tool diameter\n"
  1094. "Custom = custom offset using the Custom Offset value"))
  1095. self.tooloffset_combo = FCComboBox()
  1096. self.tooloffset_combo.addItems(["Path", "In", "Out", "Custom"])
  1097. self.tooloffset_combo.setObjectName('gdb_tool_offset')
  1098. self.grid0.addWidget(self.tooloffset_label, 12, 0)
  1099. self.grid0.addWidget(self.tooloffset_combo, 12, 1)
  1100. # Custom Offset
  1101. self.custom_offset_label = QtWidgets.QLabel('%s:' % _("Custom Offset"))
  1102. self.custom_offset_label.setToolTip(
  1103. _("Custom Offset.\n"
  1104. "A value to be used as offset from the current path."))
  1105. self.custom_offset_entry = FCDoubleSpinner()
  1106. self.custom_offset_entry.set_range(-9999.9999, 9999.9999)
  1107. self.custom_offset_entry.set_precision(self.decimals)
  1108. self.custom_offset_entry.setObjectName('gdb_custom_offset')
  1109. self.grid0.addWidget(self.custom_offset_label, 14, 0)
  1110. self.grid0.addWidget(self.custom_offset_entry, 14, 1)
  1111. separator_line = QtWidgets.QFrame()
  1112. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1113. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1114. self.grid0.addWidget(separator_line, 16, 0, 1, 2)
  1115. # Cut Z
  1116. self.cutz_label = QtWidgets.QLabel('%s:' % _("Cut Z"))
  1117. self.cutz_label.setToolTip(
  1118. _("Cutting Depth.\n"
  1119. "The depth at which to cut into material."))
  1120. self.cutz_entry = FCDoubleSpinner()
  1121. self.cutz_entry.set_range(-9999.9999, 9999.9999)
  1122. self.cutz_entry.set_precision(self.decimals)
  1123. self.cutz_entry.setObjectName('gdb_cutz')
  1124. self.grid0.addWidget(self.cutz_label, 18, 0)
  1125. self.grid0.addWidget(self.cutz_entry, 18, 1)
  1126. # Multi Depth
  1127. self.multidepth_label = QtWidgets.QLabel('%s:' % _("MultiDepth"))
  1128. self.multidepth_label.setToolTip(
  1129. _("Multi Depth.\n"
  1130. "Selecting this will allow cutting in multiple passes,\n"
  1131. "each pass adding a DPP parameter depth."))
  1132. self.multidepth_cb = FCCheckBox()
  1133. self.multidepth_cb.setObjectName('gdb_multidepth')
  1134. self.grid0.addWidget(self.multidepth_label, 20, 0)
  1135. self.grid0.addWidget(self.multidepth_cb, 20, 1)
  1136. # Depth Per Pass
  1137. self.dpp_label = QtWidgets.QLabel('%s:' % _("DPP"))
  1138. self.dpp_label.setToolTip(
  1139. _("DPP. Depth per Pass.\n"
  1140. "The value used to cut into material on each pass."))
  1141. self.multidepth_entry = FCDoubleSpinner()
  1142. self.multidepth_entry.set_range(-9999.9999, 9999.9999)
  1143. self.multidepth_entry.set_precision(self.decimals)
  1144. self.multidepth_entry.setObjectName('gdb_multidepth_entry')
  1145. self.grid0.addWidget(self.dpp_label, 22, 0)
  1146. self.grid0.addWidget(self.multidepth_entry, 22, 1)
  1147. # Travel Z
  1148. self.travelz_label = QtWidgets.QLabel('%s:' % _("Travel Z"))
  1149. self.travelz_label.setToolTip(
  1150. _("Clearance Height.\n"
  1151. "Height at which the milling bit will travel between cuts,\n"
  1152. "above the surface of the material, avoiding all fixtures."))
  1153. self.travelz_entry = FCDoubleSpinner()
  1154. self.travelz_entry.set_range(-9999.9999, 9999.9999)
  1155. self.travelz_entry.set_precision(self.decimals)
  1156. self.travelz_entry.setObjectName('gdb_travelz')
  1157. self.grid0.addWidget(self.travelz_label, 24, 0)
  1158. self.grid0.addWidget(self.travelz_entry, 24, 1)
  1159. # Extra Cut
  1160. self.ecut_label = QtWidgets.QLabel('%s:' % _("ExtraCut"))
  1161. self.ecut_label.setToolTip(
  1162. _("Extra Cut.\n"
  1163. "If checked, after a isolation is finished an extra cut\n"
  1164. "will be added where the start and end of isolation meet\n"
  1165. "such as that this point is covered by this extra cut to\n"
  1166. "ensure a complete isolation."))
  1167. self.ecut_cb = FCCheckBox()
  1168. self.ecut_cb.setObjectName('gdb_ecut')
  1169. self.grid0.addWidget(self.ecut_label, 26, 0)
  1170. self.grid0.addWidget(self.ecut_cb, 26, 1)
  1171. # Extra Cut Length
  1172. self.ecut_length_label = QtWidgets.QLabel('%s:' % _("E-Cut Length"))
  1173. self.ecut_length_label.setToolTip(
  1174. _("Extra Cut length.\n"
  1175. "If checked, after a isolation is finished an extra cut\n"
  1176. "will be added where the start and end of isolation meet\n"
  1177. "such as that this point is covered by this extra cut to\n"
  1178. "ensure a complete isolation. This is the length of\n"
  1179. "the extra cut."))
  1180. self.ecut_length_entry = FCDoubleSpinner()
  1181. self.ecut_length_entry.set_range(0.0000, 9999.9999)
  1182. self.ecut_length_entry.set_precision(self.decimals)
  1183. self.ecut_length_entry.setObjectName('gdb_ecut_length')
  1184. self.grid0.addWidget(self.ecut_length_label, 28, 0)
  1185. self.grid0.addWidget(self.ecut_length_entry, 28, 1)
  1186. separator_line = QtWidgets.QFrame()
  1187. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1188. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1189. self.grid0.addWidget(separator_line, 30, 0, 1, 2)
  1190. # Feedrate X-Y
  1191. self.frxy_label = QtWidgets.QLabel('%s:' % _("Feedrate X-Y"))
  1192. self.frxy_label.setToolTip(
  1193. _("Feedrate X-Y. Feedrate\n"
  1194. "The speed on XY plane used while cutting into material."))
  1195. self.frxy_entry = FCDoubleSpinner()
  1196. self.frxy_entry.set_range(-999999.9999, 999999.9999)
  1197. self.frxy_entry.set_precision(self.decimals)
  1198. self.frxy_entry.setObjectName('gdb_frxy')
  1199. self.grid0.addWidget(self.frxy_label, 32, 0)
  1200. self.grid0.addWidget(self.frxy_entry, 32, 1)
  1201. # Feedrate Z
  1202. self.frz_label = QtWidgets.QLabel('%s:' % _("Feedrate Z"))
  1203. self.frz_label.setToolTip(
  1204. _("Feedrate Z\n"
  1205. "The speed on Z plane."))
  1206. self.frz_entry = FCDoubleSpinner()
  1207. self.frz_entry.set_range(-999999.9999, 999999.9999)
  1208. self.frz_entry.set_precision(self.decimals)
  1209. self.frz_entry.setObjectName('gdb_frz')
  1210. self.grid0.addWidget(self.frz_label, 34, 0)
  1211. self.grid0.addWidget(self.frz_entry, 34, 1)
  1212. # Feedrate Rapids
  1213. self.frapids_label = QtWidgets.QLabel('%s:' % _("FR Rapids"))
  1214. self.frapids_label.setToolTip(
  1215. _("FR Rapids. Feedrate Rapids\n"
  1216. "Speed used while moving as fast as possible.\n"
  1217. "This is used only by some devices that can't use\n"
  1218. "the G0 g-code command. Mostly 3D printers."))
  1219. self.frapids_entry = FCDoubleSpinner()
  1220. self.frapids_entry.set_range(0.0000, 9999.9999)
  1221. self.frapids_entry.set_precision(self.decimals)
  1222. self.frapids_entry.setObjectName('gdb_frapids')
  1223. self.grid0.addWidget(self.frapids_label, 36, 0)
  1224. self.grid0.addWidget(self.frapids_entry, 36, 1)
  1225. separator_line = QtWidgets.QFrame()
  1226. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1227. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1228. self.grid0.addWidget(separator_line, 38, 0, 1, 2)
  1229. # Spindle Spped
  1230. self.spindle_label = QtWidgets.QLabel('%s:' % _("Spindle Speed"))
  1231. self.spindle_label.setToolTip(
  1232. _("Spindle Speed.\n"
  1233. "If it's left empty it will not be used.\n"
  1234. "The speed of the spindle in RPM."))
  1235. self.spindle_entry = FCDoubleSpinner()
  1236. self.spindle_entry.set_range(-999999.9999, 999999.9999)
  1237. self.spindle_entry.set_precision(self.decimals)
  1238. self.spindle_entry.setObjectName('gdb_spindle')
  1239. self.grid0.addWidget(self.spindle_label, 40, 0)
  1240. self.grid0.addWidget(self.spindle_entry, 40, 1)
  1241. # Dwell
  1242. self.dwell_label = QtWidgets.QLabel('%s:' % _("Dwell"))
  1243. self.dwell_label.setToolTip(
  1244. _("Dwell.\n"
  1245. "Check this if a delay is needed to allow\n"
  1246. "the spindle motor to reach its set speed."))
  1247. self.dwell_cb = FCCheckBox()
  1248. self.dwell_cb.setObjectName('gdb_dwell')
  1249. self.grid0.addWidget(self.dwell_label, 42, 0)
  1250. self.grid0.addWidget(self.dwell_cb, 42, 1)
  1251. # Dwell Time
  1252. self.dwelltime_label = QtWidgets.QLabel('%s:' % _("Dwelltime"))
  1253. self.dwelltime_label.setToolTip(
  1254. _("Dwell Time.\n"
  1255. "A delay used to allow the motor spindle reach its set speed."))
  1256. self.dwelltime_entry = FCDoubleSpinner()
  1257. self.dwelltime_entry.set_range(0.0000, 9999.9999)
  1258. self.dwelltime_entry.set_precision(self.decimals)
  1259. self.dwelltime_entry.setObjectName('gdb_dwelltime')
  1260. self.grid0.addWidget(self.dwelltime_label, 44, 0)
  1261. self.grid0.addWidget(self.dwelltime_entry, 44, 1)
  1262. # ###########################################################################
  1263. # ############### NCC UI form ###############################################
  1264. # ###########################################################################
  1265. self.grid2 = QtWidgets.QGridLayout()
  1266. self.ncc_vlay.addLayout(self.grid2)
  1267. self.grid2.setColumnStretch(0, 0)
  1268. self.grid2.setColumnStretch(1, 1)
  1269. self.ncc_vlay.addStretch()
  1270. # Operation
  1271. op_label = QtWidgets.QLabel('%s:' % _('Operation'))
  1272. op_label.setToolTip(
  1273. _("The 'Operation' can be:\n"
  1274. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  1275. "If it's not successful then the non-copper clearing will fail, too.\n"
  1276. "- Clear -> the regular non-copper clearing.")
  1277. )
  1278. self.op_radio = RadioSet([
  1279. {"label": _("Clear"), "value": "clear"},
  1280. {"label": _("Isolation"), "value": "iso"}
  1281. ], orientation='horizontal', stretch=False)
  1282. self.op_radio.setObjectName("gdb_n_operation")
  1283. self.grid2.addWidget(op_label, 13, 0)
  1284. self.grid2.addWidget(self.op_radio, 13, 1)
  1285. # Milling Type Radio Button
  1286. self.milling_type_label = QtWidgets.QLabel('%s:' % _('Milling Type'))
  1287. self.milling_type_label.setToolTip(
  1288. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1289. "- climb / best for precision milling and to reduce tool usage\n"
  1290. "- conventional / useful when there is no backlash compensation")
  1291. )
  1292. self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
  1293. {'label': _('Conventional'), 'value': 'cv'}])
  1294. self.milling_type_radio.setToolTip(
  1295. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1296. "- climb / best for precision milling and to reduce tool usage\n"
  1297. "- conventional / useful when there is no backlash compensation")
  1298. )
  1299. self.milling_type_radio.setObjectName("gdb_n_milling_type")
  1300. self.grid2.addWidget(self.milling_type_label, 14, 0)
  1301. self.grid2.addWidget(self.milling_type_radio, 14, 1)
  1302. # Overlap Entry
  1303. nccoverlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1304. nccoverlabel.setToolTip(
  1305. _("How much (percentage) of the tool width to overlap each tool pass.\n"
  1306. "Adjust the value starting with lower values\n"
  1307. "and increasing it if areas that should be cleared are still \n"
  1308. "not cleared.\n"
  1309. "Lower values = faster processing, faster execution on CNC.\n"
  1310. "Higher values = slow processing and slow execution on CNC\n"
  1311. "due of too many paths.")
  1312. )
  1313. self.ncc_overlap_entry = FCDoubleSpinner(suffix='%')
  1314. self.ncc_overlap_entry.set_precision(self.decimals)
  1315. self.ncc_overlap_entry.setWrapping(True)
  1316. self.ncc_overlap_entry.setRange(0.000, 99.9999)
  1317. self.ncc_overlap_entry.setSingleStep(0.1)
  1318. self.ncc_overlap_entry.setObjectName("gdb_n_overlap")
  1319. self.grid2.addWidget(nccoverlabel, 15, 0)
  1320. self.grid2.addWidget(self.ncc_overlap_entry, 15, 1)
  1321. # Margin
  1322. nccmarginlabel = QtWidgets.QLabel('%s:' % _('Margin'))
  1323. nccmarginlabel.setToolTip(
  1324. _("Bounding box margin.")
  1325. )
  1326. self.ncc_margin_entry = FCDoubleSpinner()
  1327. self.ncc_margin_entry.set_precision(self.decimals)
  1328. self.ncc_margin_entry.set_range(-9999.9999, 9999.9999)
  1329. self.ncc_margin_entry.setObjectName("gdb_n_margin")
  1330. self.grid2.addWidget(nccmarginlabel, 16, 0)
  1331. self.grid2.addWidget(self.ncc_margin_entry, 16, 1)
  1332. # Method
  1333. methodlabel = QtWidgets.QLabel('%s:' % _('Method'))
  1334. methodlabel.setToolTip(
  1335. _("Algorithm for copper clearing:\n"
  1336. "- Standard: Fixed step inwards.\n"
  1337. "- Seed-based: Outwards from seed.\n"
  1338. "- Line-based: Parallel lines.")
  1339. )
  1340. self.ncc_method_combo = FCComboBox()
  1341. self.ncc_method_combo.addItems(
  1342. [_("Standard"), _("Seed"), _("Lines"), _("Combo")]
  1343. )
  1344. self.ncc_method_combo.setObjectName("gdb_n_method")
  1345. self.grid2.addWidget(methodlabel, 17, 0)
  1346. self.grid2.addWidget(self.ncc_method_combo, 17, 1)
  1347. # Connect lines
  1348. self.ncc_connect_cb = FCCheckBox('%s' % _("Connect"))
  1349. self.ncc_connect_cb.setObjectName("gdb_n_connect")
  1350. self.ncc_connect_cb.setToolTip(
  1351. _("Draw lines between resulting\n"
  1352. "segments to minimize tool lifts.")
  1353. )
  1354. self.grid2.addWidget(self.ncc_connect_cb, 18, 0)
  1355. # Contour
  1356. self.ncc_contour_cb = FCCheckBox('%s' % _("Contour"))
  1357. self.ncc_contour_cb.setObjectName("gdb_n_contour")
  1358. self.ncc_contour_cb.setToolTip(
  1359. _("Cut around the perimeter of the polygon\n"
  1360. "to trim rough edges.")
  1361. )
  1362. self.grid2.addWidget(self.ncc_contour_cb, 18, 1)
  1363. # ## NCC Offset choice
  1364. self.ncc_choice_offset_cb = FCCheckBox('%s' % _("Offset"))
  1365. self.ncc_choice_offset_cb.setObjectName("gdb_n_offset")
  1366. self.ncc_choice_offset_cb.setToolTip(
  1367. _("If used, it will add an offset to the copper features.\n"
  1368. "The copper clearing will finish to a distance\n"
  1369. "from the copper features.\n"
  1370. "The value can be between 0 and 10 FlatCAM units.")
  1371. )
  1372. self.grid2.addWidget(self.ncc_choice_offset_cb, 19, 0)
  1373. # ## NCC Offset Entry
  1374. self.ncc_offset_spinner = FCDoubleSpinner()
  1375. self.ncc_offset_spinner.set_range(0.00, 10.00)
  1376. self.ncc_offset_spinner.set_precision(4)
  1377. self.ncc_offset_spinner.setWrapping(True)
  1378. self.ncc_offset_spinner.setObjectName("gdb_n_offset_value")
  1379. units = self.app.defaults['units'].upper()
  1380. if units == 'MM':
  1381. self.ncc_offset_spinner.setSingleStep(0.1)
  1382. else:
  1383. self.ncc_offset_spinner.setSingleStep(0.01)
  1384. self.grid2.addWidget(self.ncc_offset_spinner, 19, 1)
  1385. # ###########################################################################
  1386. # ############### Paint UI form #############################################
  1387. # ###########################################################################
  1388. self.grid3 = QtWidgets.QGridLayout()
  1389. self.paint_vlay.addLayout(self.grid3)
  1390. self.grid3.setColumnStretch(0, 0)
  1391. self.grid3.setColumnStretch(1, 1)
  1392. self.paint_vlay.addStretch()
  1393. # Overlap
  1394. ovlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1395. ovlabel.setToolTip(
  1396. _("How much (percentage) of the tool width to overlap each tool pass.\n"
  1397. "Adjust the value starting with lower values\n"
  1398. "and increasing it if areas that should be painted are still \n"
  1399. "not painted.\n"
  1400. "Lower values = faster processing, faster execution on CNC.\n"
  1401. "Higher values = slow processing and slow execution on CNC\n"
  1402. "due of too many paths.")
  1403. )
  1404. self.paintoverlap_entry = FCDoubleSpinner(suffix='%')
  1405. self.paintoverlap_entry.set_precision(3)
  1406. self.paintoverlap_entry.setWrapping(True)
  1407. self.paintoverlap_entry.setRange(0.0000, 99.9999)
  1408. self.paintoverlap_entry.setSingleStep(0.1)
  1409. self.paintoverlap_entry.setObjectName('gdb_p_overlap')
  1410. self.grid3.addWidget(ovlabel, 1, 0)
  1411. self.grid3.addWidget(self.paintoverlap_entry, 1, 1)
  1412. # Margin
  1413. marginlabel = QtWidgets.QLabel('%s:' % _('Offset'))
  1414. marginlabel.setToolTip(
  1415. _("Distance by which to avoid\n"
  1416. "the edges of the polygon to\n"
  1417. "be painted.")
  1418. )
  1419. self.paint_offset_entry = FCDoubleSpinner()
  1420. self.paint_offset_entry.set_precision(self.decimals)
  1421. self.paint_offset_entry.set_range(-9999.9999, 9999.9999)
  1422. self.paint_offset_entry.setObjectName('gdb_p_offset')
  1423. self.grid3.addWidget(marginlabel, 2, 0)
  1424. self.grid3.addWidget(self.paint_offset_entry, 2, 1)
  1425. # Method
  1426. methodlabel = QtWidgets.QLabel('%s:' % _('Method'))
  1427. methodlabel.setToolTip(
  1428. _("Algorithm for painting:\n"
  1429. "- Standard: Fixed step inwards.\n"
  1430. "- Seed-based: Outwards from seed.\n"
  1431. "- Line-based: Parallel lines.\n"
  1432. "- Laser-lines: Active only for Gerber objects.\n"
  1433. "Will create lines that follow the traces.\n"
  1434. "- Combo: In case of failure a new method will be picked from the above\n"
  1435. "in the order specified.")
  1436. )
  1437. self.paintmethod_combo = FCComboBox()
  1438. self.paintmethod_combo.addItems(
  1439. [_("Standard"), _("Seed"), _("Lines"), _("Laser_lines"), _("Combo")]
  1440. )
  1441. idx = self.paintmethod_combo.findText(_("Laser_lines"))
  1442. self.paintmethod_combo.model().item(idx).setEnabled(False)
  1443. self.paintmethod_combo.setObjectName('gdb_p_method')
  1444. self.grid3.addWidget(methodlabel, 7, 0)
  1445. self.grid3.addWidget(self.paintmethod_combo, 7, 1)
  1446. # Connect lines
  1447. self.pathconnect_cb = FCCheckBox('%s' % _("Connect"))
  1448. self.pathconnect_cb.setObjectName('gdb_p_connect')
  1449. self.pathconnect_cb.setToolTip(
  1450. _("Draw lines between resulting\n"
  1451. "segments to minimize tool lifts.")
  1452. )
  1453. self.paintcontour_cb = FCCheckBox('%s' % _("Contour"))
  1454. self.paintcontour_cb.setObjectName('gdb_p_contour')
  1455. self.paintcontour_cb.setToolTip(
  1456. _("Cut around the perimeter of the polygon\n"
  1457. "to trim rough edges.")
  1458. )
  1459. self.grid3.addWidget(self.pathconnect_cb, 10, 0)
  1460. self.grid3.addWidget(self.paintcontour_cb, 10, 1)
  1461. # ###########################################################################
  1462. # ############### Isolation UI form #########################################
  1463. # ###########################################################################
  1464. self.grid4 = QtWidgets.QGridLayout()
  1465. self.iso_vlay.addLayout(self.grid4)
  1466. self.grid4.setColumnStretch(0, 0)
  1467. self.grid4.setColumnStretch(1, 1)
  1468. self.iso_vlay.addStretch()
  1469. # Passes
  1470. passlabel = QtWidgets.QLabel('%s:' % _('Passes'))
  1471. passlabel.setToolTip(
  1472. _("Width of the isolation gap in\n"
  1473. "number (integer) of tool widths.")
  1474. )
  1475. self.passes_entry = FCSpinner()
  1476. self.passes_entry.set_range(1, 999)
  1477. self.passes_entry.setObjectName("gdb_i_passes")
  1478. self.grid4.addWidget(passlabel, 0, 0)
  1479. self.grid4.addWidget(self.passes_entry, 0, 1)
  1480. # Overlap Entry
  1481. overlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1482. overlabel.setToolTip(
  1483. _("How much (percentage) of the tool width to overlap each tool pass.")
  1484. )
  1485. self.iso_overlap_entry = FCDoubleSpinner(suffix='%')
  1486. self.iso_overlap_entry.set_precision(self.decimals)
  1487. self.iso_overlap_entry.setWrapping(True)
  1488. self.iso_overlap_entry.set_range(0.0000, 99.9999)
  1489. self.iso_overlap_entry.setSingleStep(0.1)
  1490. self.iso_overlap_entry.setObjectName("gdb_i_overlap")
  1491. self.grid4.addWidget(overlabel, 2, 0)
  1492. self.grid4.addWidget(self.iso_overlap_entry, 2, 1)
  1493. # Milling Type Radio Button
  1494. self.milling_type_label = QtWidgets.QLabel('%s:' % _('Milling Type'))
  1495. self.milling_type_label.setToolTip(
  1496. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1497. "- climb / best for precision milling and to reduce tool usage\n"
  1498. "- conventional / useful when there is no backlash compensation")
  1499. )
  1500. self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
  1501. {'label': _('Conventional'), 'value': 'cv'}])
  1502. self.milling_type_radio.setToolTip(
  1503. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1504. "- climb / best for precision milling and to reduce tool usage\n"
  1505. "- conventional / useful when there is no backlash compensation")
  1506. )
  1507. self.milling_type_radio.setObjectName("gdb_i_milling_type")
  1508. self.grid4.addWidget(self.milling_type_label, 4, 0)
  1509. self.grid4.addWidget(self.milling_type_radio, 4, 1)
  1510. # Follow
  1511. self.follow_label = QtWidgets.QLabel('%s:' % _('Follow'))
  1512. self.follow_label.setToolTip(
  1513. _("Generate a 'Follow' geometry.\n"
  1514. "This means that it will cut through\n"
  1515. "the middle of the trace.")
  1516. )
  1517. self.follow_cb = FCCheckBox()
  1518. self.follow_cb.setToolTip(_("Generate a 'Follow' geometry.\n"
  1519. "This means that it will cut through\n"
  1520. "the middle of the trace."))
  1521. self.follow_cb.setObjectName("gdb_i_follow")
  1522. self.grid4.addWidget(self.follow_label, 6, 0)
  1523. self.grid4.addWidget(self.follow_cb, 6, 1)
  1524. # Isolation Type
  1525. self.iso_type_label = QtWidgets.QLabel('%s:' % _('Isolation Type'))
  1526. self.iso_type_label.setToolTip(
  1527. _("Choose how the isolation will be executed:\n"
  1528. "- 'Full' -> complete isolation of polygons\n"
  1529. "- 'Ext' -> will isolate only on the outside\n"
  1530. "- 'Int' -> will isolate only on the inside\n"
  1531. "'Exterior' isolation is almost always possible\n"
  1532. "(with the right tool) but 'Interior'\n"
  1533. "isolation can be done only when there is an opening\n"
  1534. "inside of the polygon (e.g polygon is a 'doughnut' shape).")
  1535. )
  1536. self.iso_type_radio = RadioSet([{'label': _('Full'), 'value': 'full'},
  1537. {'label': _('Ext'), 'value': 'ext'},
  1538. {'label': _('Int'), 'value': 'int'}])
  1539. self.iso_type_radio.setObjectName("gdb_i_iso_type")
  1540. self.grid4.addWidget(self.iso_type_label, 8, 0)
  1541. self.grid4.addWidget(self.iso_type_radio, 8, 1)
  1542. # ###########################################################################
  1543. # ################ DRILLING UI form #########################################
  1544. # ###########################################################################
  1545. self.grid5 = QtWidgets.QGridLayout()
  1546. self.drill_vlay.addLayout(self.grid5)
  1547. self.grid5.setColumnStretch(0, 0)
  1548. self.grid5.setColumnStretch(1, 1)
  1549. self.drill_vlay.addStretch()
  1550. # Cut Z
  1551. self.cutzlabel = QtWidgets.QLabel('%s:' % _('Cut Z'))
  1552. self.cutzlabel.setToolTip(
  1553. _("Drill depth (negative)\n"
  1554. "below the copper surface.")
  1555. )
  1556. self.cutz_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1557. self.cutz_drill_entry.set_precision(self.decimals)
  1558. if self.machinist_setting == 0:
  1559. self.cutz_drill_entry.set_range(-9999.9999, 0.0000)
  1560. else:
  1561. self.cutz_drill_entry.set_range(-9999.9999, 9999.9999)
  1562. self.cutz_drill_entry.setSingleStep(0.1)
  1563. self.cutz_drill_entry.setObjectName("gdb_e_cutz")
  1564. self.grid5.addWidget(self.cutzlabel, 4, 0)
  1565. self.grid5.addWidget(self.cutz_drill_entry, 4, 1)
  1566. # Tool Offset
  1567. self.tool_offset_label = QtWidgets.QLabel('%s:' % _('Offset Z'))
  1568. self.tool_offset_label.setToolTip(
  1569. _("Some drill bits (the larger ones) need to drill deeper\n"
  1570. "to create the desired exit hole diameter due of the tip shape.\n"
  1571. "The value here can compensate the Cut Z parameter.")
  1572. )
  1573. self.offset_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1574. self.offset_drill_entry.set_precision(self.decimals)
  1575. self.offset_drill_entry.set_range(-9999.9999, 9999.9999)
  1576. self.offset_drill_entry.setObjectName("gdb_e_offset")
  1577. self.grid5.addWidget(self.tool_offset_label, 6, 0)
  1578. self.grid5.addWidget(self.offset_drill_entry, 6, 1)
  1579. # Multi-Depth
  1580. self.multidepth_drill_label = QtWidgets.QLabel('%s:' % _("MultiDepth"))
  1581. self.multidepth_drill_label.setToolTip(
  1582. _(
  1583. "Use multiple passes to limit\n"
  1584. "the cut depth in each pass. Will\n"
  1585. "cut multiple times until Cut Z is\n"
  1586. "reached."
  1587. )
  1588. )
  1589. self.mpass_drill_cb = FCCheckBox()
  1590. self.mpass_drill_cb.setObjectName("gdb_e_multidepth")
  1591. self.grid5.addWidget(self.multidepth_drill_label, 7, 0)
  1592. self.grid5.addWidget(self.mpass_drill_cb, 7, 1)
  1593. # Depth Per Pass
  1594. self.dpp_drill_label = QtWidgets.QLabel('%s:' % _("DPP"))
  1595. self.dpp_drill_label.setToolTip(
  1596. _("DPP. Depth per Pass.\n"
  1597. "The value used to cut into material on each pass."))
  1598. self.maxdepth_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1599. self.maxdepth_drill_entry.set_precision(self.decimals)
  1600. self.maxdepth_drill_entry.set_range(0, 9999.9999)
  1601. self.maxdepth_drill_entry.setSingleStep(0.1)
  1602. self.maxdepth_drill_entry.setToolTip(_("Depth of each pass (positive)."))
  1603. self.maxdepth_drill_entry.setObjectName("gdb_e_depthperpass")
  1604. self.grid5.addWidget(self.dpp_drill_label, 8, 0)
  1605. self.grid5.addWidget(self.maxdepth_drill_entry, 8, 1)
  1606. # Travel Z (z_move)
  1607. self.travelzlabel = QtWidgets.QLabel('%s:' % _('Travel Z'))
  1608. self.travelzlabel.setToolTip(
  1609. _("Tool height when travelling\n"
  1610. "across the XY plane.")
  1611. )
  1612. self.travelz_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1613. self.travelz_drill_entry.set_precision(self.decimals)
  1614. if self.machinist_setting == 0:
  1615. self.travelz_drill_entry.set_range(0.00001, 9999.9999)
  1616. else:
  1617. self.travelz_drill_entry.set_range(-9999.9999, 9999.9999)
  1618. self.travelz_drill_entry.setSingleStep(0.1)
  1619. self.travelz_drill_entry.setObjectName("gdb_e_travelz")
  1620. self.grid5.addWidget(self.travelzlabel, 10, 0)
  1621. self.grid5.addWidget(self.travelz_drill_entry, 10, 1)
  1622. separator_line = QtWidgets.QFrame()
  1623. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1624. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1625. self.grid5.addWidget(separator_line, 12, 0, 1, 2)
  1626. # Excellon Feedrate Z
  1627. self.frzlabel = QtWidgets.QLabel('%s:' % _('Feedrate Z'))
  1628. self.frzlabel.setToolTip(
  1629. _("Tool speed while drilling\n"
  1630. "(in units per minute).\n"
  1631. "So called 'Plunge' feedrate.\n"
  1632. "This is for linear move G01.")
  1633. )
  1634. self.feedrate_z_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1635. self.feedrate_z_drill_entry.set_precision(self.decimals)
  1636. self.feedrate_z_drill_entry.set_range(0.0, 99999.9999)
  1637. self.feedrate_z_drill_entry.setSingleStep(0.1)
  1638. self.feedrate_z_drill_entry.setObjectName("gdb_e_feedratez")
  1639. self.grid5.addWidget(self.frzlabel, 14, 0)
  1640. self.grid5.addWidget(self.feedrate_z_drill_entry, 14, 1)
  1641. # Excellon Rapid Feedrate
  1642. self.feedrate_rapid_label = QtWidgets.QLabel('%s:' % _('Feedrate Rapids'))
  1643. self.feedrate_rapid_label.setToolTip(
  1644. _("Tool speed while drilling\n"
  1645. "(in units per minute).\n"
  1646. "This is for the rapid move G00.\n"
  1647. "It is useful only for Marlin,\n"
  1648. "ignore for any other cases.")
  1649. )
  1650. self.feedrate_rapid_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1651. self.feedrate_rapid_drill_entry.set_precision(self.decimals)
  1652. self.feedrate_rapid_drill_entry.set_range(0.0, 99999.9999)
  1653. self.feedrate_rapid_drill_entry.setSingleStep(0.1)
  1654. self.feedrate_rapid_drill_entry.setObjectName("gdb_e_fr_rapid")
  1655. self.grid5.addWidget(self.feedrate_rapid_label, 16, 0)
  1656. self.grid5.addWidget(self.feedrate_rapid_drill_entry, 16, 1)
  1657. separator_line = QtWidgets.QFrame()
  1658. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1659. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1660. self.grid5.addWidget(separator_line, 18, 0, 1, 2)
  1661. # Spindlespeed
  1662. self.spindle_label = QtWidgets.QLabel('%s:' % _('Spindle speed'))
  1663. self.spindle_label.setToolTip(
  1664. _("Speed of the spindle\n"
  1665. "in RPM (optional)")
  1666. )
  1667. self.spindlespeed_drill_entry = FCSpinner(callback=self.confirmation_message_int)
  1668. self.spindlespeed_drill_entry.set_range(0, 1000000)
  1669. self.spindlespeed_drill_entry.set_step(100)
  1670. self.spindlespeed_drill_entry.setObjectName("gdb_e_spindlespeed")
  1671. self.grid5.addWidget(self.spindle_label, 20, 0)
  1672. self.grid5.addWidget(self.spindlespeed_drill_entry, 20, 1)
  1673. # Dwell
  1674. self.dwell_drill_label = QtWidgets.QLabel('%s:' % _("Dwell"))
  1675. self.dwell_drill_label.setToolTip(
  1676. _("Dwell.\n"
  1677. "Check this if a delay is needed to allow\n"
  1678. "the spindle motor to reach its set speed."))
  1679. self.dwell_drill_cb = FCCheckBox()
  1680. self.dwell_drill_cb.setObjectName("gdb_e_dwell")
  1681. self.grid5.addWidget(self.dwell_drill_label, 21, 0)
  1682. self.grid5.addWidget(self.dwell_drill_cb, 21, 1)
  1683. # Dwelltime
  1684. self.dwelltime_drill_lbl = QtWidgets.QLabel('%s:' % _('Dwelltime'))
  1685. self.dwelltime_drill_lbl.setToolTip(
  1686. _("Dwell Time.\n"
  1687. "A delay used to allow the motor spindle reach its set speed."))
  1688. self.dwelltime_drill_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1689. self.dwelltime_drill_entry.set_precision(self.decimals)
  1690. self.dwelltime_drill_entry.set_range(0.0, 9999.9999)
  1691. self.dwelltime_drill_entry.setSingleStep(0.1)
  1692. self.dwelltime_drill_entry.setObjectName("gdb_e_dwelltime")
  1693. self.grid5.addWidget(self.dwelltime_drill_lbl, 22, 0)
  1694. self.grid5.addWidget(self.dwelltime_drill_entry, 22, 1)
  1695. separator_line = QtWidgets.QFrame()
  1696. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1697. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1698. self.grid5.addWidget(separator_line, 24, 0, 1, 2)
  1699. # Drill slots
  1700. self.drill_slots_drill_lbl = QtWidgets.QLabel('%s:' % _('Drill slots'))
  1701. self.drill_slots_drill_lbl.setToolTip(
  1702. _("If the selected tool has slots then they will be drilled.")
  1703. )
  1704. self.drill_slots_drill_cb = FCCheckBox()
  1705. self.drill_slots_drill_cb.setObjectName("gdb_e_drill_slots")
  1706. self.grid5.addWidget(self.drill_slots_drill_lbl, 26, 0,)
  1707. self.grid5.addWidget(self.drill_slots_drill_cb, 26, 1)
  1708. # Drill Overlap
  1709. self.drill_overlap_label = QtWidgets.QLabel('%s:' % _('Overlap'))
  1710. self.drill_overlap_label.setToolTip(
  1711. _("How much (percentage) of the tool diameter to overlap previous drill hole.")
  1712. )
  1713. self.drill_overlap_drill_entry = FCDoubleSpinner(suffix='%', callback=self.confirmation_message)
  1714. self.drill_overlap_drill_entry.set_precision(self.decimals)
  1715. self.drill_overlap_drill_entry.set_range(0.0, 100.0000)
  1716. self.drill_overlap_drill_entry.setSingleStep(0.1)
  1717. self.drill_overlap_drill_entry.setObjectName("gdb_e_drill_slots_over")
  1718. self.grid5.addWidget(self.drill_overlap_label, 28, 0)
  1719. self.grid5.addWidget(self.drill_overlap_drill_entry, 28, 1)
  1720. # Last drill in slot
  1721. self.last_drill_drill_lbl = QtWidgets.QLabel('%s:' % _('Last drill'))
  1722. self.last_drill_drill_lbl.setToolTip(
  1723. _("If the slot length is not completely covered by drill holes,\n"
  1724. "add a drill hole on the slot end point.")
  1725. )
  1726. self.last_drill_drill_cb = FCCheckBox()
  1727. self.last_drill_drill_cb.setObjectName("gdb_e_drill_last_drill")
  1728. self.grid5.addWidget(self.last_drill_drill_lbl, 30, 0, 1, 2)
  1729. self.grid5.addWidget(self.last_drill_drill_cb, 30, 1)
  1730. # ###########################################################################
  1731. # ################### Cutout UI form ########################################
  1732. # ###########################################################################
  1733. self.grid6 = QtWidgets.QGridLayout()
  1734. self.cutout_vlay.addLayout(self.grid6)
  1735. self.grid6.setColumnStretch(0, 0)
  1736. self.grid6.setColumnStretch(1, 1)
  1737. self.cutout_vlay.addStretch()
  1738. # Margin
  1739. self.cutout_margin_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1740. self.cutout_margin_entry.set_range(-9999.9999, 9999.9999)
  1741. self.cutout_margin_entry.setSingleStep(0.1)
  1742. self.cutout_margin_entry.set_precision(self.decimals)
  1743. self.cutout_margin_entry.setObjectName('gdb_ct_margin')
  1744. self.cutout_margin_label = QtWidgets.QLabel('%s:' % _("Margin"))
  1745. self.cutout_margin_label.setToolTip(
  1746. _("Margin over bounds. A positive value here\n"
  1747. "will make the cutout of the PCB further from\n"
  1748. "the actual PCB border")
  1749. )
  1750. self.grid6.addWidget(self.cutout_margin_label, 11, 0)
  1751. self.grid6.addWidget(self.cutout_margin_entry, 11, 1)
  1752. # Gapsize
  1753. self.cutout_gapsize = FCDoubleSpinner(callback=self.confirmation_message)
  1754. self.cutout_gapsize.set_precision(self.decimals)
  1755. self.cutout_gapsize.setObjectName('gdb_ct_gapsize')
  1756. self.cutout_gapsize_label = QtWidgets.QLabel('%s:' % _("Gap size"))
  1757. self.cutout_gapsize_label.setToolTip(
  1758. _("The size of the bridge gaps in the cutout\n"
  1759. "used to keep the board connected to\n"
  1760. "the surrounding material (the one \n"
  1761. "from which the PCB is cutout).")
  1762. )
  1763. self.grid6.addWidget(self.cutout_gapsize_label, 13, 0)
  1764. self.grid6.addWidget(self.cutout_gapsize, 13, 1)
  1765. # How gaps wil be rendered:
  1766. # lr - left + right
  1767. # tb - top + bottom
  1768. # 4 - left + right +top + bottom
  1769. # 2lr - 2*left + 2*right
  1770. # 2tb - 2*top + 2*bottom
  1771. # 8 - 2*left + 2*right +2*top + 2*bottom
  1772. # Surrounding convex box shape
  1773. self.cutout_convex_box = FCCheckBox('%s' % _("Convex Shape"))
  1774. # self.convex_box_label = QtWidgets.QLabel('%s' % _("Convex Sh."))
  1775. self.cutout_convex_box.setToolTip(
  1776. _("Create a convex shape surrounding the entire PCB.\n"
  1777. "Used only if the source object type is Gerber.")
  1778. )
  1779. self.cutout_convex_box.setObjectName('gdb_ct_convex')
  1780. self.grid6.addWidget(self.cutout_convex_box, 15, 0, 1, 2)
  1781. # Gaps
  1782. self.cutout_gaps_label = QtWidgets.QLabel('%s:' % _('Gaps'))
  1783. self.cutout_gaps_label.setToolTip(
  1784. _("Number of gaps used for the Automatic cutout.\n"
  1785. "There can be maximum 8 bridges/gaps.\n"
  1786. "The choices are:\n"
  1787. "- None - no gaps\n"
  1788. "- lr - left + right\n"
  1789. "- tb - top + bottom\n"
  1790. "- 4 - left + right +top + bottom\n"
  1791. "- 2lr - 2*left + 2*right\n"
  1792. "- 2tb - 2*top + 2*bottom\n"
  1793. "- 8 - 2*left + 2*right +2*top + 2*bottom")
  1794. )
  1795. self.cutout_gaps = FCComboBox()
  1796. gaps_items = ['None', 'LR', 'TB', '4', '2LR', '2TB', '8']
  1797. self.cutout_gaps.addItems(gaps_items)
  1798. self.cutout_gaps.setObjectName('gdb_ct_gaps')
  1799. self.grid6.addWidget(self.cutout_gaps_label, 19, 0)
  1800. self.grid6.addWidget(self.cutout_gaps, 19, 1)
  1801. # ####################################################################
  1802. # ####################################################################
  1803. # GUI for the lower part of the window
  1804. # ####################################################################
  1805. # ####################################################################
  1806. new_vlay = QtWidgets.QVBoxLayout()
  1807. self.g_lay.addLayout(new_vlay, 1, 0, 1, 2)
  1808. self.buttons_frame = QtWidgets.QFrame()
  1809. self.buttons_frame.setContentsMargins(0, 0, 0, 0)
  1810. new_vlay.addWidget(self.buttons_frame)
  1811. self.buttons_box = QtWidgets.QHBoxLayout()
  1812. self.buttons_box.setContentsMargins(0, 0, 0, 0)
  1813. self.buttons_frame.setLayout(self.buttons_box)
  1814. self.buttons_frame.show()
  1815. self.add_entry_btn = FCButton(_("Add Tool in DB"))
  1816. self.add_entry_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/plus16.png'))
  1817. self.add_entry_btn.setToolTip(
  1818. _("Add a new tool in the Tools Database.\n"
  1819. "It will be used in the Geometry UI.\n"
  1820. "You can edit it after it is added.")
  1821. )
  1822. self.buttons_box.addWidget(self.add_entry_btn)
  1823. # add_fct_entry_btn = FCButton(_("Add Paint/NCC Tool in DB"))
  1824. # add_fct_entry_btn.setToolTip(
  1825. # _("Add a new tool in the Tools Database.\n"
  1826. # "It will be used in the Paint/NCC Tools UI.\n"
  1827. # "You can edit it after it is added.")
  1828. # )
  1829. # self.buttons_box.addWidget(add_fct_entry_btn)
  1830. self.remove_entry_btn = FCButton(_("Delete Tool from DB"))
  1831. self.remove_entry_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/trash16.png'))
  1832. self.remove_entry_btn.setToolTip(
  1833. _("Remove a selection of tools in the Tools Database.")
  1834. )
  1835. self.buttons_box.addWidget(self.remove_entry_btn)
  1836. self.export_db_btn = FCButton(_("Export DB"))
  1837. self.export_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/export.png'))
  1838. self.export_db_btn.setToolTip(
  1839. _("Save the Tools Database to a custom text file.")
  1840. )
  1841. self.buttons_box.addWidget(self.export_db_btn)
  1842. self.import_db_btn = FCButton(_("Import DB"))
  1843. self.import_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/import.png'))
  1844. self.import_db_btn.setToolTip(
  1845. _("Load the Tools Database information's from a custom text file.")
  1846. )
  1847. self.buttons_box.addWidget(self.import_db_btn)
  1848. self.save_db_btn = FCButton(_("Save DB"))
  1849. self.save_db_btn.setIcon(QtGui.QIcon(self.app.resource_location + '/save_as.png'))
  1850. self.save_db_btn.setToolTip(
  1851. _("Save the Tools Database information's.")
  1852. )
  1853. self.buttons_box.addWidget(self.save_db_btn)
  1854. self.add_tool_from_db = FCButton(_("Transfer the Tool"))
  1855. self.add_tool_from_db.setToolTip(
  1856. _("Insert a new tool in the Tools Table of the\n"
  1857. "object/application tool after selecting a tool\n"
  1858. "in the Tools Database.")
  1859. )
  1860. self.add_tool_from_db.setStyleSheet("""
  1861. QPushButton
  1862. {
  1863. font-weight: bold;
  1864. color: green;
  1865. }
  1866. """)
  1867. self.add_tool_from_db.hide()
  1868. self.cancel_tool_from_db = FCButton(_("Cancel"))
  1869. self.cancel_tool_from_db.hide()
  1870. hlay = QtWidgets.QHBoxLayout()
  1871. tree_layout.addLayout(hlay)
  1872. hlay.addWidget(self.add_tool_from_db)
  1873. hlay.addWidget(self.cancel_tool_from_db)
  1874. # hlay.addStretch()
  1875. # ############################ FINSIHED GUI ###################################
  1876. # #############################################################################
  1877. def confirmation_message(self, accepted, minval, maxval):
  1878. if accepted is False:
  1879. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%.*f, %.*f]' % (_("Edited value is out of range"),
  1880. self.decimals,
  1881. minval,
  1882. self.decimals,
  1883. maxval), False)
  1884. else:
  1885. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  1886. def confirmation_message_int(self, accepted, minval, maxval):
  1887. if accepted is False:
  1888. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%d, %d]' %
  1889. (_("Edited value is out of range"), minval, maxval), False)
  1890. else:
  1891. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  1892. class ToolsDB2(QtWidgets.QWidget):
  1893. mark_tools_rows = QtCore.pyqtSignal()
  1894. def __init__(self, app, callback_on_edited, callback_on_tool_request, parent=None):
  1895. super(ToolsDB2, self).__init__(parent)
  1896. self.app = app
  1897. self.app_ui = self.app.ui
  1898. self.decimals = self.app.decimals
  1899. self.callback_app = callback_on_edited
  1900. self.on_tool_request = callback_on_tool_request
  1901. self.offset_item_options = ["Path", "In", "Out", "Custom"]
  1902. self.type_item_options = ["Iso", "Rough", "Finish"]
  1903. self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
  1904. '''
  1905. dict to hold all the tools in the Tools DB
  1906. format:
  1907. {
  1908. tool_id: {
  1909. 'name': 'new_tool'
  1910. 'tooldia': self.app.defaults["geometry_cnctooldia"]
  1911. 'offset': 'Path'
  1912. 'offset_value': 0.0
  1913. 'type': _('Rough'),
  1914. 'tool_type': 'C1'
  1915. 'data': dict()
  1916. }
  1917. }
  1918. '''
  1919. self.db_tool_dict = {}
  1920. # ##############################################################################
  1921. # ##############################################################################
  1922. # TOOLS DATABASE UI
  1923. # ##############################################################################
  1924. # ##############################################################################
  1925. layout = QtWidgets.QGridLayout()
  1926. layout.setColumnStretch(0, 0)
  1927. layout.setColumnStretch(1, 1)
  1928. self.setLayout(layout)
  1929. self.ui = ToolsDB2UI(app=self.app, grid_layout=layout)
  1930. # ##############################################################################
  1931. # ##############################################################################
  1932. # ########## SETUP THE DICTIONARIES THAT HOLD THE WIDGETS #####################
  1933. # ##############################################################################
  1934. # ##############################################################################
  1935. self.form_fields = {
  1936. "tool_target": self.ui.tool_op_combo,
  1937. "tol_min": self.ui.tol_min_entry,
  1938. "tol_max": self.ui.tol_max_entry,
  1939. "name": self.ui.name_entry,
  1940. "tooldia": self.ui.dia_entry,
  1941. # Milling
  1942. "tool_type": self.ui.shape_combo,
  1943. "cutz": self.ui.cutz_entry,
  1944. "multidepth": self.ui.multidepth_cb,
  1945. "depthperpass": self.ui.multidepth_entry,
  1946. "travelz": self.ui.travelz_entry,
  1947. "feedrate": self.ui.frxy_entry,
  1948. "feedrate_z": self.ui.frz_entry,
  1949. "spindlespeed": self.ui.spindle_entry,
  1950. "dwell": self.ui.dwell_cb,
  1951. "dwelltime": self.ui.dwelltime_entry,
  1952. "type": self.ui.type_combo,
  1953. "offset": self.ui.tooloffset_combo,
  1954. "offset_value": self.ui.custom_offset_entry,
  1955. "vtipdia": self.ui.vdia_entry,
  1956. "vtipangle": self.ui.vangle_entry,
  1957. "feedrate_rapid": self.ui.frapids_entry,
  1958. "extracut": self.ui.ecut_cb,
  1959. "extracut_length": self.ui.ecut_length_entry,
  1960. # NCC
  1961. "tools_nccoperation": self.ui.op_radio,
  1962. "tools_nccmilling_type": self.ui.milling_type_radio,
  1963. "tools_nccoverlap": self.ui.ncc_overlap_entry,
  1964. "tools_nccmargin": self.ui.ncc_margin_entry,
  1965. "tools_nccmethod": self.ui.ncc_method_combo,
  1966. "tools_nccconnect": self.ui.ncc_connect_cb,
  1967. "tools_ncccontour": self.ui.ncc_contour_cb,
  1968. "tools_ncc_offset_choice": self.ui.ncc_choice_offset_cb,
  1969. "tools_ncc_offset_value": self.ui.ncc_offset_spinner,
  1970. # Paint
  1971. "tools_paintoverlap": self.ui.paintoverlap_entry,
  1972. "tools_paintoffset": self.ui.paint_offset_entry,
  1973. "tools_paintmethod": self.ui.paintmethod_combo,
  1974. "tools_pathconnect": self.ui.pathconnect_cb,
  1975. "tools_paintcontour": self.ui.paintcontour_cb,
  1976. # Isolation
  1977. "tools_iso_passes": self.ui.passes_entry,
  1978. "tools_iso_overlap": self.ui.iso_overlap_entry,
  1979. "tools_iso_milling_type": self.ui.milling_type_radio,
  1980. "tools_iso_follow": self.ui.follow_cb,
  1981. "tools_iso_isotype": self.ui.iso_type_radio,
  1982. # Drilling
  1983. "tools_drill_cutz": self.ui.cutz_drill_entry,
  1984. "tools_drill_multidepth": self.ui.mpass_drill_cb,
  1985. "tools_drill_depthperpass": self.ui.maxdepth_drill_entry,
  1986. "tools_drill_travelz": self.ui.travelz_drill_entry,
  1987. "tools_drill_feedrate_z": self.ui.feedrate_z_drill_entry,
  1988. "tools_drill_feedrate_rapid": self.ui.feedrate_rapid_drill_entry,
  1989. "tools_drill_spindlespeed": self.ui.spindlespeed_drill_entry,
  1990. "tools_drill_dwell": self.ui.dwell_drill_cb,
  1991. "tools_drill_dwelltime": self.ui.dwelltime_drill_entry,
  1992. "tools_drill_offset": self.ui.offset_drill_entry,
  1993. "tools_drill_drill_slots": self.ui.drill_slots_drill_cb,
  1994. "tools_drill_drill_overlap": self.ui.drill_overlap_drill_entry,
  1995. "tools_drill_last_drill": self.ui.last_drill_drill_cb,
  1996. # Cutout
  1997. "tools_cutoutmargin": self.ui.cutout_margin_entry,
  1998. "tools_cutoutgapsize": self.ui.cutout_gapsize,
  1999. "tools_gaps_ff": self.ui.cutout_gaps,
  2000. "tools_cutout_convexshape": self.ui.cutout_convex_box,
  2001. }
  2002. self.name2option = {
  2003. "gdb_tool_target": "tool_target",
  2004. "gdb_tol_min": "tol_min",
  2005. "gdb_tol_max": "tol_max",
  2006. "gdb_name": "name",
  2007. "gdb_dia": "tooldia",
  2008. # Milling
  2009. "gdb_shape": "tool_type",
  2010. "gdb_cutz": "cutz",
  2011. "gdb_multidepth": "multidepth",
  2012. "gdb_multidepth_entry": "depthperpass",
  2013. "gdb_travelz": "travelz",
  2014. "gdb_frxy": "feedrate",
  2015. "gdb_frz": "feedrate_z",
  2016. "gdb_spindle": "spindlespeed",
  2017. "gdb_dwell": "dwell",
  2018. "gdb_dwelltime": "dwelltime",
  2019. "gdb_type": "type",
  2020. "gdb_tool_offset": "offset",
  2021. "gdb_custom_offset": "offset_value",
  2022. "gdb_vdia": "vtipdia",
  2023. "gdb_vangle": "vtipangle",
  2024. "gdb_frapids": "feedrate_rapid",
  2025. "gdb_ecut": "extracut",
  2026. "gdb_ecut_length": "extracut_length",
  2027. # NCC
  2028. "gdb_n_operation": "tools_nccoperation",
  2029. "gdb_n_overlap": "tools_nccoverlap",
  2030. "gdb_n_margin": "tools_nccmargin",
  2031. "gdb_n_method": "tools_nccmethod",
  2032. "gdb_n_connect": "tools_nccconnect",
  2033. "gdb_n_contour": "tools_ncccontour",
  2034. "gdb_n_offset": "tools_ncc_offset_choice",
  2035. "gdb_n_offset_value": "tools_ncc_offset_value",
  2036. "gdb_n_milling_type": "tools_nccmilling_type",
  2037. # Paint
  2038. 'gdb_p_overlap': "tools_paintoverlap",
  2039. 'gdb_p_offset': "tools_paintoffset",
  2040. 'gdb_p_method': "tools_paintmethod",
  2041. 'gdb_p_connect': "tools_pathconnect",
  2042. 'gdb_p_contour': "tools_paintcontour",
  2043. # Isolation
  2044. "gdb_i_passes": "tools_iso_passes",
  2045. "gdb_i_overlap": "tools_iso_overlap",
  2046. "gdb_i_milling_type": "tools_iso_milling_type",
  2047. "gdb_i_follow": "tools_iso_follow",
  2048. "gdb_i_iso_type": "tools_iso_isotype",
  2049. # Drilling
  2050. "gdb_e_cutz": "tools_drill_cutz",
  2051. "gdb_e_multidepth": "tools_drill_multidepth",
  2052. "gdb_e_depthperpass": "tools_drill_depthperpass",
  2053. "gdb_e_travelz": "tools_drill_travelz",
  2054. "gdb_e_feedratez": "tools_drill_feedrate_z",
  2055. "gdb_e_fr_rapid": "tools_drill_feedrate_rapid",
  2056. "gdb_e_spindlespeed": "tools_drill_spindlespeed",
  2057. "gdb_e_dwell": "tools_drill_dwell",
  2058. "gdb_e_dwelltime": "tools_drill_dwelltime",
  2059. "gdb_e_offset": "tools_drill_offset",
  2060. "gdb_e_drill_slots": "tools_drill_drill_slots",
  2061. "gdb_e_drill_slots_over": "tools_drill_drill_overlap",
  2062. "gdb_e_drill_last_drill": "tools_drill_last_drill",
  2063. # Cutout
  2064. "gdb_ct_margin": "tools_cutoutmargin",
  2065. "gdb_ct_gapsize": "tools_cutoutgapsize",
  2066. "gdb_ct_gaps": "tools_gaps_ff",
  2067. "gdb_ct_convex": "tools_cutout_convexshape",
  2068. }
  2069. self.current_toolid = None
  2070. # variable to show if double clicking and item will trigger adding a tool from DB
  2071. self.ok_to_add = False
  2072. # ##############################################################################
  2073. # ######################## SIGNALS #############################################
  2074. # ##############################################################################
  2075. self.ui.add_entry_btn.clicked.connect(self.on_tool_add)
  2076. self.ui.remove_entry_btn.clicked.connect(self.on_tool_delete)
  2077. self.ui.export_db_btn.clicked.connect(self.on_export_tools_db_file)
  2078. self.ui.import_db_btn.clicked.connect(self.on_import_tools_db_file)
  2079. self.ui.save_db_btn.clicked.connect(self.on_save_db_btn_click)
  2080. # closebtn.clicked.connect(self.accept)
  2081. self.ui.add_tool_from_db.clicked.connect(self.on_tool_requested_from_app)
  2082. self.ui.cancel_tool_from_db.clicked.connect(self.on_cancel_tool)
  2083. # self.ui.tree_widget.selectionModel().selectionChanged.connect(self.on_list_selection_change)
  2084. self.ui.tree_widget.currentItemChanged.connect(self.on_list_selection_change)
  2085. self.ui.tree_widget.itemChanged.connect(self.on_list_item_edited)
  2086. self.ui.tree_widget.customContextMenuRequested.connect(self.on_menu_request)
  2087. self.ui.tree_widget.itemDoubleClicked.connect(self.on_item_double_clicked)
  2088. self.ui.tool_op_combo.currentIndexChanged.connect(self.on_tool_target_changed)
  2089. self.setup_db_ui()
  2090. def on_menu_request(self, pos):
  2091. menu = QtWidgets.QMenu()
  2092. add_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/plus16.png'), _("Add to DB"))
  2093. add_tool.triggered.connect(self.on_tool_add)
  2094. copy_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/copy16.png'), _("Copy from DB"))
  2095. copy_tool.triggered.connect(self.on_tool_copy)
  2096. delete_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/delete32.png'), _("Delete from DB"))
  2097. delete_tool.triggered.connect(self.on_tool_delete)
  2098. # sep = menu.addSeparator()
  2099. save_changes = menu.addAction(QtGui.QIcon(self.app.resource_location + '/save_as.png'), _("Save changes"))
  2100. save_changes.triggered.connect(self.on_save_changes)
  2101. # tree_item = self.ui.tree_widget.itemAt(pos)
  2102. menu.exec(self.ui.tree_widget.viewport().mapToGlobal(pos))
  2103. def on_save_changes(self):
  2104. widget_name = self.app_ui.plot_tab_area.currentWidget().objectName()
  2105. if widget_name == 'database_tab':
  2106. # Tools DB saved, update flag
  2107. self.app.tools_db_changed_flag = False
  2108. self.app.tools_db_tab.on_save_tools_db()
  2109. def on_item_double_clicked(self, item, column):
  2110. if column == 0 and self.ok_to_add is True:
  2111. self.ok_to_add = False
  2112. self.on_tool_requested_from_app()
  2113. def on_list_selection_change(self, current, previous):
  2114. self.ui_disconnect()
  2115. self.current_toolid = int(current.text(0))
  2116. self.storage_to_form(self.db_tool_dict[current.text(0)])
  2117. self.ui_connect()
  2118. def on_list_item_edited(self, item, column):
  2119. if column == 0:
  2120. return
  2121. self.ui.name_entry.set_value(item.text(1))
  2122. def storage_to_form(self, dict_storage):
  2123. self.ui_disconnect()
  2124. for form_key in self.form_fields:
  2125. for storage_key in dict_storage:
  2126. if form_key == storage_key:
  2127. try:
  2128. self.form_fields[form_key].set_value(dict_storage[form_key])
  2129. except Exception as e:
  2130. print(str(e))
  2131. if storage_key == 'data':
  2132. for data_key in dict_storage[storage_key]:
  2133. if form_key == data_key:
  2134. try:
  2135. self.form_fields[form_key].set_value(dict_storage['data'][data_key])
  2136. except Exception as e:
  2137. print(str(e))
  2138. self.ui_connect()
  2139. def form_to_storage(self, tool):
  2140. self.ui_disconnect()
  2141. widget_changed = self.sender()
  2142. wdg_objname = widget_changed.objectName()
  2143. option_changed = self.name2option[wdg_objname]
  2144. tooluid_item = int(tool)
  2145. for tooluid_key, tooluid_val in self.db_tool_dict.items():
  2146. if int(tooluid_key) == tooluid_item:
  2147. new_option_value = self.form_fields[option_changed].get_value()
  2148. if option_changed in tooluid_val:
  2149. tooluid_val[option_changed] = new_option_value
  2150. if option_changed in tooluid_val['data']:
  2151. tooluid_val['data'][option_changed] = new_option_value
  2152. self.ui_connect()
  2153. def setup_db_ui(self):
  2154. filename = self.app.data_path + '\\tools_db.FlatDB'
  2155. # load the database tools from the file
  2156. try:
  2157. with open(filename) as f:
  2158. tools = f.read()
  2159. except IOError:
  2160. self.app.log.error("Could not load tools DB file.")
  2161. self.app.inform.emit('[ERROR] %s' % _("Could not load Tools DB file."))
  2162. return
  2163. try:
  2164. self.db_tool_dict = json.loads(tools)
  2165. except Exception:
  2166. e = sys.exc_info()[0]
  2167. self.app.log.error(str(e))
  2168. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  2169. return
  2170. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  2171. self.build_db_ui()
  2172. def build_db_ui(self):
  2173. self.ui_disconnect()
  2174. nr_crt = 0
  2175. parent = self.ui.tree_widget
  2176. self.ui.tree_widget.blockSignals(True)
  2177. self.ui.tree_widget.clear()
  2178. self.ui.tree_widget.blockSignals(False)
  2179. for toolid, dict_val in self.db_tool_dict.items():
  2180. row = nr_crt
  2181. nr_crt += 1
  2182. t_name = dict_val['name']
  2183. try:
  2184. # self.add_tool_table_line(row, name=t_name, tooldict=dict_val)
  2185. self.ui.tree_widget.blockSignals(True)
  2186. try:
  2187. self.ui.tree_widget.addParentEditable(parent=parent, title=[str(row+1), t_name], editable=True)
  2188. except Exception as e:
  2189. print('FlatCAMCoomn.ToolDB2.build_db_ui() -> ', str(e))
  2190. self.ui.tree_widget.blockSignals(False)
  2191. except Exception as e:
  2192. self.app.log.debug("ToolDB.build_db_ui.add_tool_table_line() --> %s" % str(e))
  2193. if self.current_toolid is None or self.current_toolid < 1:
  2194. if self.db_tool_dict:
  2195. self.storage_to_form(self.db_tool_dict['1'])
  2196. # Enable appGUI
  2197. try:
  2198. self.on_tool_target_changed(val=self.db_tool_dict['1']['data']['tool_target'])
  2199. except KeyError:
  2200. self.on_tool_target_changed(val=_("General"))
  2201. self.ui.tree_widget.setCurrentItem(self.ui.tree_widget.topLevelItem(0))
  2202. # self.ui.tree_widget.setFocus()
  2203. else:
  2204. # Disable appGUI
  2205. self.ui.tool_description_box.show()
  2206. self.ui.milling_box.show()
  2207. self.ui.ncc_box.show()
  2208. self.ui.paint_box.show()
  2209. self.ui.iso_box.show()
  2210. self.ui.drill_box.show()
  2211. self.ui.cutout_box.show()
  2212. self.ui.tool_description_box.setEnabled(False)
  2213. self.ui.milling_box.setEnabled(False)
  2214. self.ui.ncc_box.setEnabled(False)
  2215. self.ui.paint_box.setEnabled(False)
  2216. self.ui.iso_box.setEnabled(False)
  2217. self.ui.drill_box.setEnabled(False)
  2218. self.ui.cutout_box.setEnabled(False)
  2219. else:
  2220. self.storage_to_form(self.db_tool_dict[str(self.current_toolid)])
  2221. self.ui_connect()
  2222. def on_tool_target_changed(self, index=None, val=None):
  2223. if val is None:
  2224. tool_target = self.ui.tool_op_combo.get_value()
  2225. else:
  2226. tool_target = val
  2227. self.ui.tool_description_box.setEnabled(True)
  2228. if self.db_tool_dict:
  2229. if tool_target == _("General"):
  2230. self.ui.milling_box.setEnabled(True)
  2231. self.ui.ncc_box.setEnabled(True)
  2232. self.ui.paint_box.setEnabled(True)
  2233. self.ui.iso_box.setEnabled(True)
  2234. self.ui.drill_box.setEnabled(True)
  2235. self.ui.cutout_box.setEnabled(True)
  2236. self.ui.milling_box.show()
  2237. self.ui.ncc_box.show()
  2238. self.ui.paint_box.show()
  2239. self.ui.iso_box.show()
  2240. self.ui.drill_box.show()
  2241. self.ui.cutout_box.show()
  2242. else:
  2243. self.ui.milling_box.hide()
  2244. self.ui.ncc_box.hide()
  2245. self.ui.paint_box.hide()
  2246. self.ui.iso_box.hide()
  2247. self.ui.drill_box.hide()
  2248. self.ui.cutout_box.hide()
  2249. if tool_target == _("Milling"):
  2250. self.ui.milling_box.setEnabled(True)
  2251. self.ui.milling_box.show()
  2252. if tool_target == _("Drilling"):
  2253. self.ui.drill_box.setEnabled(True)
  2254. self.ui.drill_box.show()
  2255. if tool_target == _("Isolation"):
  2256. self.ui.iso_box.setEnabled(True)
  2257. self.ui.iso_box.show()
  2258. self.ui.milling_box.setEnabled(True)
  2259. self.ui.milling_box.show()
  2260. if tool_target == _("Paint"):
  2261. self.ui.paint_box.setEnabled(True)
  2262. self.ui.paint_box.show()
  2263. self.ui.milling_box.setEnabled(True)
  2264. self.ui.milling_box.show()
  2265. if tool_target == _("NCC"):
  2266. self.ui.ncc_box.setEnabled(True)
  2267. self.ui.ncc_box.show()
  2268. self.ui.milling_box.setEnabled(True)
  2269. self.ui.milling_box.show()
  2270. if tool_target == _("Cutout"):
  2271. self.ui.cutout_box.setEnabled(True)
  2272. self.ui.cutout_box.show()
  2273. self.ui.milling_box.setEnabled(True)
  2274. self.ui.milling_box.show()
  2275. def on_tool_add(self):
  2276. """
  2277. Add a tool in the DB Tool Table
  2278. :return: None
  2279. """
  2280. default_data = {}
  2281. default_data.update({
  2282. "plot": True,
  2283. "tool_target": _("General"),
  2284. "tol_min": 0.0,
  2285. "tol_max": 0.0,
  2286. # Milling
  2287. "cutz": float(self.app.defaults["geometry_cutz"]),
  2288. "multidepth": self.app.defaults["geometry_multidepth"],
  2289. "depthperpass": float(self.app.defaults["geometry_depthperpass"]),
  2290. "vtipdia": float(self.app.defaults["geometry_vtipdia"]),
  2291. "vtipangle": float(self.app.defaults["geometry_vtipangle"]),
  2292. "travelz": float(self.app.defaults["geometry_travelz"]),
  2293. "feedrate": float(self.app.defaults["geometry_feedrate"]),
  2294. "feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),
  2295. "feedrate_rapid": float(self.app.defaults["geometry_feedrate_rapid"]),
  2296. "spindlespeed": self.app.defaults["geometry_spindlespeed"],
  2297. "dwell": self.app.defaults["geometry_dwell"],
  2298. "dwelltime": float(self.app.defaults["geometry_dwelltime"]),
  2299. "ppname_g": self.app.defaults["geometry_ppname_g"],
  2300. "extracut": self.app.defaults["geometry_extracut"],
  2301. "extracut_length": float(self.app.defaults["geometry_extracut_length"]),
  2302. "toolchange": self.app.defaults["geometry_toolchange"],
  2303. "toolchangexy": self.app.defaults["geometry_toolchangexy"],
  2304. "toolchangez": float(self.app.defaults["geometry_toolchangez"]),
  2305. "startz": self.app.defaults["geometry_startz"],
  2306. "endz": float(self.app.defaults["geometry_endz"]),
  2307. # NCC
  2308. "tools_nccoperation": self.app.defaults["tools_nccoperation"],
  2309. "tools_nccmilling_type": self.app.defaults["tools_nccmilling_type"],
  2310. "tools_nccoverlap": float(self.app.defaults["tools_nccoverlap"]),
  2311. "tools_nccmargin": float(self.app.defaults["tools_nccmargin"]),
  2312. "tools_nccmethod": self.app.defaults["tools_nccmethod"],
  2313. "tools_nccconnect": self.app.defaults["tools_nccconnect"],
  2314. "tools_ncccontour": self.app.defaults["tools_ncccontour"],
  2315. "tools_ncc_offset_choice": self.app.defaults["tools_ncc_offset_choice"],
  2316. "tools_ncc_offset_value": float(self.app.defaults["tools_ncc_offset_value"]),
  2317. # Paint
  2318. "tools_paintoverlap": float(self.app.defaults["tools_paintoverlap"]),
  2319. "tools_paintoffset": float(self.app.defaults["tools_paintoffset"]),
  2320. "tools_paintmethod": self.app.defaults["tools_paintmethod"],
  2321. "tools_pathconnect": self.app.defaults["tools_pathconnect"],
  2322. "tools_paintcontour": self.app.defaults["tools_paintcontour"],
  2323. # Isolation
  2324. "tools_iso_passes": int(self.app.defaults["tools_iso_passes"]),
  2325. "tools_iso_overlap": float(self.app.defaults["tools_iso_overlap"]),
  2326. "tools_iso_milling_type": self.app.defaults["tools_iso_milling_type"],
  2327. "tools_iso_follow": self.app.defaults["tools_iso_follow"],
  2328. "tools_iso_isotype": self.app.defaults["tools_iso_isotype"],
  2329. # Drilling
  2330. "tools_drill_cutz": float(self.app.defaults["tools_drill_cutz"]),
  2331. "tools_drill_multidepth": self.app.defaults["tools_drill_multidepth"],
  2332. "tools_drill_depthperpass": float(self.app.defaults["tools_drill_depthperpass"]),
  2333. "tools_drill_travelz": float(self.app.defaults["tools_drill_travelz"]),
  2334. "tools_drill_feedrate_z": float(self.app.defaults["tools_drill_feedrate_z"]),
  2335. "tools_drill_feedrate_rapid": float(self.app.defaults["tools_drill_feedrate_rapid"]),
  2336. "tools_drill_spindlespeed": float(self.app.defaults["tools_drill_spindlespeed"]),
  2337. "tools_drill_dwell": self.app.defaults["tools_drill_dwell"],
  2338. "tools_drill_offset": float(self.app.defaults["tools_drill_offset"]),
  2339. "tools_drill_drill_slots": self.app.defaults["tools_drill_drill_slots"],
  2340. "tools_drill_drill_overlap": float(self.app.defaults["tools_drill_drill_overlap"]),
  2341. "tools_drill_last_drill": self.app.defaults["tools_drill_last_drill"],
  2342. # Cutout
  2343. "tools_cutoutmargin": float(self.app.defaults["tools_cutoutmargin"]),
  2344. "tools_cutoutgapsize": float(self.app.defaults["tools_cutoutgapsize"]),
  2345. "tools_gaps_ff": self.app.defaults["tools_gaps_ff"],
  2346. "tools_cutout_convexshape": self.app.defaults["tools_cutout_convexshape"],
  2347. })
  2348. temp = []
  2349. for k, v in self.db_tool_dict.items():
  2350. if "new_tool_" in v['name']:
  2351. temp.append(float(v['name'].rpartition('_')[2]))
  2352. if temp:
  2353. new_name = "new_tool_%d" % int(max(temp) + 1)
  2354. else:
  2355. new_name = "new_tool_1"
  2356. dict_elem = {}
  2357. dict_elem['name'] = new_name
  2358. if type(self.app.defaults["geometry_cnctooldia"]) == float:
  2359. dict_elem['tooldia'] = self.app.defaults["geometry_cnctooldia"]
  2360. else:
  2361. try:
  2362. tools_string = self.app.defaults["geometry_cnctooldia"].split(",")
  2363. tools_diameters = [eval(a) for a in tools_string if a != '']
  2364. dict_elem['tooldia'] = tools_diameters[0] if tools_diameters else 0.0
  2365. except Exception as e:
  2366. self.app.log.debug("ToolDB.on_tool_add() --> %s" % str(e))
  2367. return
  2368. dict_elem['offset'] = 'Path'
  2369. dict_elem['offset_value'] = 0.0
  2370. dict_elem['type'] = 'Rough'
  2371. dict_elem['tool_type'] = 'C1'
  2372. dict_elem['data'] = default_data
  2373. new_toolid = len(self.db_tool_dict) + 1
  2374. self.db_tool_dict[str(new_toolid)] = deepcopy(dict_elem)
  2375. # add the new entry to the Tools DB table
  2376. self.update_storage()
  2377. self.build_db_ui()
  2378. # select the last Tree item just added
  2379. nr_items = self.ui.tree_widget.topLevelItemCount()
  2380. if nr_items:
  2381. last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
  2382. self.ui.tree_widget.setCurrentItem(last_item)
  2383. last_item.setSelected(True)
  2384. self.on_tool_target_changed(val=dict_elem['data']['tool_target'])
  2385. self.app.inform.emit('[success] %s' % _("Tool added to DB."))
  2386. def on_tool_copy(self):
  2387. """
  2388. Copy a selection of Tools in the Tools DB table
  2389. :return:
  2390. """
  2391. new_tool_id = len(self.db_tool_dict)
  2392. for item in self.ui.tree_widget.selectedItems():
  2393. old_tool_id = item.data(0, QtCore.Qt.DisplayRole)
  2394. for toolid, dict_val in list(self.db_tool_dict.items()):
  2395. if int(old_tool_id) == int(toolid):
  2396. new_tool_id += 1
  2397. new_key = str(new_tool_id)
  2398. self.db_tool_dict.update({
  2399. new_key: deepcopy(dict_val)
  2400. })
  2401. self.current_toolid = new_tool_id
  2402. self.update_storage()
  2403. self.build_db_ui()
  2404. # select the last Tree item just added
  2405. nr_items = self.ui.tree_widget.topLevelItemCount()
  2406. if nr_items:
  2407. last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
  2408. self.ui.tree_widget.setCurrentItem(last_item)
  2409. last_item.setSelected(True)
  2410. self.callback_app()
  2411. self.app.inform.emit('[success] %s' % _("Tool copied from Tools DB."))
  2412. def on_tool_delete(self):
  2413. """
  2414. Delete a selection of Tools in the Tools DB table
  2415. :return:
  2416. """
  2417. for item in self.ui.tree_widget.selectedItems():
  2418. toolname_to_remove = item.data(0, QtCore.Qt.DisplayRole)
  2419. for toolid, dict_val in list(self.db_tool_dict.items()):
  2420. if int(toolname_to_remove) == int(toolid):
  2421. # remove from the storage
  2422. self.db_tool_dict.pop(toolid, None)
  2423. self.current_toolid -= 1
  2424. self.update_storage()
  2425. self.build_db_ui()
  2426. # select the first Tree item
  2427. nr_items = self.ui.tree_widget.topLevelItemCount()
  2428. if nr_items:
  2429. first_item = self.ui.tree_widget.topLevelItem(0)
  2430. self.ui.tree_widget.setCurrentItem(first_item)
  2431. first_item.setSelected(True)
  2432. self.app.inform.emit('[success] %s' % _("Tool removed from Tools DB."))
  2433. def on_export_tools_db_file(self):
  2434. self.app.defaults.report_usage("on_export_tools_db_file")
  2435. self.app.log.debug("on_export_tools_db_file()")
  2436. date = str(datetime.today()).rpartition('.')[0]
  2437. date = ''.join(c for c in date if c not in ':-')
  2438. date = date.replace(' ', '_')
  2439. filter__ = "Text File (*.TXT);;All Files (*.*)"
  2440. filename, _f = FCFileSaveDialog.get_saved_filename(caption=_("Export Tools Database"),
  2441. directory='{l_save}/FlatCAM_{n}_{date}'.format(
  2442. l_save=str(self.app.get_last_save_folder()),
  2443. n=_("Tools_Database"),
  2444. date=date),
  2445. ext_filter=filter__)
  2446. filename = str(filename)
  2447. if filename == "":
  2448. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  2449. return
  2450. else:
  2451. try:
  2452. f = open(filename, 'w')
  2453. f.close()
  2454. except PermissionError:
  2455. self.app.inform.emit('[WARNING] %s' %
  2456. _("Permission denied, saving not possible.\n"
  2457. "Most likely another app is holding the file open and not accessible."))
  2458. return
  2459. except IOError:
  2460. self.app.log.debug('Creating a new Tools DB file ...')
  2461. f = open(filename, 'w')
  2462. f.close()
  2463. except Exception:
  2464. e = sys.exc_info()[0]
  2465. self.app.log.error("Could not load Tools DB file.")
  2466. self.app.log.error(str(e))
  2467. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  2468. return
  2469. # Save update options
  2470. try:
  2471. # Save Tools DB in a file
  2472. try:
  2473. with open(filename, "w") as f:
  2474. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  2475. except Exception as e:
  2476. self.app.log.debug("App.on_save_tools_db() --> %s" % str(e))
  2477. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2478. return
  2479. except Exception:
  2480. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2481. return
  2482. self.app.inform.emit('[success] %s: %s' % (_("Exported Tools DB to"), filename))
  2483. def on_import_tools_db_file(self):
  2484. self.app.defaults.report_usage("on_import_tools_db_file")
  2485. self.app.log.debug("on_import_tools_db_file()")
  2486. filter__ = "Text File (*.TXT);;All Files (*.*)"
  2487. filename, _f = QtWidgets.QFileDialog.getOpenFileName(caption=_("Import FlatCAM Tools DB"), filter=filter__)
  2488. if filename == "":
  2489. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  2490. else:
  2491. try:
  2492. with open(filename) as f:
  2493. tools_in_db = f.read()
  2494. except IOError:
  2495. self.app.log.error("Could not load Tools DB file.")
  2496. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  2497. return
  2498. try:
  2499. self.db_tool_dict = json.loads(tools_in_db)
  2500. except Exception:
  2501. e = sys.exc_info()[0]
  2502. self.app.log.error(str(e))
  2503. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  2504. return
  2505. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  2506. self.build_db_ui()
  2507. self.update_storage()
  2508. def on_save_tools_db(self, silent=False):
  2509. self.app.log.debug("ToolsDB.on_save_button() --> Saving Tools Database to file.")
  2510. filename = self.app.data_path + "/tools_db.FlatDB"
  2511. # Preferences save, update the color of the Tools DB Tab text
  2512. for idx in range(self.app_ui.plot_tab_area.count()):
  2513. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  2514. self.app_ui.plot_tab_area.tabBar.setTabTextColor(idx, QtGui.QColor('black'))
  2515. self.ui.save_db_btn.setStyleSheet("")
  2516. # clean the dictionary and leave only keys of interest
  2517. for tool_id in self.db_tool_dict.keys():
  2518. if self.db_tool_dict[tool_id]['data']['tool_target'] != _('General'):
  2519. continue
  2520. if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Milling'):
  2521. for k in list(self.db_tool_dict[tool_id]['data'].keys()):
  2522. if str(k).startswith('tools_'):
  2523. self.db_tool_dict[tool_id]['data'].pop(k, None)
  2524. if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Drilling'):
  2525. for k in list(self.db_tool_dict[tool_id]['data'].keys()):
  2526. if str(k).startswith('tools_'):
  2527. if str(k).startswith('tools_drill'):
  2528. pass
  2529. else:
  2530. self.db_tool_dict[tool_id]['data'].pop(k, None)
  2531. if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Isolation'):
  2532. for k in list(self.db_tool_dict[tool_id]['data'].keys()):
  2533. if str(k).startswith('tools_'):
  2534. if str(k).startswith('tools_iso'):
  2535. pass
  2536. else:
  2537. self.db_tool_dict[tool_id]['data'].pop(k, None)
  2538. if self.db_tool_dict[tool_id]['data']['tool_target'] == _('Paint'):
  2539. for k in list(self.db_tool_dict[tool_id]['data'].keys()):
  2540. if str(k).startswith('tools_'):
  2541. if str(k).startswith('tools_paint'):
  2542. pass
  2543. else:
  2544. self.db_tool_dict[tool_id]['data'].pop(k, None)
  2545. if self.db_tool_dict[tool_id]['data']['tool_target'] == _('NCC'):
  2546. for k in list(self.db_tool_dict[tool_id]['data'].keys()):
  2547. if str(k).startswith('tools_'):
  2548. if str(k).startswith('tools_ncc'):
  2549. pass
  2550. else:
  2551. self.db_tool_dict[tool_id]['data'].pop(k, None)
  2552. # Save Tools DB in a file
  2553. try:
  2554. f = open(filename, "w")
  2555. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  2556. f.close()
  2557. except Exception as e:
  2558. self.app.log.debug("ToolsDB.on_save_tools_db() --> %s" % str(e))
  2559. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2560. return
  2561. if not silent:
  2562. self.app.inform.emit('[success] %s' % _("Saved Tools DB."))
  2563. def on_save_db_btn_click(self):
  2564. self.app.tools_db_changed_flag = False
  2565. self.on_save_tools_db()
  2566. def on_calculate_tooldia(self):
  2567. if self.ui.shape_combo.get_value() == 'V':
  2568. tip_dia = float(self.ui.vdia_entry.get_value())
  2569. half_tip_angle = float(self.ui.vangle_entry.get_value()) / 2.0
  2570. cut_z = float(self.ui.cutz_entry.get_value())
  2571. cut_z = -cut_z if cut_z < 0 else cut_z
  2572. # calculated tool diameter so the cut_z parameter is obeyed
  2573. tool_dia = tip_dia + (2 * cut_z * math.tan(math.radians(half_tip_angle)))
  2574. self.ui.dia_entry.set_value(tool_dia)
  2575. def ui_connect(self):
  2576. # make sure that we don't make multiple connections to the widgets
  2577. self.ui_disconnect()
  2578. self.ui.name_entry.editingFinished.connect(self.update_tree_name)
  2579. for key in self.form_fields:
  2580. wdg = self.form_fields[key]
  2581. # FCEntry
  2582. if isinstance(wdg, FCEntry):
  2583. wdg.textChanged.connect(self.update_storage)
  2584. # ComboBox
  2585. if isinstance(wdg, FCComboBox):
  2586. wdg.currentIndexChanged.connect(self.update_storage)
  2587. # CheckBox
  2588. if isinstance(wdg, FCCheckBox):
  2589. wdg.toggled.connect(self.update_storage)
  2590. # FCRadio
  2591. if isinstance(wdg, RadioSet):
  2592. wdg.activated_custom.connect(self.update_storage)
  2593. # SpinBox, DoubleSpinBox
  2594. if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
  2595. wdg.valueChanged.connect(self.update_storage)
  2596. # connect the calculate tooldia method to the controls
  2597. # if the tool shape is 'V' the tool dia will be calculated to obey Cut Z parameter
  2598. self.ui.shape_combo.currentIndexChanged.connect(self.on_calculate_tooldia)
  2599. self.ui.cutz_entry.valueChanged.connect(self.on_calculate_tooldia)
  2600. self.ui.vdia_entry.valueChanged.connect(self.on_calculate_tooldia)
  2601. self.ui.vangle_entry.valueChanged.connect(self.on_calculate_tooldia)
  2602. def ui_disconnect(self):
  2603. try:
  2604. self.ui.name_entry.editingFinished.disconnect(self.update_tree_name)
  2605. except (TypeError, AttributeError):
  2606. pass
  2607. try:
  2608. self.ui.shape_combo.currentIndexChanged.disconnect(self.on_calculate_tooldia)
  2609. except (TypeError, AttributeError):
  2610. pass
  2611. try:
  2612. self.ui.cutz_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2613. except (TypeError, AttributeError):
  2614. pass
  2615. try:
  2616. self.ui.vdia_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2617. except (TypeError, AttributeError):
  2618. pass
  2619. try:
  2620. self.ui.vangle_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2621. except (TypeError, AttributeError):
  2622. pass
  2623. for key in self.form_fields:
  2624. wdg = self.form_fields[key]
  2625. # FCEntry
  2626. if isinstance(wdg, FCEntry):
  2627. try:
  2628. wdg.textChanged.disconnect(self.update_storage)
  2629. except (TypeError, AttributeError):
  2630. pass
  2631. # ComboBox
  2632. if isinstance(wdg, FCComboBox):
  2633. try:
  2634. wdg.currentIndexChanged.disconnect(self.update_storage)
  2635. except (TypeError, AttributeError):
  2636. pass
  2637. # CheckBox
  2638. if isinstance(wdg, FCCheckBox):
  2639. try:
  2640. wdg.toggled.disconnect(self.update_storage)
  2641. except (TypeError, AttributeError):
  2642. pass
  2643. # FCRadio
  2644. if isinstance(wdg, RadioSet):
  2645. try:
  2646. wdg.activated_custom.disconnect(self.update_storage)
  2647. except (TypeError, AttributeError):
  2648. pass
  2649. # SpinBox, DoubleSpinBox
  2650. if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
  2651. try:
  2652. wdg.valueChanged.disconnect(self.update_storage)
  2653. except (TypeError, AttributeError):
  2654. pass
  2655. def update_tree_name(self):
  2656. val = self.ui.name_entry.get_value()
  2657. item = self.ui.tree_widget.currentItem()
  2658. if item is None:
  2659. return
  2660. # I'm setting the value for the second column (designated by 1) because first column holds the ID
  2661. # and second column holds the Name (this behavior is set in the build_ui method)
  2662. item.setData(1, QtCore.Qt.DisplayRole, val)
  2663. def update_storage(self):
  2664. """
  2665. Update the dictionary that is the storage of the tools 'database'
  2666. :return:
  2667. """
  2668. tool_id = str(self.current_toolid)
  2669. try:
  2670. wdg = self.sender()
  2671. assert isinstance(wdg, QtWidgets.QWidget) or isinstance(wdg, QtWidgets.QAction), \
  2672. "Expected a QWidget got %s" % type(wdg)
  2673. if wdg is None:
  2674. return
  2675. wdg_name = wdg.objectName()
  2676. val = wdg.get_value()
  2677. except AttributeError:
  2678. return
  2679. # #############################################################################################################
  2680. # this might change in the future; it makes sense to change values at once for all tools
  2681. # for now change values only for one tool at once
  2682. sel_rows = []
  2683. for item in self.ui.tree_widget.selectedItems():
  2684. sel_rows.append(item.data(0, QtCore.Qt.DisplayRole))
  2685. len_sel_rows = len(sel_rows)
  2686. if len_sel_rows > 1:
  2687. msg = '[ERROR_NOTCL] %s: %s' % \
  2688. (_("To change tool properties select only one tool. Tools currently selected"), str(len_sel_rows))
  2689. self.app.inform.emit(msg)
  2690. old_value = self.db_tool_dict[tool_id]['data'][self.name2option[wdg_name]]
  2691. wdg.set_value(old_value)
  2692. wdg.clearFocus()
  2693. return
  2694. # #############################################################################################################
  2695. if wdg_name == "gdb_name":
  2696. self.db_tool_dict[tool_id]['name'] = val
  2697. elif wdg_name == "gdb_dia":
  2698. self.db_tool_dict[tool_id]['tooldia'] = val
  2699. elif wdg_name == "gdb_tool_offset":
  2700. self.db_tool_dict[tool_id]['offset'] = val
  2701. elif wdg_name == "gdb_custom_offset":
  2702. self.db_tool_dict[tool_id]['offset_value'] = val
  2703. elif wdg_name == "gdb_type":
  2704. self.db_tool_dict[tool_id]['type'] = val
  2705. elif wdg_name == "gdb_shape":
  2706. self.db_tool_dict[tool_id]['tool_type'] = val
  2707. else:
  2708. # Milling Tool
  2709. if wdg_name == "gdb_tool_target":
  2710. self.db_tool_dict[tool_id]['data']['tool_target'] = val
  2711. elif wdg_name == "gdb_tol_min":
  2712. self.db_tool_dict[tool_id]['data']['tol_min'] = val
  2713. elif wdg_name == "gdb_tol_max":
  2714. self.db_tool_dict[tool_id]['data']['tol_max'] = val
  2715. elif wdg_name == "gdb_cutz":
  2716. self.db_tool_dict[tool_id]['data']['cutz'] = val
  2717. elif wdg_name == "gdb_multidepth":
  2718. self.db_tool_dict[tool_id]['data']['multidepth'] = val
  2719. elif wdg_name == "gdb_multidepth_entry":
  2720. self.db_tool_dict[tool_id]['data']['depthperpass'] = val
  2721. elif wdg_name == "gdb_travelz":
  2722. self.db_tool_dict[tool_id]['data']['travelz'] = val
  2723. elif wdg_name == "gdb_frxy":
  2724. self.db_tool_dict[tool_id]['data']['feedrate'] = val
  2725. elif wdg_name == "gdb_frz":
  2726. self.db_tool_dict[tool_id]['data']['feedrate_z'] = val
  2727. elif wdg_name == "gdb_spindle":
  2728. self.db_tool_dict[tool_id]['data']['spindlespeed'] = val
  2729. elif wdg_name == "gdb_dwell":
  2730. self.db_tool_dict[tool_id]['data']['dwell'] = val
  2731. elif wdg_name == "gdb_dwelltime":
  2732. self.db_tool_dict[tool_id]['data']['dwelltime'] = val
  2733. elif wdg_name == "gdb_vdia":
  2734. self.db_tool_dict[tool_id]['data']['vtipdia'] = val
  2735. elif wdg_name == "gdb_vangle":
  2736. self.db_tool_dict[tool_id]['data']['vtipangle'] = val
  2737. elif wdg_name == "gdb_frapids":
  2738. self.db_tool_dict[tool_id]['data']['feedrate_rapid'] = val
  2739. elif wdg_name == "gdb_ecut":
  2740. self.db_tool_dict[tool_id]['data']['extracut'] = val
  2741. elif wdg_name == "gdb_ecut_length":
  2742. self.db_tool_dict[tool_id]['data']['extracut_length'] = val
  2743. # NCC Tool
  2744. elif wdg_name == "gdb_n_operation":
  2745. self.db_tool_dict[tool_id]['data']['tools_nccoperation'] = val
  2746. elif wdg_name == "gdb_n_overlap":
  2747. self.db_tool_dict[tool_id]['data']['tools_nccoverlap'] = val
  2748. elif wdg_name == "gdb_n_margin":
  2749. self.db_tool_dict[tool_id]['data']['tools_nccmargin'] = val
  2750. elif wdg_name == "gdb_n_method":
  2751. self.db_tool_dict[tool_id]['data']['tools_nccmethod'] = val
  2752. elif wdg_name == "gdb_n_connect":
  2753. self.db_tool_dict[tool_id]['data']['tools_nccconnect'] = val
  2754. elif wdg_name == "gdb_n_contour":
  2755. self.db_tool_dict[tool_id]['data']['tools_ncccontour'] = val
  2756. elif wdg_name == "gdb_n_offset":
  2757. self.db_tool_dict[tool_id]['data']['tools_ncc_offset_choice'] = val
  2758. elif wdg_name == "gdb_n_offset_value":
  2759. self.db_tool_dict[tool_id]['data']['tools_ncc_offset_value'] = val
  2760. elif wdg_name == "gdb_n_milling_type":
  2761. self.db_tool_dict[tool_id]['data']['tools_nccmilling_type'] = val
  2762. # Paint Tool
  2763. elif wdg_name == "gdb_p_overlap":
  2764. self.db_tool_dict[tool_id]['data']['tools_paintoverlap'] = val
  2765. elif wdg_name == "gdb_p_offset":
  2766. self.db_tool_dict[tool_id]['data']['tools_paintoffset'] = val
  2767. elif wdg_name == "gdb_p_method":
  2768. self.db_tool_dict[tool_id]['data']['tools_paintmethod'] = val
  2769. elif wdg_name == "gdb_p_connect":
  2770. self.db_tool_dict[tool_id]['data']['tools_pathconnect'] = val
  2771. elif wdg_name == "gdb_p_contour":
  2772. self.db_tool_dict[tool_id]['data']['tools_paintcontour'] = val
  2773. # Isolation Tool
  2774. elif wdg_name == "gdb_i_passes":
  2775. self.db_tool_dict[tool_id]['data']['tools_iso_passes'] = val
  2776. elif wdg_name == "gdb_i_overlap":
  2777. self.db_tool_dict[tool_id]['data']['tools_iso_overlap'] = val
  2778. elif wdg_name == "gdb_i_milling_type":
  2779. self.db_tool_dict[tool_id]['data']['tools_iso_milling_type'] = val
  2780. elif wdg_name == "gdb_i_follow":
  2781. self.db_tool_dict[tool_id]['data']['tools_iso_follow'] = val
  2782. elif wdg_name == "gdb_i_iso_type":
  2783. self.db_tool_dict[tool_id]['data']['tools_iso_isotype'] = val
  2784. # Drilling Tool
  2785. elif wdg_name == "gdb_e_cutz":
  2786. self.db_tool_dict[tool_id]['data']['tools_drill_cutz'] = val
  2787. elif wdg_name == "gdb_e_multidepth":
  2788. self.db_tool_dict[tool_id]['data']['tools_drill_multidepth'] = val
  2789. elif wdg_name == "gdb_e_depthperpass":
  2790. self.db_tool_dict[tool_id]['data']['tools_drill_depthperpass'] = val
  2791. elif wdg_name == "gdb_e_travelz":
  2792. self.db_tool_dict[tool_id]['data']['tools_drill_travelz'] = val
  2793. elif wdg_name == "gdb_e_feedratez":
  2794. self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_z'] = val
  2795. elif wdg_name == "gdb_e_fr_rapid":
  2796. self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_rapid'] = val
  2797. elif wdg_name == "gdb_e_spindlespeed":
  2798. self.db_tool_dict[tool_id]['data']['tools_drill_spindlespeed'] = val
  2799. elif wdg_name == "gdb_e_dwell":
  2800. self.db_tool_dict[tool_id]['data']['tools_drill_dwell'] = val
  2801. elif wdg_name == "gdb_e_dwelltime":
  2802. self.db_tool_dict[tool_id]['data']['tools_drill_dwelltime'] = val
  2803. elif wdg_name == "gdb_e_offset":
  2804. self.db_tool_dict[tool_id]['data']['tools_drill_offset'] = val
  2805. elif wdg_name == "gdb_e_drill_slots":
  2806. self.db_tool_dict[tool_id]['data']['tools_drill_drill_slots'] = val
  2807. elif wdg_name == "gdb_e_drill_slots_over":
  2808. self.db_tool_dict[tool_id]['data']['tools_drill_drill_overlap'] = val
  2809. elif wdg_name == "gdb_e_drill_last_drill":
  2810. self.db_tool_dict[tool_id]['data']['tools_drill_last_drill'] = val
  2811. # Cutout Tool
  2812. elif wdg_name == "gdb_ct_margin":
  2813. self.db_tool_dict[tool_id]['data']['tools_cutoutmargin'] = val
  2814. elif wdg_name == "gdb_ct_gapsize":
  2815. self.db_tool_dict[tool_id]['data']['tools_cutoutgapsize'] = val
  2816. elif wdg_name == "gdb_ct_gaps":
  2817. self.db_tool_dict[tool_id]['data']['tools_gaps_ff'] = val
  2818. elif wdg_name == "gdb_ct_convex":
  2819. self.db_tool_dict[tool_id]['data']['tools_cutout_convexshape'] = val
  2820. self.callback_app()
  2821. def on_tool_requested_from_app(self):
  2822. if not self.ui.tree_widget.selectedItems():
  2823. self.app.inform.emit('[WARNING_NOTCL] %s...' % _("No Tool/row selected in the Tools Database table"))
  2824. return
  2825. for item in self.ui.tree_widget.selectedItems():
  2826. tool_uid = item.data(0, QtCore.Qt.DisplayRole)
  2827. for key in self.db_tool_dict.keys():
  2828. if str(key) == str(tool_uid):
  2829. selected_tool = self.db_tool_dict[key]
  2830. self.on_tool_request(tool=selected_tool)
  2831. def on_cancel_tool(self):
  2832. for idx in range(self.app_ui.plot_tab_area.count()):
  2833. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  2834. wdg = self.app_ui.plot_tab_area.widget(idx)
  2835. wdg.deleteLater()
  2836. self.app_ui.plot_tab_area.removeTab(idx)
  2837. self.app.inform.emit('%s' % _("Cancelled adding tool from DB."))
  2838. # def resize_new_tool_table_widget(self, min_size, max_size):
  2839. # """
  2840. # Resize the table widget responsible for adding new tool in the Tool Database
  2841. #
  2842. # :param min_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  2843. # :param max_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  2844. # :return:
  2845. # """
  2846. # t_height = self.t_height
  2847. # if max_size > min_size:
  2848. # t_height = self.t_height + self.new_tool_table_widget.verticalScrollBar().height()
  2849. #
  2850. # self.new_tool_table_widget.setMaximumHeight(t_height)
  2851. def closeEvent(self, QCloseEvent):
  2852. super().closeEvent(QCloseEvent)