appDatabase.py 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141
  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 it's set speed."))
  224. self.table_widget.horizontalHeaderItem(18).setToolTip(
  225. _("Dwell Time.\n"
  226. "A delay used to allow the motor spindle reach it's 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 + '/geo_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 + "/geo_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. g_lay = grid_layout
  819. tree_layout = QtWidgets.QVBoxLayout()
  820. 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. 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. # Layout Constructor
  916. self.tool_description_box.setLayout(self.description_vlay)
  917. self.milling_box.setLayout(self.milling_vlay)
  918. self.ncc_box.setLayout(self.ncc_vlay)
  919. self.paint_box.setLayout(self.paint_vlay)
  920. self.iso_box.setLayout(self.iso_vlay)
  921. self.drill_box.setLayout(self.drill_vlay)
  922. descript_vlay = QtWidgets.QVBoxLayout()
  923. descript_vlay.addWidget(self.tool_description_box)
  924. descript_vlay.addStretch()
  925. milling_vlay = QtWidgets.QVBoxLayout()
  926. milling_vlay.addWidget(self.milling_box)
  927. milling_vlay.addStretch()
  928. tools1_vlay = QtWidgets.QVBoxLayout()
  929. tools1_vlay.addWidget(self.drill_box)
  930. tools1_vlay.addWidget(self.iso_box)
  931. tools1_vlay.addStretch()
  932. tools2_vlay = QtWidgets.QVBoxLayout()
  933. tools2_vlay.addWidget(self.paint_box)
  934. tools2_vlay.addWidget(self.ncc_box)
  935. tools2_vlay.addStretch()
  936. param_hlay.addLayout(descript_vlay)
  937. param_hlay.addLayout(tools1_vlay)
  938. param_hlay.addLayout(tools2_vlay)
  939. # always visible, always to be included last
  940. param_hlay.addLayout(milling_vlay)
  941. param_hlay.addStretch()
  942. # ###########################################################################
  943. # ################ Tool UI form #############################################
  944. # ###########################################################################
  945. self.grid_tool = QtWidgets.QGridLayout()
  946. self.description_vlay.addLayout(self.grid_tool)
  947. self.grid_tool.setColumnStretch(0, 0)
  948. self.grid_tool.setColumnStretch(1, 1)
  949. self.description_vlay.addStretch()
  950. # Tool Name
  951. self.name_label = QtWidgets.QLabel('<span style="color:red;"><b>%s:</b></span>' % _('Name'))
  952. self.name_label.setToolTip(
  953. _("Tool name.\n"
  954. "This is not used in the app, it's function\n"
  955. "is to serve as a note for the user."))
  956. self.name_entry = FCEntry()
  957. self.name_entry.setObjectName('gdb_name')
  958. self.grid_tool.addWidget(self.name_label, 0, 0)
  959. self.grid_tool.addWidget(self.name_entry, 0, 1)
  960. # Tool Dia
  961. self.dia_label = QtWidgets.QLabel('%s:' % _('Diameter'))
  962. self.dia_label.setToolTip(
  963. _("Tool Diameter."))
  964. self.dia_entry = FCDoubleSpinner()
  965. self.dia_entry.set_range(-9999.9999, 9999.9999)
  966. self.dia_entry.set_precision(self.decimals)
  967. self.dia_entry.setObjectName('gdb_dia')
  968. self.grid_tool.addWidget(self.dia_label, 1, 0)
  969. self.grid_tool.addWidget(self.dia_entry, 1, 1)
  970. # Tool Tolerance
  971. self.tol_label = QtWidgets.QLabel("<b>%s:</b>" % _("Diameter Tolerance"))
  972. self.tol_label.setToolTip(
  973. _("Tool tolerance. If there is a tool in the targeted tools table with\n"
  974. "the value within the limits then this tool from DB will be used.")
  975. )
  976. self.grid_tool.addWidget(self.tol_label, 2, 0, 1, 2)
  977. # Tolerance Min Limit
  978. self.min_limit_label = QtWidgets.QLabel('%s:' % _("Min"))
  979. self.min_limit_label.setToolTip(
  980. _("Set the tool tolerance minimum.")
  981. )
  982. self.tol_min_entry = FCDoubleSpinner(callback=self.confirmation_message)
  983. self.tol_min_entry.set_precision(self.decimals)
  984. self.tol_min_entry.set_range(0, 9999.9999)
  985. self.tol_min_entry.setSingleStep(0.1)
  986. self.tol_min_entry.setObjectName("gdb_tol_min")
  987. self.grid_tool.addWidget(self.min_limit_label, 4, 0)
  988. self.grid_tool.addWidget(self.tol_min_entry, 4, 1)
  989. # Tolerance Min Limit
  990. self.max_limit_label = QtWidgets.QLabel('%s:' % _("Max"))
  991. self.max_limit_label.setToolTip(
  992. _("Set the tool tolerance maximum.")
  993. )
  994. self.tol_max_entry = FCDoubleSpinner(callback=self.confirmation_message)
  995. self.tol_max_entry.set_precision(self.decimals)
  996. self.tol_max_entry.set_range(0, 9999.9999)
  997. self.tol_max_entry.setSingleStep(0.1)
  998. self.tol_max_entry.setObjectName("gdb_tol_max")
  999. self.grid_tool.addWidget(self.max_limit_label, 6, 0)
  1000. self.grid_tool.addWidget(self.tol_max_entry, 6, 1)
  1001. # Tool Object Type
  1002. self.tool_op_label = QtWidgets.QLabel('<b>%s:</b>' % _('Operation'))
  1003. self.tool_op_label.setToolTip(
  1004. _("The kind of Application Tool where this tool is to be used."))
  1005. self.tool_op_combo = FCComboBox()
  1006. self.tool_op_combo.addItems([_("General"), _("Milling"), _("Drilling"), _('Isolation'), _('Paint'), _('NCC')])
  1007. self.tool_op_combo.setObjectName('gdb_tool_target')
  1008. self.grid_tool.addWidget(self.tool_op_label, 8, 0)
  1009. self.grid_tool.addWidget(self.tool_op_combo, 8, 1)
  1010. # ###########################################################################
  1011. # ############### MILLING UI form ####################################
  1012. # ###########################################################################
  1013. self.grid0 = QtWidgets.QGridLayout()
  1014. self.milling_vlay.addLayout(self.grid0)
  1015. self.grid0.setColumnStretch(0, 0)
  1016. self.grid0.setColumnStretch(1, 1)
  1017. self.milling_vlay.addStretch()
  1018. # Tool Shape
  1019. self.shape_label = QtWidgets.QLabel('%s:' % _('Shape'))
  1020. self.shape_label.setToolTip(
  1021. _("Tool Shape. \n"
  1022. "Can be:\n"
  1023. "C1 ... C4 = circular tool with x flutes\n"
  1024. "B = ball tip milling tool\n"
  1025. "V = v-shape milling tool"))
  1026. self.shape_combo = FCComboBox()
  1027. self.shape_combo.addItems(["C1", "C2", "C3", "C4", "B", "V"])
  1028. self.shape_combo.setObjectName('gdb_shape')
  1029. self.grid0.addWidget(self.shape_label, 2, 0)
  1030. self.grid0.addWidget(self.shape_combo, 2, 1)
  1031. # V-Dia
  1032. self.vdia_label = QtWidgets.QLabel('%s:' % _("V-Dia"))
  1033. self.vdia_label.setToolTip(
  1034. _("V-Dia.\n"
  1035. "Diameter of the tip for V-Shape Tools."))
  1036. self.vdia_entry = FCDoubleSpinner()
  1037. self.vdia_entry.set_range(0.0000, 9999.9999)
  1038. self.vdia_entry.set_precision(self.decimals)
  1039. self.vdia_entry.setObjectName('gdb_vdia')
  1040. self.grid0.addWidget(self.vdia_label, 4, 0)
  1041. self.grid0.addWidget(self.vdia_entry, 4, 1)
  1042. # V-Angle
  1043. self.vangle_label = QtWidgets.QLabel('%s:' % _("V-Angle"))
  1044. self.vangle_label.setToolTip(
  1045. _("V-Agle.\n"
  1046. "Angle at the tip for the V-Shape Tools."))
  1047. self.vangle_entry = FCDoubleSpinner()
  1048. self.vangle_entry.set_range(-360.0, 360.0)
  1049. self.vangle_entry.set_precision(self.decimals)
  1050. self.vangle_entry.setObjectName('gdb_vangle')
  1051. self.grid0.addWidget(self.vangle_label, 6, 0)
  1052. self.grid0.addWidget(self.vangle_entry, 6, 1)
  1053. separator_line = QtWidgets.QFrame()
  1054. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1055. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1056. self.grid0.addWidget(separator_line, 8, 0, 1, 2)
  1057. # Tool Type
  1058. self.type_label = QtWidgets.QLabel('%s:' % _("Tool Type"))
  1059. self.type_label.setToolTip(
  1060. _("Tool Type.\n"
  1061. "Can be:\n"
  1062. "Iso = isolation cut\n"
  1063. "Rough = rough cut, low feedrate, multiple passes\n"
  1064. "Finish = finishing cut, high feedrate"))
  1065. self.type_combo = FCComboBox()
  1066. self.type_combo.addItems(["Iso", "Rough", "Finish"])
  1067. self.type_combo.setObjectName('gdb_type')
  1068. self.grid0.addWidget(self.type_label, 10, 0)
  1069. self.grid0.addWidget(self.type_combo, 10, 1)
  1070. # Tool Offset
  1071. self.tooloffset_label = QtWidgets.QLabel('%s:' % _('Tool Offset'))
  1072. self.tooloffset_label.setToolTip(
  1073. _("Tool Offset.\n"
  1074. "Can be of a few types:\n"
  1075. "Path = zero offset\n"
  1076. "In = offset inside by half of tool diameter\n"
  1077. "Out = offset outside by half of tool diameter\n"
  1078. "Custom = custom offset using the Custom Offset value"))
  1079. self.tooloffset_combo = FCComboBox()
  1080. self.tooloffset_combo.addItems(["Path", "In", "Out", "Custom"])
  1081. self.tooloffset_combo.setObjectName('gdb_tool_offset')
  1082. self.grid0.addWidget(self.tooloffset_label, 12, 0)
  1083. self.grid0.addWidget(self.tooloffset_combo, 12, 1)
  1084. # Custom Offset
  1085. self.custom_offset_label = QtWidgets.QLabel('%s:' % _("Custom Offset"))
  1086. self.custom_offset_label.setToolTip(
  1087. _("Custom Offset.\n"
  1088. "A value to be used as offset from the current path."))
  1089. self.custom_offset_entry = FCDoubleSpinner()
  1090. self.custom_offset_entry.set_range(-9999.9999, 9999.9999)
  1091. self.custom_offset_entry.set_precision(self.decimals)
  1092. self.custom_offset_entry.setObjectName('gdb_custom_offset')
  1093. self.grid0.addWidget(self.custom_offset_label, 14, 0)
  1094. self.grid0.addWidget(self.custom_offset_entry, 14, 1)
  1095. separator_line = QtWidgets.QFrame()
  1096. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1097. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1098. self.grid0.addWidget(separator_line, 16, 0, 1, 2)
  1099. # Cut Z
  1100. self.cutz_label = QtWidgets.QLabel('%s:' % _("Cut Z"))
  1101. self.cutz_label.setToolTip(
  1102. _("Cutting Depth.\n"
  1103. "The depth at which to cut into material."))
  1104. self.cutz_entry = FCDoubleSpinner()
  1105. self.cutz_entry.set_range(-9999.9999, 9999.9999)
  1106. self.cutz_entry.set_precision(self.decimals)
  1107. self.cutz_entry.setObjectName('gdb_cutz')
  1108. self.grid0.addWidget(self.cutz_label, 18, 0)
  1109. self.grid0.addWidget(self.cutz_entry, 18, 1)
  1110. # Multi Depth
  1111. self.multidepth_label = QtWidgets.QLabel('%s:' % _("MultiDepth"))
  1112. self.multidepth_label.setToolTip(
  1113. _("Multi Depth.\n"
  1114. "Selecting this will allow cutting in multiple passes,\n"
  1115. "each pass adding a DPP parameter depth."))
  1116. self.multidepth_cb = FCCheckBox()
  1117. self.multidepth_cb.setObjectName('gdb_multidepth')
  1118. self.grid0.addWidget(self.multidepth_label, 20, 0)
  1119. self.grid0.addWidget(self.multidepth_cb, 20, 1)
  1120. # Depth Per Pass
  1121. self.dpp_label = QtWidgets.QLabel('%s:' % _("DPP"))
  1122. self.dpp_label.setToolTip(
  1123. _("DPP. Depth per Pass.\n"
  1124. "The value used to cut into material on each pass."))
  1125. self.multidepth_entry = FCDoubleSpinner()
  1126. self.multidepth_entry.set_range(-9999.9999, 9999.9999)
  1127. self.multidepth_entry.set_precision(self.decimals)
  1128. self.multidepth_entry.setObjectName('gdb_multidepth_entry')
  1129. self.grid0.addWidget(self.dpp_label, 22, 0)
  1130. self.grid0.addWidget(self.multidepth_entry, 22, 1)
  1131. # Travel Z
  1132. self.travelz_label = QtWidgets.QLabel('%s:' % _("Travel Z"))
  1133. self.travelz_label.setToolTip(
  1134. _("Clearance Height.\n"
  1135. "Height at which the milling bit will travel between cuts,\n"
  1136. "above the surface of the material, avoiding all fixtures."))
  1137. self.travelz_entry = FCDoubleSpinner()
  1138. self.travelz_entry.set_range(-9999.9999, 9999.9999)
  1139. self.travelz_entry.set_precision(self.decimals)
  1140. self.travelz_entry.setObjectName('gdb_travel')
  1141. self.grid0.addWidget(self.travelz_label, 24, 0)
  1142. self.grid0.addWidget(self.travelz_entry, 24, 1)
  1143. # Extra Cut
  1144. self.ecut_label = QtWidgets.QLabel('%s:' % _("ExtraCut"))
  1145. self.ecut_label.setToolTip(
  1146. _("Extra Cut.\n"
  1147. "If checked, after a isolation is finished an extra cut\n"
  1148. "will be added where the start and end of isolation meet\n"
  1149. "such as that this point is covered by this extra cut to\n"
  1150. "ensure a complete isolation."))
  1151. self.ecut_cb = FCCheckBox()
  1152. self.ecut_cb.setObjectName('gdb_ecut')
  1153. self.grid0.addWidget(self.ecut_label, 26, 0)
  1154. self.grid0.addWidget(self.ecut_cb, 26, 1)
  1155. # Extra Cut Length
  1156. self.ecut_length_label = QtWidgets.QLabel('%s:' % _("E-Cut Length"))
  1157. self.ecut_length_label.setToolTip(
  1158. _("Extra Cut length.\n"
  1159. "If checked, after a isolation is finished an extra cut\n"
  1160. "will be added where the start and end of isolation meet\n"
  1161. "such as that this point is covered by this extra cut to\n"
  1162. "ensure a complete isolation. This is the length of\n"
  1163. "the extra cut."))
  1164. self.ecut_length_entry = FCDoubleSpinner()
  1165. self.ecut_length_entry.set_range(0.0000, 9999.9999)
  1166. self.ecut_length_entry.set_precision(self.decimals)
  1167. self.ecut_length_entry.setObjectName('gdb_ecut_length')
  1168. self.grid0.addWidget(self.ecut_length_label, 28, 0)
  1169. self.grid0.addWidget(self.ecut_length_entry, 28, 1)
  1170. separator_line = QtWidgets.QFrame()
  1171. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1172. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1173. self.grid0.addWidget(separator_line, 30, 0, 1, 2)
  1174. # Feedrate X-Y
  1175. self.frxy_label = QtWidgets.QLabel('%s:' % _("Feedrate X-Y"))
  1176. self.frxy_label.setToolTip(
  1177. _("Feedrate X-Y. Feedrate\n"
  1178. "The speed on XY plane used while cutting into material."))
  1179. self.frxy_entry = FCDoubleSpinner()
  1180. self.frxy_entry.set_range(-999999.9999, 999999.9999)
  1181. self.frxy_entry.set_precision(self.decimals)
  1182. self.frxy_entry.setObjectName('gdb_frxy')
  1183. self.grid0.addWidget(self.frxy_label, 32, 0)
  1184. self.grid0.addWidget(self.frxy_entry, 32, 1)
  1185. # Feedrate Z
  1186. self.frz_label = QtWidgets.QLabel('%s:' % _("Feedrate Z"))
  1187. self.frz_label.setToolTip(
  1188. _("Feedrate Z\n"
  1189. "The speed on Z plane."))
  1190. self.frz_entry = FCDoubleSpinner()
  1191. self.frz_entry.set_range(-999999.9999, 999999.9999)
  1192. self.frz_entry.set_precision(self.decimals)
  1193. self.frz_entry.setObjectName('gdb_frz')
  1194. self.grid0.addWidget(self.frz_label, 34, 0)
  1195. self.grid0.addWidget(self.frz_entry, 34, 1)
  1196. # Feedrate Rapids
  1197. self.frapids_label = QtWidgets.QLabel('%s:' % _("FR Rapids"))
  1198. self.frapids_label.setToolTip(
  1199. _("FR Rapids. Feedrate Rapids\n"
  1200. "Speed used while moving as fast as possible.\n"
  1201. "This is used only by some devices that can't use\n"
  1202. "the G0 g-code command. Mostly 3D printers."))
  1203. self.frapids_entry = FCDoubleSpinner()
  1204. self.frapids_entry.set_range(0.0000, 9999.9999)
  1205. self.frapids_entry.set_precision(self.decimals)
  1206. self.frapids_entry.setObjectName('gdb_frapids')
  1207. self.grid0.addWidget(self.frapids_label, 36, 0)
  1208. self.grid0.addWidget(self.frapids_entry, 36, 1)
  1209. separator_line = QtWidgets.QFrame()
  1210. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  1211. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  1212. self.grid0.addWidget(separator_line, 38, 0, 1, 2)
  1213. # Spindle Spped
  1214. self.spindle_label = QtWidgets.QLabel('%s:' % _("Spindle Speed"))
  1215. self.spindle_label.setToolTip(
  1216. _("Spindle Speed.\n"
  1217. "If it's left empty it will not be used.\n"
  1218. "The speed of the spindle in RPM."))
  1219. self.spindle_entry = FCDoubleSpinner()
  1220. self.spindle_entry.set_range(-999999.9999, 999999.9999)
  1221. self.spindle_entry.set_precision(self.decimals)
  1222. self.spindle_entry.setObjectName('gdb_spindle')
  1223. self.grid0.addWidget(self.spindle_label, 40, 0)
  1224. self.grid0.addWidget(self.spindle_entry, 40, 1)
  1225. # Dwell
  1226. self.dwell_label = QtWidgets.QLabel('%s:' % _("Dwell"))
  1227. self.dwell_label.setToolTip(
  1228. _("Dwell.\n"
  1229. "Check this if a delay is needed to allow\n"
  1230. "the spindle motor to reach it's set speed."))
  1231. self.dwell_cb = FCCheckBox()
  1232. self.dwell_cb.setObjectName('gdb_dwell')
  1233. self.grid0.addWidget(self.dwell_label, 42, 0)
  1234. self.grid0.addWidget(self.dwell_cb, 42, 1)
  1235. # Dwell Time
  1236. self.dwelltime_label = QtWidgets.QLabel('%s:' % _("Dwelltime"))
  1237. self.dwelltime_label.setToolTip(
  1238. _("Dwell Time.\n"
  1239. "A delay used to allow the motor spindle reach it's set speed."))
  1240. self.dwelltime_entry = FCDoubleSpinner()
  1241. self.dwelltime_entry.set_range(0.0000, 9999.9999)
  1242. self.dwelltime_entry.set_precision(self.decimals)
  1243. self.dwelltime_entry.setObjectName('gdb_dwelltime')
  1244. self.grid0.addWidget(self.dwelltime_label, 44, 0)
  1245. self.grid0.addWidget(self.dwelltime_entry, 44, 1)
  1246. # ###########################################################################
  1247. # ############### NCC UI form ###############################################
  1248. # ###########################################################################
  1249. self.grid2 = QtWidgets.QGridLayout()
  1250. self.ncc_vlay.addLayout(self.grid2)
  1251. self.grid2.setColumnStretch(0, 0)
  1252. self.grid2.setColumnStretch(1, 1)
  1253. self.ncc_vlay.addStretch()
  1254. # Operation
  1255. op_label = QtWidgets.QLabel('%s:' % _('Operation'))
  1256. op_label.setToolTip(
  1257. _("The 'Operation' can be:\n"
  1258. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  1259. "If it's not successful then the non-copper clearing will fail, too.\n"
  1260. "- Clear -> the regular non-copper clearing.")
  1261. )
  1262. self.op_radio = RadioSet([
  1263. {"label": _("Clear"), "value": "clear"},
  1264. {"label": _("Isolation"), "value": "iso"}
  1265. ], orientation='horizontal', stretch=False)
  1266. self.op_radio.setObjectName("gdb_n_operation")
  1267. self.grid2.addWidget(op_label, 13, 0)
  1268. self.grid2.addWidget(self.op_radio, 13, 1)
  1269. # Milling Type Radio Button
  1270. self.milling_type_label = QtWidgets.QLabel('%s:' % _('Milling Type'))
  1271. self.milling_type_label.setToolTip(
  1272. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1273. "- climb / best for precision milling and to reduce tool usage\n"
  1274. "- conventional / useful when there is no backlash compensation")
  1275. )
  1276. self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
  1277. {'label': _('Conventional'), 'value': 'cv'}])
  1278. self.milling_type_radio.setToolTip(
  1279. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1280. "- climb / best for precision milling and to reduce tool usage\n"
  1281. "- conventional / useful when there is no backlash compensation")
  1282. )
  1283. self.milling_type_radio.setObjectName("gdb_n_milling_type")
  1284. self.grid2.addWidget(self.milling_type_label, 14, 0)
  1285. self.grid2.addWidget(self.milling_type_radio, 14, 1)
  1286. # Overlap Entry
  1287. nccoverlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1288. nccoverlabel.setToolTip(
  1289. _("How much (percentage) of the tool width to overlap each tool pass.\n"
  1290. "Adjust the value starting with lower values\n"
  1291. "and increasing it if areas that should be cleared are still \n"
  1292. "not cleared.\n"
  1293. "Lower values = faster processing, faster execution on CNC.\n"
  1294. "Higher values = slow processing and slow execution on CNC\n"
  1295. "due of too many paths.")
  1296. )
  1297. self.ncc_overlap_entry = FCDoubleSpinner(suffix='%')
  1298. self.ncc_overlap_entry.set_precision(self.decimals)
  1299. self.ncc_overlap_entry.setWrapping(True)
  1300. self.ncc_overlap_entry.setRange(0.000, 99.9999)
  1301. self.ncc_overlap_entry.setSingleStep(0.1)
  1302. self.ncc_overlap_entry.setObjectName("gdb_n_overlap")
  1303. self.grid2.addWidget(nccoverlabel, 15, 0)
  1304. self.grid2.addWidget(self.ncc_overlap_entry, 15, 1)
  1305. # Margin
  1306. nccmarginlabel = QtWidgets.QLabel('%s:' % _('Margin'))
  1307. nccmarginlabel.setToolTip(
  1308. _("Bounding box margin.")
  1309. )
  1310. self.ncc_margin_entry = FCDoubleSpinner()
  1311. self.ncc_margin_entry.set_precision(self.decimals)
  1312. self.ncc_margin_entry.set_range(-9999.9999, 9999.9999)
  1313. self.ncc_margin_entry.setObjectName("gdb_n_margin")
  1314. self.grid2.addWidget(nccmarginlabel, 16, 0)
  1315. self.grid2.addWidget(self.ncc_margin_entry, 16, 1)
  1316. # Method
  1317. methodlabel = QtWidgets.QLabel('%s:' % _('Method'))
  1318. methodlabel.setToolTip(
  1319. _("Algorithm for copper clearing:\n"
  1320. "- Standard: Fixed step inwards.\n"
  1321. "- Seed-based: Outwards from seed.\n"
  1322. "- Line-based: Parallel lines.")
  1323. )
  1324. self.ncc_method_combo = FCComboBox()
  1325. self.ncc_method_combo.addItems(
  1326. [_("Standard"), _("Seed"), _("Lines"), _("Combo")]
  1327. )
  1328. self.ncc_method_combo.setObjectName("gdb_n_method")
  1329. self.grid2.addWidget(methodlabel, 17, 0)
  1330. self.grid2.addWidget(self.ncc_method_combo, 17, 1)
  1331. # Connect lines
  1332. self.ncc_connect_cb = FCCheckBox('%s' % _("Connect"))
  1333. self.ncc_connect_cb.setObjectName("gdb_n_connect")
  1334. self.ncc_connect_cb.setToolTip(
  1335. _("Draw lines between resulting\n"
  1336. "segments to minimize tool lifts.")
  1337. )
  1338. self.grid2.addWidget(self.ncc_connect_cb, 18, 0)
  1339. # Contour
  1340. self.ncc_contour_cb = FCCheckBox('%s' % _("Contour"))
  1341. self.ncc_contour_cb.setObjectName("gdb_n_contour")
  1342. self.ncc_contour_cb.setToolTip(
  1343. _("Cut around the perimeter of the polygon\n"
  1344. "to trim rough edges.")
  1345. )
  1346. self.grid2.addWidget(self.ncc_contour_cb, 18, 1)
  1347. # ## NCC Offset choice
  1348. self.ncc_choice_offset_cb = FCCheckBox('%s' % _("Offset"))
  1349. self.ncc_choice_offset_cb.setObjectName("gdb_n_offset")
  1350. self.ncc_choice_offset_cb.setToolTip(
  1351. _("If used, it will add an offset to the copper features.\n"
  1352. "The copper clearing will finish to a distance\n"
  1353. "from the copper features.\n"
  1354. "The value can be between 0 and 10 FlatCAM units.")
  1355. )
  1356. self.grid2.addWidget(self.ncc_choice_offset_cb, 19, 0)
  1357. # ## NCC Offset Entry
  1358. self.ncc_offset_spinner = FCDoubleSpinner()
  1359. self.ncc_offset_spinner.set_range(0.00, 10.00)
  1360. self.ncc_offset_spinner.set_precision(4)
  1361. self.ncc_offset_spinner.setWrapping(True)
  1362. self.ncc_offset_spinner.setObjectName("gdb_n_offset_value")
  1363. units = self.app.defaults['units'].upper()
  1364. if units == 'MM':
  1365. self.ncc_offset_spinner.setSingleStep(0.1)
  1366. else:
  1367. self.ncc_offset_spinner.setSingleStep(0.01)
  1368. self.grid2.addWidget(self.ncc_offset_spinner, 19, 1)
  1369. # ###########################################################################
  1370. # ############### Paint UI form #############################################
  1371. # ###########################################################################
  1372. self.grid3 = QtWidgets.QGridLayout()
  1373. self.paint_vlay.addLayout(self.grid3)
  1374. self.grid3.setColumnStretch(0, 0)
  1375. self.grid3.setColumnStretch(1, 1)
  1376. self.paint_vlay.addStretch()
  1377. # Overlap
  1378. ovlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1379. ovlabel.setToolTip(
  1380. _("How much (percentage) of the tool width to overlap each tool pass.\n"
  1381. "Adjust the value starting with lower values\n"
  1382. "and increasing it if areas that should be painted are still \n"
  1383. "not painted.\n"
  1384. "Lower values = faster processing, faster execution on CNC.\n"
  1385. "Higher values = slow processing and slow execution on CNC\n"
  1386. "due of too many paths.")
  1387. )
  1388. self.paintoverlap_entry = FCDoubleSpinner(suffix='%')
  1389. self.paintoverlap_entry.set_precision(3)
  1390. self.paintoverlap_entry.setWrapping(True)
  1391. self.paintoverlap_entry.setRange(0.0000, 99.9999)
  1392. self.paintoverlap_entry.setSingleStep(0.1)
  1393. self.paintoverlap_entry.setObjectName('gdb_p_overlap')
  1394. self.grid3.addWidget(ovlabel, 1, 0)
  1395. self.grid3.addWidget(self.paintoverlap_entry, 1, 1)
  1396. # Margin
  1397. marginlabel = QtWidgets.QLabel('%s:' % _('Offset'))
  1398. marginlabel.setToolTip(
  1399. _("Distance by which to avoid\n"
  1400. "the edges of the polygon to\n"
  1401. "be painted.")
  1402. )
  1403. self.paint_offset_entry = FCDoubleSpinner()
  1404. self.paint_offset_entry.set_precision(self.decimals)
  1405. self.paint_offset_entry.set_range(-9999.9999, 9999.9999)
  1406. self.paint_offset_entry.setObjectName('gdb_p_offset')
  1407. self.grid3.addWidget(marginlabel, 2, 0)
  1408. self.grid3.addWidget(self.paint_offset_entry, 2, 1)
  1409. # Method
  1410. methodlabel = QtWidgets.QLabel('%s:' % _('Method'))
  1411. methodlabel.setToolTip(
  1412. _("Algorithm for painting:\n"
  1413. "- Standard: Fixed step inwards.\n"
  1414. "- Seed-based: Outwards from seed.\n"
  1415. "- Line-based: Parallel lines.\n"
  1416. "- Laser-lines: Active only for Gerber objects.\n"
  1417. "Will create lines that follow the traces.\n"
  1418. "- Combo: In case of failure a new method will be picked from the above\n"
  1419. "in the order specified.")
  1420. )
  1421. self.paintmethod_combo = FCComboBox()
  1422. self.paintmethod_combo.addItems(
  1423. [_("Standard"), _("Seed"), _("Lines"), _("Laser_lines"), _("Combo")]
  1424. )
  1425. idx = self.paintmethod_combo.findText(_("Laser_lines"))
  1426. self.paintmethod_combo.model().item(idx).setEnabled(False)
  1427. self.paintmethod_combo.setObjectName('gdb_p_method')
  1428. self.grid3.addWidget(methodlabel, 7, 0)
  1429. self.grid3.addWidget(self.paintmethod_combo, 7, 1)
  1430. # Connect lines
  1431. self.pathconnect_cb = FCCheckBox('%s' % _("Connect"))
  1432. self.pathconnect_cb.setObjectName('gdb_p_connect')
  1433. self.pathconnect_cb.setToolTip(
  1434. _("Draw lines between resulting\n"
  1435. "segments to minimize tool lifts.")
  1436. )
  1437. self.paintcontour_cb = FCCheckBox('%s' % _("Contour"))
  1438. self.paintcontour_cb.setObjectName('gdb_p_contour')
  1439. self.paintcontour_cb.setToolTip(
  1440. _("Cut around the perimeter of the polygon\n"
  1441. "to trim rough edges.")
  1442. )
  1443. self.grid3.addWidget(self.pathconnect_cb, 10, 0)
  1444. self.grid3.addWidget(self.paintcontour_cb, 10, 1)
  1445. # ###########################################################################
  1446. # ############### Isolation UI form #########################################
  1447. # ###########################################################################
  1448. self.grid4 = QtWidgets.QGridLayout()
  1449. self.iso_vlay.addLayout(self.grid4)
  1450. self.grid4.setColumnStretch(0, 0)
  1451. self.grid4.setColumnStretch(1, 1)
  1452. self.iso_vlay.addStretch()
  1453. # Passes
  1454. passlabel = QtWidgets.QLabel('%s:' % _('Passes'))
  1455. passlabel.setToolTip(
  1456. _("Width of the isolation gap in\n"
  1457. "number (integer) of tool widths.")
  1458. )
  1459. self.passes_entry = FCSpinner()
  1460. self.passes_entry.set_range(1, 999)
  1461. self.passes_entry.setObjectName("gdb_i_passes")
  1462. self.grid4.addWidget(passlabel, 0, 0)
  1463. self.grid4.addWidget(self.passes_entry, 0, 1)
  1464. # Overlap Entry
  1465. overlabel = QtWidgets.QLabel('%s:' % _('Overlap'))
  1466. overlabel.setToolTip(
  1467. _("How much (percentage) of the tool width to overlap each tool pass.")
  1468. )
  1469. self.iso_overlap_entry = FCDoubleSpinner(suffix='%')
  1470. self.iso_overlap_entry.set_precision(self.decimals)
  1471. self.iso_overlap_entry.setWrapping(True)
  1472. self.iso_overlap_entry.set_range(0.0000, 99.9999)
  1473. self.iso_overlap_entry.setSingleStep(0.1)
  1474. self.iso_overlap_entry.setObjectName("gdb_i_overlap")
  1475. self.grid4.addWidget(overlabel, 2, 0)
  1476. self.grid4.addWidget(self.iso_overlap_entry, 2, 1)
  1477. # Milling Type Radio Button
  1478. self.milling_type_label = QtWidgets.QLabel('%s:' % _('Milling Type'))
  1479. self.milling_type_label.setToolTip(
  1480. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1481. "- climb / best for precision milling and to reduce tool usage\n"
  1482. "- conventional / useful when there is no backlash compensation")
  1483. )
  1484. self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'},
  1485. {'label': _('Conventional'), 'value': 'cv'}])
  1486. self.milling_type_radio.setToolTip(
  1487. _("Milling type when the selected tool is of type: 'iso_op':\n"
  1488. "- climb / best for precision milling and to reduce tool usage\n"
  1489. "- conventional / useful when there is no backlash compensation")
  1490. )
  1491. self.milling_type_radio.setObjectName("gdb_i_milling_type")
  1492. self.grid4.addWidget(self.milling_type_label, 4, 0)
  1493. self.grid4.addWidget(self.milling_type_radio, 4, 1)
  1494. # Follow
  1495. self.follow_label = QtWidgets.QLabel('%s:' % _('Follow'))
  1496. self.follow_label.setToolTip(
  1497. _("Generate a 'Follow' geometry.\n"
  1498. "This means that it will cut through\n"
  1499. "the middle of the trace.")
  1500. )
  1501. self.follow_cb = FCCheckBox()
  1502. self.follow_cb.setToolTip(_("Generate a 'Follow' geometry.\n"
  1503. "This means that it will cut through\n"
  1504. "the middle of the trace."))
  1505. self.follow_cb.setObjectName("gdb_i_follow")
  1506. self.grid4.addWidget(self.follow_label, 6, 0)
  1507. self.grid4.addWidget(self.follow_cb, 6, 1)
  1508. # Isolation Type
  1509. self.iso_type_label = QtWidgets.QLabel('%s:' % _('Isolation Type'))
  1510. self.iso_type_label.setToolTip(
  1511. _("Choose how the isolation will be executed:\n"
  1512. "- 'Full' -> complete isolation of polygons\n"
  1513. "- 'Ext' -> will isolate only on the outside\n"
  1514. "- 'Int' -> will isolate only on the inside\n"
  1515. "'Exterior' isolation is almost always possible\n"
  1516. "(with the right tool) but 'Interior'\n"
  1517. "isolation can be done only when there is an opening\n"
  1518. "inside of the polygon (e.g polygon is a 'doughnut' shape).")
  1519. )
  1520. self.iso_type_radio = RadioSet([{'label': _('Full'), 'value': 'full'},
  1521. {'label': _('Ext'), 'value': 'ext'},
  1522. {'label': _('Int'), 'value': 'int'}])
  1523. self.iso_type_radio.setObjectName("gdb_i_iso_type")
  1524. self.grid4.addWidget(self.iso_type_label, 8, 0)
  1525. self.grid4.addWidget(self.iso_type_radio, 8, 1)
  1526. # ###########################################################################
  1527. # ################ DRILLING UI form #########################################
  1528. # ###########################################################################
  1529. self.grid5 = QtWidgets.QGridLayout()
  1530. self.drill_vlay.addLayout(self.grid5)
  1531. self.grid5.setColumnStretch(0, 0)
  1532. self.grid5.setColumnStretch(1, 1)
  1533. self.drill_vlay.addStretch()
  1534. # Cut Z
  1535. self.cutzlabel = QtWidgets.QLabel('%s:' % _('Cut Z'))
  1536. self.cutzlabel.setToolTip(
  1537. _("Drill depth (negative)\n"
  1538. "below the copper surface.")
  1539. )
  1540. self.cutz_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1541. self.cutz_entry.set_precision(self.decimals)
  1542. if self.machinist_setting == 0:
  1543. self.cutz_entry.set_range(-9999.9999, 0.0000)
  1544. else:
  1545. self.cutz_entry.set_range(-9999.9999, 9999.9999)
  1546. self.cutz_entry.setSingleStep(0.1)
  1547. self.cutz_entry.setObjectName("gdb_e_cutz")
  1548. self.grid5.addWidget(self.cutzlabel, 4, 0)
  1549. self.grid5.addWidget(self.cutz_entry, 4, 1)
  1550. # Multi-Depth
  1551. self.mpass_cb = FCCheckBox('%s:' % _("Multi-Depth"))
  1552. self.mpass_cb.setToolTip(
  1553. _(
  1554. "Use multiple passes to limit\n"
  1555. "the cut depth in each pass. Will\n"
  1556. "cut multiple times until Cut Z is\n"
  1557. "reached."
  1558. )
  1559. )
  1560. self.mpass_cb.setObjectName("gdb_e_multidepth")
  1561. self.maxdepth_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1562. self.maxdepth_entry.set_precision(self.decimals)
  1563. self.maxdepth_entry.set_range(0, 9999.9999)
  1564. self.maxdepth_entry.setSingleStep(0.1)
  1565. self.maxdepth_entry.setToolTip(_("Depth of each pass (positive)."))
  1566. self.maxdepth_entry.setObjectName("gdb_e_depthperpass")
  1567. self.grid5.addWidget(self.mpass_cb, 5, 0)
  1568. self.grid5.addWidget(self.maxdepth_entry, 5, 1)
  1569. # Travel Z (z_move)
  1570. self.travelzlabel = QtWidgets.QLabel('%s:' % _('Travel Z'))
  1571. self.travelzlabel.setToolTip(
  1572. _("Tool height when travelling\n"
  1573. "across the XY plane.")
  1574. )
  1575. self.travelz_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1576. self.travelz_entry.set_precision(self.decimals)
  1577. if self.machinist_setting == 0:
  1578. self.travelz_entry.set_range(0.00001, 9999.9999)
  1579. else:
  1580. self.travelz_entry.set_range(-9999.9999, 9999.9999)
  1581. self.travelz_entry.setSingleStep(0.1)
  1582. self.travelz_entry.setObjectName("gdb_e_travelz")
  1583. self.grid5.addWidget(self.travelzlabel, 6, 0)
  1584. self.grid5.addWidget(self.travelz_entry, 6, 1)
  1585. # Excellon Feedrate Z
  1586. self.frzlabel = QtWidgets.QLabel('%s:' % _('Feedrate Z'))
  1587. self.frzlabel.setToolTip(
  1588. _("Tool speed while drilling\n"
  1589. "(in units per minute).\n"
  1590. "So called 'Plunge' feedrate.\n"
  1591. "This is for linear move G01.")
  1592. )
  1593. self.feedrate_z_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1594. self.feedrate_z_entry.set_precision(self.decimals)
  1595. self.feedrate_z_entry.set_range(0.0, 99999.9999)
  1596. self.feedrate_z_entry.setSingleStep(0.1)
  1597. self.feedrate_z_entry.setObjectName("gdb_e_feedratez")
  1598. self.grid5.addWidget(self.frzlabel, 14, 0)
  1599. self.grid5.addWidget(self.feedrate_z_entry, 14, 1)
  1600. # Excellon Rapid Feedrate
  1601. self.feedrate_rapid_label = QtWidgets.QLabel('%s:' % _('Feedrate Rapids'))
  1602. self.feedrate_rapid_label.setToolTip(
  1603. _("Tool speed while drilling\n"
  1604. "(in units per minute).\n"
  1605. "This is for the rapid move G00.\n"
  1606. "It is useful only for Marlin,\n"
  1607. "ignore for any other cases.")
  1608. )
  1609. self.feedrate_rapid_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1610. self.feedrate_rapid_entry.set_precision(self.decimals)
  1611. self.feedrate_rapid_entry.set_range(0.0, 99999.9999)
  1612. self.feedrate_rapid_entry.setSingleStep(0.1)
  1613. self.feedrate_rapid_entry.setObjectName("gdb_e_fr_rapid")
  1614. self.grid5.addWidget(self.feedrate_rapid_label, 16, 0)
  1615. self.grid5.addWidget(self.feedrate_rapid_entry, 16, 1)
  1616. # Spindlespeed
  1617. self.spindle_label = QtWidgets.QLabel('%s:' % _('Spindle speed'))
  1618. self.spindle_label.setToolTip(
  1619. _("Speed of the spindle\n"
  1620. "in RPM (optional)")
  1621. )
  1622. self.spindlespeed_entry = FCSpinner(callback=self.confirmation_message_int)
  1623. self.spindlespeed_entry.set_range(0, 1000000)
  1624. self.spindlespeed_entry.set_step(100)
  1625. self.spindlespeed_entry.setObjectName("gdb_e_spindlespeed")
  1626. self.grid5.addWidget(self.spindle_label, 19, 0)
  1627. self.grid5.addWidget(self.spindlespeed_entry, 19, 1)
  1628. # Dwell
  1629. self.dwell_cb = FCCheckBox('%s:' % _('Dwell'))
  1630. self.dwell_cb.setToolTip(
  1631. _("Pause to allow the spindle to reach its\n"
  1632. "speed before cutting.")
  1633. )
  1634. self.dwell_cb.setObjectName("gdb_e_dwell")
  1635. # Dwelltime
  1636. self.dwelltime_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1637. self.dwelltime_entry.set_precision(self.decimals)
  1638. self.dwelltime_entry.set_range(0.0, 9999.9999)
  1639. self.dwelltime_entry.setSingleStep(0.1)
  1640. self.dwelltime_entry.setToolTip(
  1641. _("Number of time units for spindle to dwell.")
  1642. )
  1643. self.dwelltime_entry.setObjectName("gdb_e_dwelltime")
  1644. self.grid5.addWidget(self.dwell_cb, 20, 0)
  1645. self.grid5.addWidget(self.dwelltime_entry, 20, 1)
  1646. # Tool Offset
  1647. self.tool_offset_label = QtWidgets.QLabel('%s:' % _('Offset Z'))
  1648. self.tool_offset_label.setToolTip(
  1649. _("Some drill bits (the larger ones) need to drill deeper\n"
  1650. "to create the desired exit hole diameter due of the tip shape.\n"
  1651. "The value here can compensate the Cut Z parameter.")
  1652. )
  1653. self.offset_entry = FCDoubleSpinner(callback=self.confirmation_message)
  1654. self.offset_entry.set_precision(self.decimals)
  1655. self.offset_entry.set_range(-9999.9999, 9999.9999)
  1656. self.offset_entry.setObjectName("gdb_e_offset")
  1657. self.grid5.addWidget(self.tool_offset_label, 25, 0)
  1658. self.grid5.addWidget(self.offset_entry, 25, 1)
  1659. # Drill slots
  1660. self.drill_slots_cb = FCCheckBox('%s' % _('Drill slots'))
  1661. self.drill_slots_cb.setToolTip(
  1662. _("If the selected tool has slots then they will be drilled.")
  1663. )
  1664. self.drill_slots_cb.setObjectName("gdb_e_drill_slots")
  1665. self.grid5.addWidget(self.drill_slots_cb, 27, 0, 1, 2)
  1666. # Drill Overlap
  1667. self.drill_overlap_label = QtWidgets.QLabel('%s:' % _('Overlap'))
  1668. self.drill_overlap_label.setToolTip(
  1669. _("How much (percentage) of the tool diameter to overlap previous drill hole.")
  1670. )
  1671. self.drill_overlap_entry = FCDoubleSpinner(suffix='%', callback=self.confirmation_message)
  1672. self.drill_overlap_entry.set_precision(self.decimals)
  1673. self.drill_overlap_entry.set_range(0.0, 100.0000)
  1674. self.drill_overlap_entry.setSingleStep(0.1)
  1675. self.drill_overlap_entry.setObjectName("gdb_e_drill_slots_over")
  1676. self.grid5.addWidget(self.drill_overlap_label, 28, 0)
  1677. self.grid5.addWidget(self.drill_overlap_entry, 28, 1)
  1678. # Last drill in slot
  1679. self.last_drill_cb = FCCheckBox('%s' % _('Last drill'))
  1680. self.last_drill_cb.setToolTip(
  1681. _("If the slot length is not completely covered by drill holes,\n"
  1682. "add a drill hole on the slot end point.")
  1683. )
  1684. self.last_drill_cb.setObjectName("gdb_e_drill_last_drill")
  1685. self.grid5.addWidget(self.last_drill_cb, 30, 0, 1, 2)
  1686. # ####################################################################
  1687. # ####################################################################
  1688. # GUI for the lower part of the window
  1689. # ####################################################################
  1690. # ####################################################################
  1691. new_vlay = QtWidgets.QVBoxLayout()
  1692. g_lay.addLayout(new_vlay, 1, 0, 1, 2)
  1693. self.buttons_frame = QtWidgets.QFrame()
  1694. self.buttons_frame.setContentsMargins(0, 0, 0, 0)
  1695. new_vlay.addWidget(self.buttons_frame)
  1696. self.buttons_box = QtWidgets.QHBoxLayout()
  1697. self.buttons_box.setContentsMargins(0, 0, 0, 0)
  1698. self.buttons_frame.setLayout(self.buttons_box)
  1699. self.buttons_frame.show()
  1700. self.add_entry_btn = FCButton(_("Add Tool in DB"))
  1701. self.add_entry_btn.setToolTip(
  1702. _("Add a new tool in the Tools Database.\n"
  1703. "It will be used in the Geometry UI.\n"
  1704. "You can edit it after it is added.")
  1705. )
  1706. self.buttons_box.addWidget(self.add_entry_btn)
  1707. # add_fct_entry_btn = FCButton(_("Add Paint/NCC Tool in DB"))
  1708. # add_fct_entry_btn.setToolTip(
  1709. # _("Add a new tool in the Tools Database.\n"
  1710. # "It will be used in the Paint/NCC Tools UI.\n"
  1711. # "You can edit it after it is added.")
  1712. # )
  1713. # self.buttons_box.addWidget(add_fct_entry_btn)
  1714. self.remove_entry_btn = FCButton(_("Delete Tool from DB"))
  1715. self.remove_entry_btn.setToolTip(
  1716. _("Remove a selection of tools in the Tools Database.")
  1717. )
  1718. self.buttons_box.addWidget(self.remove_entry_btn)
  1719. self.export_db_btn = FCButton(_("Export DB"))
  1720. self.export_db_btn.setToolTip(
  1721. _("Save the Tools Database to a custom text file.")
  1722. )
  1723. self.buttons_box.addWidget(self.export_db_btn)
  1724. self.import_db_btn = FCButton(_("Import DB"))
  1725. self.import_db_btn.setToolTip(
  1726. _("Load the Tools Database information's from a custom text file.")
  1727. )
  1728. self.buttons_box.addWidget(self.import_db_btn)
  1729. self.save_db_btn = FCButton(_("Save DB"))
  1730. self.save_db_btn.setToolTip(
  1731. _("Save the Tools Database information's.")
  1732. )
  1733. self.buttons_box.addWidget(self.save_db_btn)
  1734. self.add_tool_from_db = FCButton(_("Transfer the Tool"))
  1735. self.add_tool_from_db.setToolTip(
  1736. _("Insert a new tool in the Tools Table of the\n"
  1737. "object/application tool after selecting a tool\n"
  1738. "in the Tools Database.")
  1739. )
  1740. self.add_tool_from_db.setStyleSheet("""
  1741. QPushButton
  1742. {
  1743. font-weight: bold;
  1744. color: green;
  1745. }
  1746. """)
  1747. self.add_tool_from_db.hide()
  1748. self.cancel_tool_from_db = FCButton(_("Cancel"))
  1749. self.cancel_tool_from_db.hide()
  1750. hlay = QtWidgets.QHBoxLayout()
  1751. tree_layout.addLayout(hlay)
  1752. hlay.addWidget(self.add_tool_from_db)
  1753. hlay.addWidget(self.cancel_tool_from_db)
  1754. # hlay.addStretch()
  1755. # ############################ FINSIHED GUI ###################################
  1756. # #############################################################################
  1757. def confirmation_message(self, accepted, minval, maxval):
  1758. if accepted is False:
  1759. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%.*f, %.*f]' % (_("Edited value is out of range"),
  1760. self.decimals,
  1761. minval,
  1762. self.decimals,
  1763. maxval), False)
  1764. else:
  1765. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  1766. def confirmation_message_int(self, accepted, minval, maxval):
  1767. if accepted is False:
  1768. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%d, %d]' %
  1769. (_("Edited value is out of range"), minval, maxval), False)
  1770. else:
  1771. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  1772. class ToolsDB2(QtWidgets.QWidget):
  1773. mark_tools_rows = QtCore.pyqtSignal()
  1774. def __init__(self, app, callback_on_edited, callback_on_tool_request, parent=None):
  1775. super(ToolsDB2, self).__init__(parent)
  1776. self.app = app
  1777. self.app_ui = self.app.ui
  1778. self.decimals = self.app.decimals
  1779. self.callback_app = callback_on_edited
  1780. self.on_tool_request = callback_on_tool_request
  1781. self.offset_item_options = ["Path", "In", "Out", "Custom"]
  1782. self.type_item_options = ["Iso", "Rough", "Finish"]
  1783. self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
  1784. '''
  1785. dict to hold all the tools in the Tools DB
  1786. format:
  1787. {
  1788. tool_id: {
  1789. 'name': 'new_tool'
  1790. 'tooldia': self.app.defaults["geometry_cnctooldia"]
  1791. 'offset': 'Path'
  1792. 'offset_value': 0.0
  1793. 'type': _('Rough'),
  1794. 'tool_type': 'C1'
  1795. 'data': dict()
  1796. }
  1797. }
  1798. '''
  1799. self.db_tool_dict = {}
  1800. # ##############################################################################
  1801. # ##############################################################################
  1802. # TOOLS DATABASE UI
  1803. # ##############################################################################
  1804. # ##############################################################################
  1805. layout = QtWidgets.QGridLayout()
  1806. layout.setColumnStretch(0, 0)
  1807. layout.setColumnStretch(1, 1)
  1808. self.setLayout(layout)
  1809. self.ui = ToolsDB2UI(app=self.app, grid_layout=layout)
  1810. # ##############################################################################
  1811. # ##############################################################################
  1812. # ########## SETUP THE DICTIONARIES THAT HOLD THE WIDGETS #####################
  1813. # ##############################################################################
  1814. # ##############################################################################
  1815. self.form_fields = {
  1816. "tool_target": self.ui.tool_op_combo,
  1817. "tol_min": self.ui.tol_min_entry,
  1818. "tol_max": self.ui.tol_max_entry,
  1819. # Basic
  1820. "name": self.ui.name_entry,
  1821. "tooldia": self.ui.dia_entry,
  1822. "tool_type": self.ui.shape_combo,
  1823. "cutz": self.ui.cutz_entry,
  1824. "multidepth": self.ui.multidepth_cb,
  1825. "depthperpass": self.ui.multidepth_entry,
  1826. "travelz": self.ui.travelz_entry,
  1827. "feedrate": self.ui.frxy_entry,
  1828. "feedrate_z": self.ui.frz_entry,
  1829. "spindlespeed": self.ui.spindle_entry,
  1830. "dwell": self.ui.dwell_cb,
  1831. "dwelltime": self.ui.dwelltime_entry,
  1832. # Advanced
  1833. "type": self.ui.type_combo,
  1834. "offset": self.ui.tooloffset_combo,
  1835. "offset_value": self.ui.custom_offset_entry,
  1836. "vtipdia": self.ui.vdia_entry,
  1837. "vtipangle": self.ui.vangle_entry,
  1838. "feedrate_rapid": self.ui.frapids_entry,
  1839. "extracut": self.ui.ecut_cb,
  1840. "extracut_length": self.ui.ecut_length_entry,
  1841. # NCC
  1842. "tools_nccoperation": self.ui.op_radio,
  1843. "tools_nccmilling_type": self.ui.milling_type_radio,
  1844. "tools_nccoverlap": self.ui.ncc_overlap_entry,
  1845. "tools_nccmargin": self.ui.ncc_margin_entry,
  1846. "tools_nccmethod": self.ui.ncc_method_combo,
  1847. "tools_nccconnect": self.ui.ncc_connect_cb,
  1848. "tools_ncccontour": self.ui.ncc_contour_cb,
  1849. "tools_ncc_offset_choice": self.ui.ncc_choice_offset_cb,
  1850. "tools_ncc_offset_value": self.ui.ncc_offset_spinner,
  1851. # Paint
  1852. "tools_paintoverlap": self.ui.paintoverlap_entry,
  1853. "tools_paintoffset": self.ui.paint_offset_entry,
  1854. "tools_paintmethod": self.ui.paintmethod_combo,
  1855. "tools_pathconnect": self.ui.pathconnect_cb,
  1856. "tools_paintcontour": self.ui.paintcontour_cb,
  1857. # Isolation
  1858. "tools_iso_passes": self.ui.passes_entry,
  1859. "tools_iso_overlap": self.ui.iso_overlap_entry,
  1860. "tools_iso_milling_type": self.ui.milling_type_radio,
  1861. "tools_iso_follow": self.ui.follow_cb,
  1862. "tools_iso_isotype": self.ui.iso_type_radio,
  1863. # Drilling
  1864. "tools_drill_cutz": self.ui.cutz_entry,
  1865. "tools_drill_multidepth": self.ui.mpass_cb,
  1866. "tools_drill_depthperpass": self.ui.maxdepth_entry,
  1867. "tools_drill_travelz": self.ui.travelz_entry,
  1868. "tools_drill_feedrate_z": self.ui.feedrate_z_entry,
  1869. "tools_drill_feedrate_rapid": self.ui.feedrate_rapid_entry,
  1870. "tools_drill_spindlespeed": self.ui.spindlespeed_entry,
  1871. "tools_drill_dwell": self.ui.dwell_cb,
  1872. "tools_drill_dwelltime": self.ui.dwelltime_entry,
  1873. "tools_drill_offset": self.ui.offset_entry,
  1874. "tools_drill_drill_slots": self.ui.drill_slots_cb,
  1875. "tools_drill_drill_overlap": self.ui.drill_overlap_entry,
  1876. "tools_drill_last_drill": self.ui.last_drill_cb,
  1877. }
  1878. self.name2option = {
  1879. "gdb_tool_target": "tool_target",
  1880. "gdb_tol_min": "tol_min",
  1881. "gdb_tol_max": "tol_max",
  1882. # Basic
  1883. "gdb_name": "name",
  1884. "gdb_dia": "tooldia",
  1885. "gdb_shape": "tool_type",
  1886. "gdb_cutz": "cutz",
  1887. "gdb_multidepth": "multidepth",
  1888. "gdb_multidepth_entry": "depthperpass",
  1889. "gdb_travel": "travelz",
  1890. "gdb_frxy": "feedrate",
  1891. "gdb_frz": "feedrate_z",
  1892. "gdb_spindle": "spindlespeed",
  1893. "gdb_dwell": "dwell",
  1894. "gdb_dwelltime": "dwelltime",
  1895. # Advanced
  1896. "gdb_type": "type",
  1897. "gdb_tool_offset": "offset",
  1898. "gdb_custom_offset": "offset_value",
  1899. "gdb_vdia": "vtipdia",
  1900. "gdb_vangle": "vtipangle",
  1901. "gdb_frapids": "feedrate_rapid",
  1902. "gdb_ecut": "extracut",
  1903. "gdb_ecut_length": "extracut_length",
  1904. # NCC
  1905. "gdb_n_operation": "tools_nccoperation",
  1906. "gdb_n_overlap": "tools_nccoverlap",
  1907. "gdb_n_margin": "tools_nccmargin",
  1908. "gdb_n_method": "tools_nccmethod",
  1909. "gdb_n_connect": "tools_nccconnect",
  1910. "gdb_n_contour": "tools_ncccontour",
  1911. "gdb_n_offset": "tools_ncc_offset_choice",
  1912. "gdb_n_offset_value": "tools_ncc_offset_value",
  1913. "gdb_n_milling_type": "tools_nccmilling_type",
  1914. # Paint
  1915. 'gdb_p_overlap': "tools_paintoverlap",
  1916. 'gdb_p_offset': "tools_paintoffset",
  1917. 'gdb_p_method': "tools_paintmethod",
  1918. 'gdb_p_connect': "tools_pathconnect",
  1919. 'gdb_p_contour': "tools_paintcontour",
  1920. # Isolation
  1921. "gdb_i_passes": "tools_iso_passes",
  1922. "gdb_i_overlap": "tools_iso_overlap",
  1923. "gdb_i_milling_type": "tools_iso_milling_type",
  1924. "gdb_i_follow": "tools_iso_follow",
  1925. "gdb_i_iso_type": "tools_iso_isotype",
  1926. # Drilling
  1927. "gdb_e_cutz": "tools_drill_cutz",
  1928. "gdb_e_multidepth": "tools_drill_multidepth",
  1929. "gdb_e_depthperpass": "tools_drill_depthperpass",
  1930. "gdb_e_travelz": "tools_drill_travelz",
  1931. "gdb_e_feedratez": "tools_drill_feedrate_z",
  1932. "gdb_e_fr_rapid": "tools_drill_feedrate_rapid",
  1933. "gdb_e_spindlespeed": "tools_drill_spindlespeed",
  1934. "gdb_e_dwell": "tools_drill_dwell",
  1935. "gdb_e_dwelltime": "tools_drill_dwelltime",
  1936. "gdb_e_offset": "tools_drill_offset",
  1937. "gdb_e_drill_slots": "tools_drill_drill_slots",
  1938. "gdb_e_drill_slots_over": "tools_drill_drill_overlap",
  1939. "gdb_e_drill_last_drill": "tools_drill_last_drill",
  1940. }
  1941. self.current_toolid = None
  1942. # variable to show if double clicking and item will trigger adding a tool from DB
  1943. self.ok_to_add = False
  1944. # ##############################################################################
  1945. # ######################## SIGNALS #############################################
  1946. # ##############################################################################
  1947. self.ui.add_entry_btn.clicked.connect(self.on_tool_add)
  1948. self.ui.remove_entry_btn.clicked.connect(self.on_tool_delete)
  1949. self.ui.export_db_btn.clicked.connect(self.on_export_tools_db_file)
  1950. self.ui.import_db_btn.clicked.connect(self.on_import_tools_db_file)
  1951. self.ui.save_db_btn.clicked.connect(self.on_save_db_btn_click)
  1952. # closebtn.clicked.connect(self.accept)
  1953. self.ui.add_tool_from_db.clicked.connect(self.on_tool_requested_from_app)
  1954. self.ui.cancel_tool_from_db.clicked.connect(self.on_cancel_tool)
  1955. # self.ui.tree_widget.selectionModel().selectionChanged.connect(self.on_list_selection_change)
  1956. self.ui.tree_widget.currentItemChanged.connect(self.on_list_selection_change)
  1957. self.ui.tree_widget.itemChanged.connect(self.on_list_item_edited)
  1958. self.ui.tree_widget.customContextMenuRequested.connect(self.on_menu_request)
  1959. self.ui.tree_widget.itemDoubleClicked.connect(self.on_item_double_clicked)
  1960. self.ui.tool_op_combo.currentIndexChanged.connect(self.on_object_type_changed)
  1961. self.setup_db_ui()
  1962. def on_menu_request(self, pos):
  1963. menu = QtWidgets.QMenu()
  1964. add_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/plus16.png'), _("Add to DB"))
  1965. add_tool.triggered.connect(self.on_tool_add)
  1966. copy_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/copy16.png'), _("Copy from DB"))
  1967. copy_tool.triggered.connect(self.on_tool_copy)
  1968. delete_tool = menu.addAction(QtGui.QIcon(self.app.resource_location + '/delete32.png'), _("Delete from DB"))
  1969. delete_tool.triggered.connect(self.on_tool_delete)
  1970. # sep = menu.addSeparator()
  1971. save_changes = menu.addAction(QtGui.QIcon(self.app.resource_location + '/save_as.png'), _("Save changes"))
  1972. save_changes.triggered.connect(self.on_save_changes)
  1973. # tree_item = self.ui.tree_widget.itemAt(pos)
  1974. menu.exec(self.ui.tree_widget.viewport().mapToGlobal(pos))
  1975. def on_save_changes(self):
  1976. widget_name = self.app_ui.plot_tab_area.currentWidget().objectName()
  1977. if widget_name == 'database_tab':
  1978. # Tools DB saved, update flag
  1979. self.app.tools_db_changed_flag = False
  1980. self.app.tools_db_tab.on_save_tools_db()
  1981. def on_item_double_clicked(self, item, column):
  1982. if column == 0 and self.ok_to_add is True:
  1983. self.ok_to_add = False
  1984. self.on_tool_requested_from_app()
  1985. def on_list_selection_change(self, current, previous):
  1986. self.ui_disconnect()
  1987. self.current_toolid = int(current.text(0))
  1988. self.storage_to_form(self.db_tool_dict[current.text(0)])
  1989. self.ui_connect()
  1990. def on_list_item_edited(self, item, column):
  1991. if column == 0:
  1992. return
  1993. self.ui.name_entry.set_value(item.text(1))
  1994. def storage_to_form(self, dict_storage):
  1995. for form_key in self.form_fields:
  1996. for storage_key in dict_storage:
  1997. if form_key == storage_key:
  1998. try:
  1999. self.form_fields[form_key].set_value(dict_storage[form_key])
  2000. except Exception as e:
  2001. print(str(e))
  2002. if storage_key == 'data':
  2003. for data_key in dict_storage[storage_key]:
  2004. if form_key == data_key:
  2005. try:
  2006. self.form_fields[form_key].set_value(dict_storage['data'][data_key])
  2007. except Exception as e:
  2008. print(str(e))
  2009. def form_to_storage(self, tool):
  2010. self.blockSignals(True)
  2011. widget_changed = self.sender()
  2012. wdg_objname = widget_changed.objectName()
  2013. option_changed = self.name2option[wdg_objname]
  2014. tooluid_item = int(tool)
  2015. for tooluid_key, tooluid_val in self.db_tool_dict.items():
  2016. if int(tooluid_key) == tooluid_item:
  2017. new_option_value = self.form_fields[option_changed].get_value()
  2018. if option_changed in tooluid_val:
  2019. tooluid_val[option_changed] = new_option_value
  2020. if option_changed in tooluid_val['data']:
  2021. tooluid_val['data'][option_changed] = new_option_value
  2022. self.blockSignals(False)
  2023. def setup_db_ui(self):
  2024. filename = self.app.data_path + '\\geo_tools_db.FlatDB'
  2025. # load the database tools from the file
  2026. try:
  2027. with open(filename) as f:
  2028. tools = f.read()
  2029. except IOError:
  2030. self.app.log.error("Could not load tools DB file.")
  2031. self.app.inform.emit('[ERROR] %s' % _("Could not load Tools DB file."))
  2032. return
  2033. try:
  2034. self.db_tool_dict = json.loads(tools)
  2035. except Exception:
  2036. e = sys.exc_info()[0]
  2037. self.app.log.error(str(e))
  2038. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  2039. return
  2040. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  2041. self.build_db_ui()
  2042. def build_db_ui(self):
  2043. self.ui_disconnect()
  2044. nr_crt = 0
  2045. parent = self.ui.tree_widget
  2046. self.ui.tree_widget.blockSignals(True)
  2047. self.ui.tree_widget.clear()
  2048. self.ui.tree_widget.blockSignals(False)
  2049. for toolid, dict_val in self.db_tool_dict.items():
  2050. row = nr_crt
  2051. nr_crt += 1
  2052. t_name = dict_val['name']
  2053. try:
  2054. # self.add_tool_table_line(row, name=t_name, tooldict=dict_val)
  2055. self.ui.tree_widget.blockSignals(True)
  2056. try:
  2057. self.ui.tree_widget.addParentEditable(parent=parent, title=[str(row+1), t_name], editable=True)
  2058. except Exception as e:
  2059. print('FlatCAMCoomn.ToolDB2.build_db_ui() -> ', str(e))
  2060. self.ui.tree_widget.blockSignals(False)
  2061. except Exception as e:
  2062. self.app.log.debug("ToolDB.build_db_ui.add_tool_table_line() --> %s" % str(e))
  2063. if self.current_toolid is None or self.current_toolid < 1:
  2064. if self.db_tool_dict:
  2065. self.storage_to_form(self.db_tool_dict['1'])
  2066. # Enable appGUI
  2067. try:
  2068. self.on_object_type_changed(val=self.db_tool_dict['1']['data']['tool_target'])
  2069. except KeyError:
  2070. self.on_object_type_changed(val=_("General"))
  2071. self.ui.tree_widget.setCurrentItem(self.ui.tree_widget.topLevelItem(0))
  2072. # self.ui.tree_widget.setFocus()
  2073. else:
  2074. # Disable appGUI
  2075. self.ui.tool_description_box.show()
  2076. self.ui.milling_box.show()
  2077. self.ui.ncc_box.show()
  2078. self.ui.paint_box.show()
  2079. self.ui.iso_box.show()
  2080. self.ui.drill_box.show()
  2081. self.ui.tool_description_box.setEnabled(False)
  2082. self.ui.milling_box.setEnabled(False)
  2083. self.ui.ncc_box.setEnabled(False)
  2084. self.ui.paint_box.setEnabled(False)
  2085. self.ui.iso_box.setEnabled(False)
  2086. self.ui.drill_box.setEnabled(False)
  2087. else:
  2088. self.storage_to_form(self.db_tool_dict[str(self.current_toolid)])
  2089. self.ui_connect()
  2090. def on_object_type_changed(self, index=None, val=None):
  2091. if val is None:
  2092. tool_target = self.ui.tool_op_combo.get_value()
  2093. else:
  2094. tool_target = val
  2095. self.ui.tool_description_box.setEnabled(True)
  2096. if self.db_tool_dict:
  2097. if tool_target == _("General"):
  2098. self.ui.milling_box.setEnabled(True)
  2099. self.ui.ncc_box.setEnabled(True)
  2100. self.ui.paint_box.setEnabled(True)
  2101. self.ui.iso_box.setEnabled(True)
  2102. self.ui.drill_box.setEnabled(True)
  2103. self.ui.milling_box.show()
  2104. self.ui.ncc_box.show()
  2105. self.ui.paint_box.show()
  2106. self.ui.iso_box.show()
  2107. self.ui.drill_box.show()
  2108. else:
  2109. self.ui.ncc_box.hide()
  2110. self.ui.paint_box.hide()
  2111. self.ui.iso_box.hide()
  2112. self.ui.drill_box.hide()
  2113. if tool_target == _("Milling"):
  2114. self.ui.milling_box.setEnabled(True)
  2115. self.ui.milling_box.show()
  2116. if tool_target == _("Drilling"):
  2117. self.ui.drill_box.setEnabled(True)
  2118. self.ui.drill_box.show()
  2119. if tool_target == _("Isolation"):
  2120. self.ui.iso_box.setEnabled(True)
  2121. self.ui.iso_box.show()
  2122. if tool_target == _("Paint"):
  2123. self.ui.paint_box.setEnabled(True)
  2124. self.ui.paint_box.show()
  2125. if tool_target == _("NCC"):
  2126. self.ui.ncc_box.setEnabled(True)
  2127. self.ui.ncc_box.show()
  2128. def on_tool_add(self):
  2129. """
  2130. Add a tool in the DB Tool Table
  2131. :return: None
  2132. """
  2133. default_data = {}
  2134. default_data.update({
  2135. "plot": True,
  2136. "cutz": float(self.app.defaults["geometry_cutz"]),
  2137. "multidepth": self.app.defaults["geometry_multidepth"],
  2138. "depthperpass": float(self.app.defaults["geometry_depthperpass"]),
  2139. "vtipdia": float(self.app.defaults["geometry_vtipdia"]),
  2140. "vtipangle": float(self.app.defaults["geometry_vtipangle"]),
  2141. "travelz": float(self.app.defaults["geometry_travelz"]),
  2142. "feedrate": float(self.app.defaults["geometry_feedrate"]),
  2143. "feedrate_z": float(self.app.defaults["geometry_feedrate_z"]),
  2144. "feedrate_rapid": float(self.app.defaults["geometry_feedrate_rapid"]),
  2145. "spindlespeed": self.app.defaults["geometry_spindlespeed"],
  2146. "dwell": self.app.defaults["geometry_dwell"],
  2147. "dwelltime": float(self.app.defaults["geometry_dwelltime"]),
  2148. "ppname_g": self.app.defaults["geometry_ppname_g"],
  2149. "extracut": self.app.defaults["geometry_extracut"],
  2150. "extracut_length": float(self.app.defaults["geometry_extracut_length"]),
  2151. "toolchange": self.app.defaults["geometry_toolchange"],
  2152. "toolchangexy": self.app.defaults["geometry_toolchangexy"],
  2153. "toolchangez": float(self.app.defaults["geometry_toolchangez"]),
  2154. "startz": self.app.defaults["geometry_startz"],
  2155. "endz": float(self.app.defaults["geometry_endz"]),
  2156. "tool_target": _("General"),
  2157. "tol_min": 0.0,
  2158. "tol_max": 0.0,
  2159. # NCC
  2160. "tools_nccoperation": self.app.defaults["tools_nccoperation"],
  2161. "tools_nccmilling_type": self.app.defaults["tools_nccmilling_type"],
  2162. "tools_nccoverlap": float(self.app.defaults["tools_nccoverlap"]),
  2163. "tools_nccmargin": float(self.app.defaults["tools_nccmargin"]),
  2164. "tools_nccmethod": self.app.defaults["tools_nccmethod"],
  2165. "tools_nccconnect": self.app.defaults["tools_nccconnect"],
  2166. "tools_ncccontour": self.app.defaults["tools_ncccontour"],
  2167. "tools_ncc_offset_choice": self.app.defaults["tools_ncc_offset_choice"],
  2168. "tools_ncc_offset_value": float(self.app.defaults["tools_ncc_offset_value"]),
  2169. # Paint
  2170. "tools_paintoverlap": float(self.app.defaults["tools_paintoverlap"]),
  2171. "tools_paintoffset": float(self.app.defaults["tools_paintoffset"]),
  2172. "tools_paintmethod": self.app.defaults["tools_paintmethod"],
  2173. "tools_pathconnect": self.app.defaults["tools_pathconnect"],
  2174. "tools_paintcontour": self.app.defaults["tools_paintcontour"],
  2175. # Isolation
  2176. "tools_iso_passes": int(self.app.defaults["tools_iso_passes"]),
  2177. "tools_iso_overlap": float(self.app.defaults["tools_iso_overlap"]),
  2178. "tools_iso_milling_type": self.app.defaults["tools_iso_milling_type"],
  2179. "tools_iso_follow": self.app.defaults["tools_iso_follow"],
  2180. "tools_iso_isotype": self.app.defaults["tools_iso_isotype"],
  2181. # Drilling
  2182. "tools_drill_cutz": float(self.app.defaults["tools_drill_cutz"]),
  2183. "tools_drill_multidepth": self.app.defaults["tools_drill_multidepth"],
  2184. "tools_drill_depthperpass": float(self.app.defaults["tools_drill_depthperpass"]),
  2185. "tools_drill_travelz": float(self.app.defaults["tools_drill_travelz"]),
  2186. "tools_drill_feedrate_z": float(self.app.defaults["tools_drill_feedrate_z"]),
  2187. "tools_drill_feedrate_rapid": float(self.app.defaults["tools_drill_feedrate_rapid"]),
  2188. "tools_drill_spindlespeed": float(self.app.defaults["tools_drill_spindlespeed"]),
  2189. "tools_drill_dwell": self.app.defaults["tools_drill_dwell"],
  2190. "tools_drill_offset": float(self.app.defaults["tools_drill_offset"]),
  2191. "tools_drill_drill_slots": self.app.defaults["tools_drill_drill_slots"],
  2192. "tools_drill_drill_overlap": float(self.app.defaults["tools_drill_drill_overlap"]),
  2193. "tools_drill_last_drill": self.app.defaults["tools_drill_last_drill"],
  2194. })
  2195. temp = []
  2196. for k, v in self.db_tool_dict.items():
  2197. if "new_tool_" in v['name']:
  2198. temp.append(float(v['name'].rpartition('_')[2]))
  2199. if temp:
  2200. new_name = "new_tool_%d" % int(max(temp) + 1)
  2201. else:
  2202. new_name = "new_tool_1"
  2203. dict_elem = {}
  2204. dict_elem['name'] = new_name
  2205. if type(self.app.defaults["geometry_cnctooldia"]) == float:
  2206. dict_elem['tooldia'] = self.app.defaults["geometry_cnctooldia"]
  2207. else:
  2208. try:
  2209. tools_string = self.app.defaults["geometry_cnctooldia"].split(",")
  2210. tools_diameters = [eval(a) for a in tools_string if a != '']
  2211. dict_elem['tooldia'] = tools_diameters[0] if tools_diameters else 0.0
  2212. except Exception as e:
  2213. self.app.log.debug("ToolDB.on_tool_add() --> %s" % str(e))
  2214. return
  2215. dict_elem['offset'] = 'Path'
  2216. dict_elem['offset_value'] = 0.0
  2217. dict_elem['type'] = 'Rough'
  2218. dict_elem['tool_type'] = 'C1'
  2219. dict_elem['data'] = default_data
  2220. new_toolid = len(self.db_tool_dict) + 1
  2221. self.db_tool_dict[str(new_toolid)] = deepcopy(dict_elem)
  2222. # add the new entry to the Tools DB table
  2223. self.update_storage()
  2224. self.build_db_ui()
  2225. # select the last Tree item just added
  2226. nr_items = self.ui.tree_widget.topLevelItemCount()
  2227. if nr_items:
  2228. last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
  2229. self.ui.tree_widget.setCurrentItem(last_item)
  2230. last_item.setSelected(True)
  2231. self.on_object_type_changed(val=dict_elem['data']['tool_target'])
  2232. self.app.inform.emit('[success] %s' % _("Tool added to DB."))
  2233. def on_tool_copy(self):
  2234. """
  2235. Copy a selection of Tools in the Tools DB table
  2236. :return:
  2237. """
  2238. new_tool_id = len(self.db_tool_dict)
  2239. for item in self.ui.tree_widget.selectedItems():
  2240. old_tool_id = item.data(0, QtCore.Qt.DisplayRole)
  2241. for toolid, dict_val in list(self.db_tool_dict.items()):
  2242. if int(old_tool_id) == int(toolid):
  2243. new_tool_id += 1
  2244. new_key = str(new_tool_id)
  2245. self.db_tool_dict.update({
  2246. new_key: deepcopy(dict_val)
  2247. })
  2248. self.current_toolid = new_tool_id
  2249. self.update_storage()
  2250. self.build_db_ui()
  2251. # select the last Tree item just added
  2252. nr_items = self.ui.tree_widget.topLevelItemCount()
  2253. if nr_items:
  2254. last_item = self.ui.tree_widget.topLevelItem(nr_items - 1)
  2255. self.ui.tree_widget.setCurrentItem(last_item)
  2256. last_item.setSelected(True)
  2257. self.callback_app()
  2258. self.app.inform.emit('[success] %s' % _("Tool copied from Tools DB."))
  2259. def on_tool_delete(self):
  2260. """
  2261. Delete a selection of Tools in the Tools DB table
  2262. :return:
  2263. """
  2264. for item in self.ui.tree_widget.selectedItems():
  2265. toolname_to_remove = item.data(0, QtCore.Qt.DisplayRole)
  2266. for toolid, dict_val in list(self.db_tool_dict.items()):
  2267. if int(toolname_to_remove) == int(toolid):
  2268. # remove from the storage
  2269. self.db_tool_dict.pop(toolid, None)
  2270. self.current_toolid -= 1
  2271. self.update_storage()
  2272. self.build_db_ui()
  2273. # select the first Tree item
  2274. nr_items = self.ui.tree_widget.topLevelItemCount()
  2275. if nr_items:
  2276. first_item = self.ui.tree_widget.topLevelItem(0)
  2277. self.ui.tree_widget.setCurrentItem(first_item)
  2278. first_item.setSelected(True)
  2279. self.app.inform.emit('[success] %s' % _("Tool removed from Tools DB."))
  2280. def on_export_tools_db_file(self):
  2281. self.app.defaults.report_usage("on_export_tools_db_file")
  2282. self.app.log.debug("on_export_tools_db_file()")
  2283. date = str(datetime.today()).rpartition('.')[0]
  2284. date = ''.join(c for c in date if c not in ':-')
  2285. date = date.replace(' ', '_')
  2286. filter__ = "Text File (*.TXT);;All Files (*.*)"
  2287. filename, _f = FCFileSaveDialog.get_saved_filename(caption=_("Export Tools Database"),
  2288. directory='{l_save}/FlatCAM_{n}_{date}'.format(
  2289. l_save=str(self.app.get_last_save_folder()),
  2290. n=_("Tools_Database"),
  2291. date=date),
  2292. ext_filter=filter__)
  2293. filename = str(filename)
  2294. if filename == "":
  2295. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  2296. return
  2297. else:
  2298. try:
  2299. f = open(filename, 'w')
  2300. f.close()
  2301. except PermissionError:
  2302. self.app.inform.emit('[WARNING] %s' %
  2303. _("Permission denied, saving not possible.\n"
  2304. "Most likely another app is holding the file open and not accessible."))
  2305. return
  2306. except IOError:
  2307. self.app.log.debug('Creating a new Tools DB file ...')
  2308. f = open(filename, 'w')
  2309. f.close()
  2310. except Exception:
  2311. e = sys.exc_info()[0]
  2312. self.app.log.error("Could not load Tools DB file.")
  2313. self.app.log.error(str(e))
  2314. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  2315. return
  2316. # Save update options
  2317. try:
  2318. # Save Tools DB in a file
  2319. try:
  2320. with open(filename, "w") as f:
  2321. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  2322. except Exception as e:
  2323. self.app.log.debug("App.on_save_tools_db() --> %s" % str(e))
  2324. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2325. return
  2326. except Exception:
  2327. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2328. return
  2329. self.app.inform.emit('[success] %s: %s' % (_("Exported Tools DB to"), filename))
  2330. def on_import_tools_db_file(self):
  2331. self.app.defaults.report_usage("on_import_tools_db_file")
  2332. self.app.log.debug("on_import_tools_db_file()")
  2333. filter__ = "Text File (*.TXT);;All Files (*.*)"
  2334. filename, _f = QtWidgets.QFileDialog.getOpenFileName(caption=_("Import FlatCAM Tools DB"), filter=filter__)
  2335. if filename == "":
  2336. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
  2337. else:
  2338. try:
  2339. with open(filename) as f:
  2340. tools_in_db = f.read()
  2341. except IOError:
  2342. self.app.log.error("Could not load Tools DB file.")
  2343. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Could not load Tools DB file."))
  2344. return
  2345. try:
  2346. self.db_tool_dict = json.loads(tools_in_db)
  2347. except Exception:
  2348. e = sys.exc_info()[0]
  2349. self.app.log.error(str(e))
  2350. self.app.inform.emit('[ERROR] %s' % _("Failed to parse Tools DB file."))
  2351. return
  2352. self.app.inform.emit('[success] %s: %s' % (_("Loaded Tools DB from"), filename))
  2353. self.build_db_ui()
  2354. self.update_storage()
  2355. def on_save_tools_db(self, silent=False):
  2356. self.app.log.debug("ToolsDB.on_save_button() --> Saving Tools Database to file.")
  2357. filename = self.app.data_path + "/geo_tools_db.FlatDB"
  2358. # Preferences save, update the color of the Tools DB Tab text
  2359. for idx in range(self.app_ui.plot_tab_area.count()):
  2360. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  2361. self.app_ui.plot_tab_area.tabBar.setTabTextColor(idx, QtGui.QColor('black'))
  2362. self.ui.save_db_btn.setStyleSheet("")
  2363. # Save Tools DB in a file
  2364. try:
  2365. f = open(filename, "w")
  2366. json.dump(self.db_tool_dict, f, default=to_dict, indent=2)
  2367. f.close()
  2368. except Exception as e:
  2369. self.app.log.debug("ToolsDB.on_save_tools_db() --> %s" % str(e))
  2370. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Failed to write Tools DB to file."))
  2371. return
  2372. if not silent:
  2373. self.app.inform.emit('[success] %s' % _("Saved Tools DB."))
  2374. def on_save_db_btn_click(self):
  2375. self.app.tools_db_changed_flag = False
  2376. self.on_save_tools_db()
  2377. def on_calculate_tooldia(self):
  2378. if self.ui.shape_combo.get_value() == 'V':
  2379. tip_dia = float(self.ui.vdia_entry.get_value())
  2380. half_tip_angle = float(self.ui.vangle_entry.get_value()) / 2.0
  2381. cut_z = float(self.ui.cutz_entry.get_value())
  2382. cut_z = -cut_z if cut_z < 0 else cut_z
  2383. # calculated tool diameter so the cut_z parameter is obeyed
  2384. tool_dia = tip_dia + (2 * cut_z * math.tan(math.radians(half_tip_angle)))
  2385. self.ui.dia_entry.set_value(tool_dia)
  2386. def ui_connect(self):
  2387. # make sure that we don't make multiple connections to the widgets
  2388. self.ui_disconnect()
  2389. self.ui.name_entry.editingFinished.connect(self.update_tree_name)
  2390. for key in self.form_fields:
  2391. wdg = self.form_fields[key]
  2392. # FCEntry
  2393. if isinstance(wdg, FCEntry):
  2394. wdg.textChanged.connect(self.update_storage)
  2395. # ComboBox
  2396. if isinstance(wdg, FCComboBox):
  2397. wdg.currentIndexChanged.connect(self.update_storage)
  2398. # CheckBox
  2399. if isinstance(wdg, FCCheckBox):
  2400. wdg.toggled.connect(self.update_storage)
  2401. # FCRadio
  2402. if isinstance(wdg, RadioSet):
  2403. wdg.activated_custom.connect(self.update_storage)
  2404. # SpinBox, DoubleSpinBox
  2405. if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
  2406. wdg.valueChanged.connect(self.update_storage)
  2407. # connect the calculate tooldia method to the controls
  2408. # if the tool shape is 'V' the tool dia will be calculated to obey Cut Z parameter
  2409. self.ui.shape_combo.currentIndexChanged.connect(self.on_calculate_tooldia)
  2410. self.ui.cutz_entry.valueChanged.connect(self.on_calculate_tooldia)
  2411. self.ui.vdia_entry.valueChanged.connect(self.on_calculate_tooldia)
  2412. self.ui.vangle_entry.valueChanged.connect(self.on_calculate_tooldia)
  2413. def ui_disconnect(self):
  2414. try:
  2415. self.ui.name_entry.editingFinished.disconnect(self.update_tree_name)
  2416. except (TypeError, AttributeError):
  2417. pass
  2418. try:
  2419. self.ui.shape_combo.currentIndexChanged.disconnect(self.on_calculate_tooldia)
  2420. except (TypeError, AttributeError):
  2421. pass
  2422. try:
  2423. self.ui.cutz_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2424. except (TypeError, AttributeError):
  2425. pass
  2426. try:
  2427. self.ui.vdia_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2428. except (TypeError, AttributeError):
  2429. pass
  2430. try:
  2431. self.ui.vangle_entry.valueChanged.disconnect(self.on_calculate_tooldia)
  2432. except (TypeError, AttributeError):
  2433. pass
  2434. for key in self.form_fields:
  2435. wdg = self.form_fields[key]
  2436. # FCEntry
  2437. if isinstance(wdg, FCEntry):
  2438. try:
  2439. wdg.textChanged.disconnect(self.update_storage)
  2440. except (TypeError, AttributeError):
  2441. pass
  2442. # ComboBox
  2443. if isinstance(wdg, FCComboBox):
  2444. try:
  2445. wdg.currentIndexChanged.disconnect(self.update_storage)
  2446. except (TypeError, AttributeError):
  2447. pass
  2448. # CheckBox
  2449. if isinstance(wdg, FCCheckBox):
  2450. try:
  2451. wdg.toggled.disconnect(self.update_storage)
  2452. except (TypeError, AttributeError):
  2453. pass
  2454. # FCRadio
  2455. if isinstance(wdg, RadioSet):
  2456. try:
  2457. wdg.activated_custom.disconnect(self.update_storage)
  2458. except (TypeError, AttributeError):
  2459. pass
  2460. # SpinBox, DoubleSpinBox
  2461. if isinstance(wdg, FCSpinner) or isinstance(wdg, FCDoubleSpinner):
  2462. try:
  2463. wdg.valueChanged.disconnect(self.update_storage)
  2464. except (TypeError, AttributeError):
  2465. pass
  2466. def update_tree_name(self):
  2467. val = self.ui.name_entry.get_value()
  2468. item = self.ui.tree_widget.currentItem()
  2469. if item is None:
  2470. return
  2471. # I'm setting the value for the second column (designated by 1) because first column holds the ID
  2472. # and second column holds the Name (this behavior is set in the build_ui method)
  2473. item.setData(1, QtCore.Qt.DisplayRole, val)
  2474. def update_storage(self):
  2475. """
  2476. Update the dictionary that is the storage of the tools 'database'
  2477. :return:
  2478. """
  2479. tool_id = str(self.current_toolid)
  2480. try:
  2481. wdg = self.sender()
  2482. assert isinstance(wdg, QtWidgets.QWidget) or isinstance(wdg, QtWidgets.QAction), \
  2483. "Expected a QWidget got %s" % type(wdg)
  2484. if wdg is None:
  2485. return
  2486. wdg_name = wdg.objectName()
  2487. val = wdg.get_value()
  2488. except AttributeError:
  2489. return
  2490. if wdg_name == "gdb_name":
  2491. self.db_tool_dict[tool_id]['name'] = val
  2492. elif wdg_name == "gdb_dia":
  2493. self.db_tool_dict[tool_id]['tooldia'] = val
  2494. elif wdg_name == "gdb_tool_offset":
  2495. self.db_tool_dict[tool_id]['offset'] = val
  2496. elif wdg_name == "gdb_custom_offset":
  2497. self.db_tool_dict[tool_id]['offset_value'] = val
  2498. elif wdg_name == "gdb_type":
  2499. self.db_tool_dict[tool_id]['type'] = val
  2500. elif wdg_name == "gdb_shape":
  2501. self.db_tool_dict[tool_id]['tool_type'] = val
  2502. else:
  2503. if wdg_name == "gdb_tool_target":
  2504. self.db_tool_dict[tool_id]['data']['tool_target'] = val
  2505. elif wdg_name == "gdb_tol_min":
  2506. self.db_tool_dict[tool_id]['data']['tol_min'] = val
  2507. elif wdg_name == "gdb_tol_max":
  2508. self.db_tool_dict[tool_id]['data']['tol_max'] = val
  2509. elif wdg_name == "gdb_cutz":
  2510. self.db_tool_dict[tool_id]['data']['cutz'] = val
  2511. elif wdg_name == "gdb_multidepth":
  2512. self.db_tool_dict[tool_id]['data']['multidepth'] = val
  2513. elif wdg_name == "gdb_multidepth_entry":
  2514. self.db_tool_dict[tool_id]['data']['depthperpass'] = val
  2515. elif wdg_name == "gdb_travel":
  2516. self.db_tool_dict[tool_id]['data']['travelz'] = val
  2517. elif wdg_name == "gdb_frxy":
  2518. self.db_tool_dict[tool_id]['data']['feedrate'] = val
  2519. elif wdg_name == "gdb_frz":
  2520. self.db_tool_dict[tool_id]['data']['feedrate_z'] = val
  2521. elif wdg_name == "gdb_spindle":
  2522. self.db_tool_dict[tool_id]['data']['spindlespeed'] = val
  2523. elif wdg_name == "gdb_dwell":
  2524. self.db_tool_dict[tool_id]['data']['dwell'] = val
  2525. elif wdg_name == "gdb_dwelltime":
  2526. self.db_tool_dict[tool_id]['data']['dwelltime'] = val
  2527. elif wdg_name == "gdb_vdia":
  2528. self.db_tool_dict[tool_id]['data']['vtipdia'] = val
  2529. elif wdg_name == "gdb_vangle":
  2530. self.db_tool_dict[tool_id]['data']['vtipangle'] = val
  2531. elif wdg_name == "gdb_frapids":
  2532. self.db_tool_dict[tool_id]['data']['feedrate_rapid'] = val
  2533. elif wdg_name == "gdb_ecut":
  2534. self.db_tool_dict[tool_id]['data']['extracut'] = val
  2535. elif wdg_name == "gdb_ecut_length":
  2536. self.db_tool_dict[tool_id]['data']['extracut_length'] = val
  2537. # NCC Tool
  2538. elif wdg_name == "gdb_n_operation":
  2539. self.db_tool_dict[tool_id]['data']['tools_nccoperation'] = val
  2540. elif wdg_name == "gdb_n_overlap":
  2541. self.db_tool_dict[tool_id]['data']['tools_nccoverlap'] = val
  2542. elif wdg_name == "gdb_n_margin":
  2543. self.db_tool_dict[tool_id]['data']['tools_nccmargin'] = val
  2544. elif wdg_name == "gdb_n_method":
  2545. self.db_tool_dict[tool_id]['data']['tools_nccmethod'] = val
  2546. elif wdg_name == "gdb_n_connect":
  2547. self.db_tool_dict[tool_id]['data']['tools_nccconnect'] = val
  2548. elif wdg_name == "gdb_n_contour":
  2549. self.db_tool_dict[tool_id]['data']['tools_ncccontour'] = val
  2550. elif wdg_name == "gdb_n_offset":
  2551. self.db_tool_dict[tool_id]['data']['tools_ncc_offset_choice'] = val
  2552. elif wdg_name == "gdb_n_offset_value":
  2553. self.db_tool_dict[tool_id]['data']['tools_ncc_offset_value'] = val
  2554. elif wdg_name == "gdb_n_milling_type":
  2555. self.db_tool_dict[tool_id]['data']['tools_nccmilling_type'] = val
  2556. # Paint Tool
  2557. elif wdg_name == "gdb_p_overlap":
  2558. self.db_tool_dict[tool_id]['data']['tools_paintoverlap'] = val
  2559. elif wdg_name == "gdb_p_offset":
  2560. self.db_tool_dict[tool_id]['data']['tools_paintoffset'] = val
  2561. elif wdg_name == "gdb_p_method":
  2562. self.db_tool_dict[tool_id]['data']['tools_paintmethod'] = val
  2563. elif wdg_name == "gdb_p_connect":
  2564. self.db_tool_dict[tool_id]['data']['tools_pathconnect'] = val
  2565. elif wdg_name == "gdb_p_contour":
  2566. self.db_tool_dict[tool_id]['data']['tools_paintcontour'] = val
  2567. # Isolation Tool
  2568. elif wdg_name == "gdb_i_passes":
  2569. self.db_tool_dict[tool_id]['data']['tools_iso_passes'] = val
  2570. elif wdg_name == "gdb_i_overlap":
  2571. self.db_tool_dict[tool_id]['data']['tools_iso_overlap'] = val
  2572. elif wdg_name == "gdb_i_milling_type":
  2573. self.db_tool_dict[tool_id]['data']['tools_iso_milling_type'] = val
  2574. elif wdg_name == "gdb_i_follow":
  2575. self.db_tool_dict[tool_id]['data']['tools_iso_follow'] = val
  2576. elif wdg_name == "gdb_i_iso_type":
  2577. self.db_tool_dict[tool_id]['data']['tools_iso_isotype'] = val
  2578. # Drilling Tool
  2579. elif wdg_name == "gdb_e_cutz":
  2580. self.db_tool_dict[tool_id]['data']['tools_drill_cutz'] = val
  2581. elif wdg_name == "gdb_e_multidepth":
  2582. self.db_tool_dict[tool_id]['data']['tools_drill_multidepth'] = val
  2583. elif wdg_name == "gdb_e_depthperpass":
  2584. self.db_tool_dict[tool_id]['data']['tools_drill_depthperpass'] = val
  2585. elif wdg_name == "gdb_e_travelz":
  2586. self.db_tool_dict[tool_id]['data']['tools_drill_travelz'] = val
  2587. elif wdg_name == "gdb_e_feedratez":
  2588. self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_z'] = val
  2589. elif wdg_name == "gdb_e_fr_rapid":
  2590. self.db_tool_dict[tool_id]['data']['tools_drill_feedrate_rapid'] = val
  2591. elif wdg_name == "gdb_e_spindlespeed":
  2592. self.db_tool_dict[tool_id]['data']['tools_drill_spindlespeed'] = val
  2593. elif wdg_name == "gdb_e_dwell":
  2594. self.db_tool_dict[tool_id]['data']['tools_drill_dwell'] = val
  2595. elif wdg_name == "gdb_e_dwelltime":
  2596. self.db_tool_dict[tool_id]['data']['tools_drill_dwelltime'] = val
  2597. elif wdg_name == "gdb_e_offset":
  2598. self.db_tool_dict[tool_id]['data']['tools_drill_offset'] = val
  2599. elif wdg_name == "gdb_e_drill_slots":
  2600. self.db_tool_dict[tool_id]['data']['tools_drill_drill_slots'] = val
  2601. elif wdg_name == "gdb_e_drill_slots_over":
  2602. self.db_tool_dict[tool_id]['data']['tools_drill_drill_overlap'] = val
  2603. elif wdg_name == "gdb_e_drill_last_drill":
  2604. self.db_tool_dict[tool_id]['data']['tools_drill_last_drill'] = val
  2605. self.callback_app()
  2606. def on_tool_requested_from_app(self):
  2607. if not self.ui.tree_widget.selectedItems():
  2608. self.app.inform.emit('[WARNING_NOTCL] %s...' % _("No Tool/row selected in the Tools Database table"))
  2609. return
  2610. for item in self.ui.tree_widget.selectedItems():
  2611. tool_uid = item.data(0, QtCore.Qt.DisplayRole)
  2612. for key in self.db_tool_dict.keys():
  2613. if str(key) == str(tool_uid):
  2614. selected_tool = self.db_tool_dict[key]
  2615. self.on_tool_request(tool=selected_tool)
  2616. def on_cancel_tool(self):
  2617. for idx in range(self.app_ui.plot_tab_area.count()):
  2618. if self.app_ui.plot_tab_area.tabText(idx) == _("Tools Database"):
  2619. wdg = self.app_ui.plot_tab_area.widget(idx)
  2620. wdg.deleteLater()
  2621. self.app_ui.plot_tab_area.removeTab(idx)
  2622. self.app.inform.emit('%s' % _("Cancelled adding tool from DB."))
  2623. # def resize_new_tool_table_widget(self, min_size, max_size):
  2624. # """
  2625. # Resize the table widget responsible for adding new tool in the Tool Database
  2626. #
  2627. # :param min_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  2628. # :param max_size: passed by rangeChanged signal or the self.new_tool_table_widget.horizontalScrollBar()
  2629. # :return:
  2630. # """
  2631. # t_height = self.t_height
  2632. # if max_size > min_size:
  2633. # t_height = self.t_height + self.new_tool_table_widget.verticalScrollBar().height()
  2634. #
  2635. # self.new_tool_table_widget.setMaximumHeight(t_height)
  2636. def closeEvent(self, QCloseEvent):
  2637. super().closeEvent(QCloseEvent)