AppExcEditor.py 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248
  1. # ##########################################################
  2. # FlatCAM: 2D Post-processing for Manufacturing #
  3. # File Author: Marius Adrian Stanciu (c) #
  4. # Date: 8/17/2019 #
  5. # MIT Licence #
  6. # ##########################################################
  7. from PyQt5 import QtGui, QtCore, QtWidgets
  8. from PyQt5.QtCore import Qt
  9. from camlib import distance, arc, FlatCAMRTreeStorage
  10. from appGUI.GUIElements import FCEntry, FCComboBox, FCTable, FCDoubleSpinner, RadioSet, FCSpinner, FCButton
  11. from appEditors.AppGeoEditor import FCShapeTool, DrawTool, DrawToolShape, DrawToolUtilityShape, AppGeoEditor
  12. from appParsers.ParseExcellon import Excellon
  13. from shapely.geometry import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, Point
  14. import shapely.affinity as affinity
  15. import numpy as np
  16. from rtree import index as rtindex
  17. import traceback
  18. import math
  19. import logging
  20. from copy import deepcopy
  21. import gettext
  22. import appTranslation as fcTranslate
  23. import builtins
  24. fcTranslate.apply_language('strings')
  25. if '_' not in builtins.__dict__:
  26. _ = gettext.gettext
  27. log = logging.getLogger('base')
  28. class FCDrillAdd(FCShapeTool):
  29. """
  30. Resulting type: MultiLineString
  31. """
  32. def __init__(self, draw_app):
  33. DrawTool.__init__(self, draw_app)
  34. self.name = 'drill_add'
  35. self.draw_app = draw_app
  36. self.selected_dia = None
  37. try:
  38. self.draw_app.app.inform.emit(_("Click to place ..."))
  39. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  40. # as a visual marker, select again in tooltable the actual tool that we are using
  41. # remember that it was deselected when clicking on canvas
  42. item = self.draw_app.e_ui.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  43. self.draw_app.e_ui.tools_table_exc.setCurrentItem(item)
  44. except KeyError:
  45. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' % _("To add a drill first select a tool"))
  46. self.draw_app.select_tool("drill_select")
  47. return
  48. try:
  49. QtGui.QGuiApplication.restoreOverrideCursor()
  50. except Exception:
  51. pass
  52. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill.png'))
  53. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  54. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y))
  55. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  56. self.draw_app.draw_utility_geometry(geo=geo)
  57. self.draw_app.app.inform.emit(_("Click to place ..."))
  58. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  59. # Switch notebook to Properties page
  60. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  61. def click(self, point):
  62. self.make()
  63. return "Done."
  64. def utility_geometry(self, data=None):
  65. self.points = data
  66. return DrawToolUtilityShape(self.util_shape(data))
  67. def util_shape(self, point):
  68. if point[0] is None and point[1] is None:
  69. point_x = self.draw_app.x
  70. point_y = self.draw_app.y
  71. else:
  72. point_x = point[0]
  73. point_y = point[1]
  74. start_hor_line = ((point_x - (self.selected_dia / 2)), point_y)
  75. stop_hor_line = ((point_x + (self.selected_dia / 2)), point_y)
  76. start_vert_line = (point_x, (point_y - (self.selected_dia / 2)))
  77. stop_vert_line = (point_x, (point_y + (self.selected_dia / 2)))
  78. return MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  79. def make(self):
  80. try:
  81. QtGui.QGuiApplication.restoreOverrideCursor()
  82. except Exception:
  83. pass
  84. # add the point to drills if the diameter is a key in the dict, if not, create it add the drill location
  85. # to the value, as a list of itself
  86. if self.selected_dia in self.draw_app.points_edit:
  87. self.draw_app.points_edit[self.selected_dia].append(self.points)
  88. else:
  89. self.draw_app.points_edit[self.selected_dia] = [self.points]
  90. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  91. self.geometry = DrawToolShape(self.util_shape(self.points))
  92. self.draw_app.in_action = False
  93. self.complete = True
  94. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill added."))
  95. self.draw_app.app.jump_signal.disconnect()
  96. def clean_up(self):
  97. self.draw_app.selected = []
  98. self.draw_app.e_ui.tools_table_exc.clearSelection()
  99. self.draw_app.plot_all()
  100. try:
  101. self.draw_app.app.jump_signal.disconnect()
  102. except (TypeError, AttributeError):
  103. pass
  104. class FCDrillArray(FCShapeTool):
  105. """
  106. Resulting type: MultiLineString
  107. """
  108. def __init__(self, draw_app):
  109. DrawTool.__init__(self, draw_app)
  110. self.name = 'drill_array'
  111. self.draw_app.e_ui.array_frame.show()
  112. self.selected_dia = None
  113. self.drill_axis = 'X'
  114. self.drill_array = 'linear'
  115. self.drill_array_size = None
  116. self.drill_pitch = None
  117. self.drill_linear_angle = None
  118. self.drill_angle = None
  119. self.drill_direction = None
  120. self.drill_radius = None
  121. self.origin = None
  122. self.destination = None
  123. self.flag_for_circ_array = None
  124. self.last_dx = 0
  125. self.last_dy = 0
  126. self.pt = []
  127. try:
  128. self.draw_app.app.inform.emit(_("Click to place ..."))
  129. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  130. # as a visual marker, select again in tooltable the actual tool that we are using
  131. # remember that it was deselected when clicking on canvas
  132. item = self.draw_app.e_ui.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  133. self.draw_app.e_ui.tools_table_exc.setCurrentItem(item)
  134. except KeyError:
  135. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  136. _("To add an Drill Array first select a tool in Tool Table"))
  137. return
  138. try:
  139. QtGui.QGuiApplication.restoreOverrideCursor()
  140. except Exception:
  141. pass
  142. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill_array.png'))
  143. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  144. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y), static=True)
  145. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  146. self.draw_app.draw_utility_geometry(geo=geo)
  147. self.draw_app.app.inform.emit(_("Click on target location ..."))
  148. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  149. # Switch notebook to Properties page
  150. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  151. def click(self, point):
  152. if self.drill_array == 'Linear':
  153. self.make()
  154. return
  155. else:
  156. if self.flag_for_circ_array is None:
  157. self.draw_app.in_action = True
  158. self.pt.append(point)
  159. self.flag_for_circ_array = True
  160. self.set_origin(point)
  161. self.draw_app.app.inform.emit(_("Click on the Drill Circular Array Start position"))
  162. else:
  163. self.destination = point
  164. self.make()
  165. self.flag_for_circ_array = None
  166. return
  167. def set_origin(self, origin):
  168. self.origin = origin
  169. def utility_geometry(self, data=None, static=None):
  170. self.drill_axis = self.draw_app.e_ui.drill_axis_radio.get_value()
  171. self.drill_direction = self.draw_app.e_ui.drill_direction_radio.get_value()
  172. self.drill_array = self.draw_app.e_ui.array_type_combo.get_value()
  173. try:
  174. self.drill_array_size = int(self.draw_app.e_ui.drill_array_size_entry.get_value())
  175. try:
  176. self.drill_pitch = float(self.draw_app.e_ui.drill_pitch_entry.get_value())
  177. self.drill_linear_angle = float(self.draw_app.e_ui.linear_angle_spinner.get_value())
  178. self.drill_angle = float(self.draw_app.e_ui.drill_angle_entry.get_value())
  179. except TypeError:
  180. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  181. _("The value is not Float. Check for comma instead of dot separator."))
  182. return
  183. except Exception as e:
  184. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s. %s' %
  185. (_("The value is mistyped. Check the value"), str(e)))
  186. return
  187. if self.drill_array == 'Linear':
  188. if data[0] is None and data[1] is None:
  189. dx = self.draw_app.x
  190. dy = self.draw_app.y
  191. else:
  192. dx = data[0]
  193. dy = data[1]
  194. geo_list = []
  195. geo = None
  196. self.points = [dx, dy]
  197. for item in range(self.drill_array_size):
  198. if self.drill_axis == 'X':
  199. geo = self.util_shape(((dx + (self.drill_pitch * item)), dy))
  200. if self.drill_axis == 'Y':
  201. geo = self.util_shape((dx, (dy + (self.drill_pitch * item))))
  202. if self.drill_axis == 'A':
  203. x_adj = self.drill_pitch * math.cos(math.radians(self.drill_linear_angle))
  204. y_adj = self.drill_pitch * math.sin(math.radians(self.drill_linear_angle))
  205. geo = self.util_shape(
  206. ((dx + (x_adj * item)), (dy + (y_adj * item)))
  207. )
  208. if static is None or static is False:
  209. geo_list.append(affinity.translate(geo, xoff=(dx - self.last_dx), yoff=(dy - self.last_dy)))
  210. else:
  211. geo_list.append(geo)
  212. # self.origin = data
  213. self.last_dx = dx
  214. self.last_dy = dy
  215. return DrawToolUtilityShape(geo_list)
  216. else:
  217. if data[0] is None and data[1] is None:
  218. cdx = self.draw_app.x
  219. cdy = self.draw_app.y
  220. else:
  221. cdx = data[0]
  222. cdy = data[1]
  223. if len(self.pt) > 0:
  224. temp_points = [x for x in self.pt]
  225. temp_points.append([cdx, cdy])
  226. return DrawToolUtilityShape(LineString(temp_points))
  227. def util_shape(self, point):
  228. if point[0] is None and point[1] is None:
  229. point_x = self.draw_app.x
  230. point_y = self.draw_app.y
  231. else:
  232. point_x = point[0]
  233. point_y = point[1]
  234. start_hor_line = ((point_x - (self.selected_dia / 2)), point_y)
  235. stop_hor_line = ((point_x + (self.selected_dia / 2)), point_y)
  236. start_vert_line = (point_x, (point_y - (self.selected_dia / 2)))
  237. stop_vert_line = (point_x, (point_y + (self.selected_dia / 2)))
  238. return MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  239. def make(self):
  240. self.geometry = []
  241. geo = None
  242. try:
  243. QtGui.QGuiApplication.restoreOverrideCursor()
  244. except Exception:
  245. pass
  246. # add the point to drills if the diameter is a key in the dict, if not, create it add the drill location
  247. # to the value, as a list of itself
  248. if self.selected_dia not in self.draw_app.points_edit:
  249. self.draw_app.points_edit[self.selected_dia] = []
  250. for i in range(self.drill_array_size):
  251. self.draw_app.points_edit[self.selected_dia].append(self.points)
  252. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  253. if self.drill_array == 'Linear':
  254. for item in range(self.drill_array_size):
  255. if self.drill_axis == 'X':
  256. geo = self.util_shape(((self.points[0] + (self.drill_pitch * item)), self.points[1]))
  257. if self.drill_axis == 'Y':
  258. geo = self.util_shape((self.points[0], (self.points[1] + (self.drill_pitch * item))))
  259. if self.drill_axis == 'A':
  260. x_adj = self.drill_pitch * math.cos(math.radians(self.drill_linear_angle))
  261. y_adj = self.drill_pitch * math.sin(math.radians(self.drill_linear_angle))
  262. geo = self.util_shape(
  263. ((self.points[0] + (x_adj * item)), (self.points[1] + (y_adj * item)))
  264. )
  265. self.geometry.append(DrawToolShape(geo))
  266. else:
  267. if (self.drill_angle * self.drill_array_size) > 360:
  268. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  269. _("Too many drills for the selected spacing angle."))
  270. self.draw_app.app.jump_signal.disconnect()
  271. return
  272. radius = distance(self.destination, self.origin)
  273. initial_angle = math.asin((self.destination[1] - self.origin[1]) / radius)
  274. for i in range(self.drill_array_size):
  275. angle_radians = math.radians(self.drill_angle * i)
  276. if self.drill_direction == 'CW':
  277. x = self.origin[0] + radius * math.cos(-angle_radians + initial_angle)
  278. y = self.origin[1] + radius * math.sin(-angle_radians + initial_angle)
  279. else:
  280. x = self.origin[0] + radius * math.cos(angle_radians + initial_angle)
  281. y = self.origin[1] + radius * math.sin(angle_radians + initial_angle)
  282. geo = self.util_shape((x, y))
  283. self.geometry.append(DrawToolShape(geo))
  284. self.complete = True
  285. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill Array added."))
  286. self.draw_app.in_action = False
  287. self.draw_app.e_ui.array_frame.hide()
  288. self.draw_app.app.jump_signal.disconnect()
  289. def clean_up(self):
  290. self.draw_app.selected = []
  291. self.draw_app.e_ui.tools_table_exc.clearSelection()
  292. self.draw_app.plot_all()
  293. try:
  294. self.draw_app.app.jump_signal.disconnect()
  295. except (TypeError, AttributeError):
  296. pass
  297. class FCSlot(FCShapeTool):
  298. """
  299. Resulting type: Polygon
  300. """
  301. def __init__(self, draw_app):
  302. DrawTool.__init__(self, draw_app)
  303. self.name = 'slot_add'
  304. self.draw_app = draw_app
  305. self.draw_app.e_ui.slot_frame.show()
  306. self.selected_dia = None
  307. try:
  308. self.draw_app.app.inform.emit(_("Click to place ..."))
  309. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  310. # as a visual marker, select again in tooltable the actual tool that we are using
  311. # remember that it was deselected when clicking on canvas
  312. item = self.draw_app.e_ui.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  313. self.draw_app.e_ui.tools_table_exc.setCurrentItem(item)
  314. except KeyError:
  315. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' % _("To add a slot first select a tool"))
  316. self.draw_app.select_tool("drill_select")
  317. return
  318. try:
  319. QtGui.QGuiApplication.restoreOverrideCursor()
  320. except Exception:
  321. pass
  322. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_slot.png'))
  323. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  324. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  325. self.half_height = 0.0
  326. self.half_width = 0.0
  327. self.radius = float(self.selected_dia / 2.0)
  328. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y))
  329. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  330. self.draw_app.draw_utility_geometry(geo=geo)
  331. self.draw_app.app.inform.emit(_("Click on target location ..."))
  332. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  333. # Switch notebook to Properties page
  334. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  335. def click(self, point):
  336. self.make()
  337. return "Done."
  338. def utility_geometry(self, data=None):
  339. self.points = data
  340. geo_data = self.util_shape(data)
  341. if geo_data:
  342. return DrawToolUtilityShape(geo_data)
  343. else:
  344. return None
  345. def util_shape(self, point):
  346. if point is None:
  347. return
  348. # updating values here allows us to change the aperture on the fly, after the Tool has been started
  349. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  350. self.radius = float(self.selected_dia / 2.0)
  351. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  352. try:
  353. slot_length = float(self.draw_app.e_ui.slot_length_entry.get_value())
  354. except ValueError:
  355. # try to convert comma to decimal point. if it's still not working error message and return
  356. try:
  357. slot_length = float(self.draw_app.e_ui.slot_length_entry.get_value().replace(',', '.'))
  358. self.draw_app.e_ui.slot_length_entry.set_value(slot_length)
  359. except ValueError:
  360. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  361. _("Value is missing or wrong format. Add it and retry."))
  362. return
  363. try:
  364. slot_angle = float(self.draw_app.e_ui.slot_angle_spinner.get_value())
  365. except ValueError:
  366. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  367. _("Value is missing or wrong format. Add it and retry."))
  368. return
  369. if self.draw_app.e_ui.slot_axis_radio.get_value() == 'X':
  370. self.half_width = slot_length / 2.0
  371. self.half_height = self.radius
  372. else:
  373. self.half_width = self.radius
  374. self.half_height = slot_length / 2.0
  375. if point[0] is None and point[1] is None:
  376. point_x = self.draw_app.x
  377. point_y = self.draw_app.y
  378. else:
  379. point_x = point[0]
  380. point_y = point[1]
  381. geo = []
  382. if self.half_height > self.half_width:
  383. p1 = (point_x - self.half_width, point_y - self.half_height + self.half_width)
  384. p2 = (point_x + self.half_width, point_y - self.half_height + self.half_width)
  385. p3 = (point_x + self.half_width, point_y + self.half_height - self.half_width)
  386. p4 = (point_x - self.half_width, point_y + self.half_height - self.half_width)
  387. down_center = [point_x, point_y - self.half_height + self.half_width]
  388. d_start_angle = math.pi
  389. d_stop_angle = 0.0
  390. down_arc = arc(down_center, self.half_width, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  391. up_center = [point_x, point_y + self.half_height - self.half_width]
  392. u_start_angle = 0.0
  393. u_stop_angle = math.pi
  394. up_arc = arc(up_center, self.half_width, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  395. geo.append(p1)
  396. for pt in down_arc:
  397. geo.append(pt)
  398. geo.append(p2)
  399. geo.append(p3)
  400. for pt in up_arc:
  401. geo.append(pt)
  402. geo.append(p4)
  403. if self.draw_app.e_ui.slot_axis_radio.get_value() == 'A':
  404. return affinity.rotate(geom=Polygon(geo), angle=-slot_angle)
  405. else:
  406. return Polygon(geo)
  407. else:
  408. p1 = (point_x - self.half_width + self.half_height, point_y - self.half_height)
  409. p2 = (point_x + self.half_width - self.half_height, point_y - self.half_height)
  410. p3 = (point_x + self.half_width - self.half_height, point_y + self.half_height)
  411. p4 = (point_x - self.half_width + self.half_height, point_y + self.half_height)
  412. left_center = [point_x - self.half_width + self.half_height, point_y]
  413. d_start_angle = math.pi / 2
  414. d_stop_angle = 1.5 * math.pi
  415. left_arc = arc(left_center, self.half_height, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  416. right_center = [point_x + self.half_width - self.half_height, point_y]
  417. u_start_angle = 1.5 * math.pi
  418. u_stop_angle = math.pi / 2
  419. right_arc = arc(right_center, self.half_height, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  420. geo.append(p1)
  421. geo.append(p2)
  422. for pt in right_arc:
  423. geo.append(pt)
  424. geo.append(p3)
  425. geo.append(p4)
  426. for pt in left_arc:
  427. geo.append(pt)
  428. return Polygon(geo)
  429. def make(self):
  430. try:
  431. QtGui.QGuiApplication.restoreOverrideCursor()
  432. except Exception:
  433. pass
  434. try:
  435. self.geometry = DrawToolShape(self.util_shape(self.points))
  436. except Exception as e:
  437. log.debug("FCSlot.make() --> %s" % str(e))
  438. # add the point to drills/slots if the diameter is a key in the dict, if not, create it add the drill location
  439. # to the value, as a list of itself
  440. if self.selected_dia in self.draw_app.slot_points_edit:
  441. self.draw_app.slot_points_edit[self.selected_dia].append(self.points)
  442. else:
  443. self.draw_app.slot_points_edit[self.selected_dia] = [self.points]
  444. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  445. self.draw_app.in_action = False
  446. self.complete = True
  447. self.draw_app.app.inform.emit('[success] %s' % _("Done. Adding Slot completed."))
  448. self.draw_app.e_ui.slot_frame.hide()
  449. self.draw_app.app.jump_signal.disconnect()
  450. def clean_up(self):
  451. self.draw_app.selected = []
  452. self.draw_app.e_ui.tools_table_exc.clearSelection()
  453. self.draw_app.plot_all()
  454. try:
  455. self.draw_app.app.jump_signal.disconnect()
  456. except (TypeError, AttributeError):
  457. pass
  458. class FCSlotArray(FCShapeTool):
  459. """
  460. Resulting type: MultiPolygon
  461. """
  462. def __init__(self, draw_app):
  463. DrawTool.__init__(self, draw_app)
  464. self.name = 'slot_array'
  465. self.draw_app = draw_app
  466. self.draw_app.e_ui.slot_frame.show()
  467. self.draw_app.e_ui.slot_array_frame.show()
  468. self.selected_dia = None
  469. try:
  470. self.draw_app.app.inform.emit(_("Click to place ..."))
  471. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  472. # as a visual marker, select again in tooltable the actual tool that we are using
  473. # remember that it was deselected when clicking on canvas
  474. item = self.draw_app.e_ui.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  475. self.draw_app.e_ui.tools_table_exc.setCurrentItem(item)
  476. except KeyError:
  477. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  478. _("To add an Slot Array first select a tool in Tool Table"))
  479. return
  480. try:
  481. QtGui.QGuiApplication.restoreOverrideCursor()
  482. except Exception:
  483. pass
  484. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_array.png'))
  485. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  486. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  487. self.half_width = 0.0
  488. self.half_height = 0.0
  489. self.radius = float(self.selected_dia / 2.0)
  490. self.slot_axis = 'X'
  491. self.slot_array = 'linear'
  492. self.slot_array_size = None
  493. self.slot_pitch = None
  494. self.slot_linear_angle = None
  495. self.slot_angle = None
  496. self.slot_direction = None
  497. self.slot_radius = None
  498. self.origin = None
  499. self.destination = None
  500. self.flag_for_circ_array = None
  501. self.last_dx = 0
  502. self.last_dy = 0
  503. self.pt = []
  504. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y), static=True)
  505. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  506. self.draw_app.draw_utility_geometry(geo=geo)
  507. self.draw_app.app.inform.emit(_("Click on target location ..."))
  508. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  509. # Switch notebook to Properties page
  510. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  511. def click(self, point):
  512. if self.slot_array == 'Linear':
  513. self.make()
  514. return
  515. else:
  516. if self.flag_for_circ_array is None:
  517. self.draw_app.in_action = True
  518. self.pt.append(point)
  519. self.flag_for_circ_array = True
  520. self.set_origin(point)
  521. self.draw_app.app.inform.emit(_("Click on the Slot Circular Array Start position"))
  522. else:
  523. self.destination = point
  524. self.make()
  525. self.flag_for_circ_array = None
  526. return
  527. def set_origin(self, origin):
  528. self.origin = origin
  529. def utility_geometry(self, data=None, static=None):
  530. self.slot_axis = self.draw_app.e_ui.slot_array_axis_radio.get_value()
  531. self.slot_direction = self.draw_app.e_ui.slot_array_direction_radio.get_value()
  532. self.slot_array = self.draw_app.e_ui.slot_array_type_combo.get_value()
  533. try:
  534. self.slot_array_size = int(self.draw_app.e_ui.slot_array_size_entry.get_value())
  535. try:
  536. self.slot_pitch = float(self.draw_app.e_ui.slot_array_pitch_entry.get_value())
  537. self.slot_linear_angle = float(self.draw_app.e_ui.slot_array_linear_angle_spinner.get_value())
  538. self.slot_angle = float(self.draw_app.e_ui.slot_array_angle_entry.get_value())
  539. except TypeError:
  540. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  541. _("The value is not Float. Check for comma instead of dot separator."))
  542. return
  543. except Exception:
  544. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("The value is mistyped. Check the value."))
  545. return
  546. if self.slot_array == 'Linear':
  547. if data[0] is None and data[1] is None:
  548. dx = self.draw_app.x
  549. dy = self.draw_app.y
  550. else:
  551. dx = data[0]
  552. dy = data[1]
  553. geo_el_list = []
  554. geo_el = []
  555. self.points = [dx, dy]
  556. for item in range(self.slot_array_size):
  557. if self.slot_axis == 'X':
  558. geo_el = self.util_shape(((dx + (self.slot_pitch * item)), dy))
  559. if self.slot_axis == 'Y':
  560. geo_el = self.util_shape((dx, (dy + (self.slot_pitch * item))))
  561. if self.slot_axis == 'A':
  562. x_adj = self.slot_pitch * math.cos(math.radians(self.slot_linear_angle))
  563. y_adj = self.slot_pitch * math.sin(math.radians(self.slot_linear_angle))
  564. geo_el = self.util_shape(
  565. ((dx + (x_adj * item)), (dy + (y_adj * item)))
  566. )
  567. if static is None or static is False:
  568. geo_el = affinity.translate(geo_el, xoff=(dx - self.last_dx), yoff=(dy - self.last_dy))
  569. geo_el_list.append(geo_el)
  570. self.last_dx = dx
  571. self.last_dy = dy
  572. return DrawToolUtilityShape(geo_el_list)
  573. else:
  574. if data[0] is None and data[1] is None:
  575. cdx = self.draw_app.x
  576. cdy = self.draw_app.y
  577. else:
  578. cdx = data[0]
  579. cdy = data[1]
  580. if len(self.pt) > 0:
  581. temp_points = [x for x in self.pt]
  582. temp_points.append([cdx, cdy])
  583. return DrawToolUtilityShape(LineString(temp_points))
  584. def util_shape(self, point):
  585. # updating values here allows us to change the aperture on the fly, after the Tool has been started
  586. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  587. self.radius = float(self.selected_dia / 2.0)
  588. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  589. try:
  590. slot_length = float(self.draw_app.e_ui.slot_length_entry.get_value())
  591. except ValueError:
  592. # try to convert comma to decimal point. if it's still not working error message and return
  593. try:
  594. slot_length = float(self.draw_app.e_ui.slot_length_entry.get_value().replace(',', '.'))
  595. self.draw_app.e_ui.slot_length_entry.set_value(slot_length)
  596. except ValueError:
  597. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  598. _("Value is missing or wrong format. Add it and retry."))
  599. return
  600. try:
  601. slot_angle = float(self.draw_app.e_ui.slot_angle_spinner.get_value())
  602. except ValueError:
  603. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  604. _("Value is missing or wrong format. Add it and retry."))
  605. return
  606. if self.draw_app.e_ui.slot_axis_radio.get_value() == 'X':
  607. self.half_width = slot_length / 2.0
  608. self.half_height = self.radius
  609. else:
  610. self.half_width = self.radius
  611. self.half_height = slot_length / 2.0
  612. if point[0] is None and point[1] is None:
  613. point_x = self.draw_app.x
  614. point_y = self.draw_app.y
  615. else:
  616. point_x = point[0]
  617. point_y = point[1]
  618. geo = []
  619. if self.half_height > self.half_width:
  620. p1 = (point_x - self.half_width, point_y - self.half_height + self.half_width)
  621. p2 = (point_x + self.half_width, point_y - self.half_height + self.half_width)
  622. p3 = (point_x + self.half_width, point_y + self.half_height - self.half_width)
  623. p4 = (point_x - self.half_width, point_y + self.half_height - self.half_width)
  624. down_center = [point_x, point_y - self.half_height + self.half_width]
  625. d_start_angle = math.pi
  626. d_stop_angle = 0.0
  627. down_arc = arc(down_center, self.half_width, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  628. up_center = [point_x, point_y + self.half_height - self.half_width]
  629. u_start_angle = 0.0
  630. u_stop_angle = math.pi
  631. up_arc = arc(up_center, self.half_width, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  632. geo.append(p1)
  633. for pt in down_arc:
  634. geo.append(pt)
  635. geo.append(p2)
  636. geo.append(p3)
  637. for pt in up_arc:
  638. geo.append(pt)
  639. geo.append(p4)
  640. else:
  641. p1 = (point_x - self.half_width + self.half_height, point_y - self.half_height)
  642. p2 = (point_x + self.half_width - self.half_height, point_y - self.half_height)
  643. p3 = (point_x + self.half_width - self.half_height, point_y + self.half_height)
  644. p4 = (point_x - self.half_width + self.half_height, point_y + self.half_height)
  645. left_center = [point_x - self.half_width + self.half_height, point_y]
  646. d_start_angle = math.pi / 2
  647. d_stop_angle = 1.5 * math.pi
  648. left_arc = arc(left_center, self.half_height, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  649. right_center = [point_x + self.half_width - self.half_height, point_y]
  650. u_start_angle = 1.5 * math.pi
  651. u_stop_angle = math.pi / 2
  652. right_arc = arc(right_center, self.half_height, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  653. geo.append(p1)
  654. geo.append(p2)
  655. for pt in right_arc:
  656. geo.append(pt)
  657. geo.append(p3)
  658. geo.append(p4)
  659. for pt in left_arc:
  660. geo.append(pt)
  661. # this function return one slot in the slot array and the following will rotate that one slot around it's
  662. # center if the radio value is "A".
  663. if self.draw_app.e_ui.slot_axis_radio.get_value() == 'A':
  664. return affinity.rotate(Polygon(geo), -slot_angle)
  665. else:
  666. return Polygon(geo)
  667. def make(self):
  668. self.geometry = []
  669. geo = None
  670. try:
  671. QtGui.QGuiApplication.restoreOverrideCursor()
  672. except Exception:
  673. pass
  674. # add the point to slots if the diameter is a key in the dict, if not, create it add the drill location
  675. # to the value, as a list of itself
  676. if self.selected_dia not in self.draw_app.slot_points_edit:
  677. self.draw_app.slot_points_edit[self.selected_dia] = []
  678. for i in range(self.slot_array_size):
  679. self.draw_app.slot_points_edit[self.selected_dia].append(self.points)
  680. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  681. if self.slot_array == 'Linear':
  682. for item in range(self.slot_array_size):
  683. if self.slot_axis == 'X':
  684. geo = self.util_shape(((self.points[0] + (self.slot_pitch * item)), self.points[1]))
  685. if self.slot_axis == 'Y':
  686. geo = self.util_shape((self.points[0], (self.points[1] + (self.slot_pitch * item))))
  687. if self.slot_axis == 'A':
  688. x_adj = self.slot_pitch * math.cos(math.radians(self.slot_linear_angle))
  689. y_adj = self.slot_pitch * math.sin(math.radians(self.slot_linear_angle))
  690. geo = self.util_shape(
  691. ((self.points[0] + (x_adj * item)), (self.points[1] + (y_adj * item)))
  692. )
  693. self.geometry.append(DrawToolShape(geo))
  694. else:
  695. if (self.slot_angle * self.slot_array_size) > 360:
  696. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  697. _("Too many Slots for the selected spacing angle."))
  698. self.draw_app.app.jump_signal.disconnect()
  699. return
  700. radius = distance(self.destination, self.origin)
  701. initial_angle = math.asin((self.destination[1] - self.origin[1]) / radius)
  702. for i in range(self.slot_array_size):
  703. angle_radians = math.radians(self.slot_angle * i)
  704. if self.slot_direction == 'CW':
  705. x = self.origin[0] + radius * math.cos(-angle_radians + initial_angle)
  706. y = self.origin[1] + radius * math.sin(-angle_radians + initial_angle)
  707. else:
  708. x = self.origin[0] + radius * math.cos(angle_radians + initial_angle)
  709. y = self.origin[1] + radius * math.sin(angle_radians + initial_angle)
  710. geo = self.util_shape((x, y))
  711. if self.slot_direction == 'CW':
  712. geo = affinity.rotate(geo, angle=(math.pi - angle_radians), use_radians=True)
  713. else:
  714. geo = affinity.rotate(geo, angle=(angle_radians - math.pi), use_radians=True)
  715. self.geometry.append(DrawToolShape(geo))
  716. self.complete = True
  717. self.draw_app.app.inform.emit('[success] %s' % _("Done. Slot Array added."))
  718. self.draw_app.in_action = False
  719. self.draw_app.e_ui.slot_frame.hide()
  720. self.draw_app.e_ui.slot_array_frame.hide()
  721. self.draw_app.app.jump_signal.disconnect()
  722. def clean_up(self):
  723. self.draw_app.selected = []
  724. self.draw_app.e_ui.tools_table_exc.clearSelection()
  725. self.draw_app.plot_all()
  726. try:
  727. self.draw_app.app.jump_signal.disconnect()
  728. except (TypeError, AttributeError):
  729. pass
  730. class FCDrillResize(FCShapeTool):
  731. def __init__(self, draw_app):
  732. DrawTool.__init__(self, draw_app)
  733. self.name = 'drill_resize'
  734. self.draw_app.app.inform.emit(_("Click on the Drill(s) to resize ..."))
  735. self.resize_dia = None
  736. self.draw_app.e_ui.resize_frame.show()
  737. self.points = None
  738. # made this a set so there are no duplicates
  739. self.selected_dia_set = set()
  740. self.current_storage = None
  741. self.geometry = []
  742. self.destination_storage = None
  743. self.draw_app.resize_btn.clicked.connect(self.make)
  744. self.draw_app.resdrill_entry.editingFinished.connect(self.make)
  745. # Switch notebook to Properties page
  746. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  747. def make(self):
  748. self.draw_app.is_modified = True
  749. try:
  750. self.draw_app.e_ui.tools_table_exc.itemChanged.disconnect()
  751. except TypeError:
  752. pass
  753. try:
  754. new_dia = self.draw_app.e_ui.resdrill_entry.get_value()
  755. except Exception:
  756. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  757. _("Resize drill(s) failed. Please enter a diameter for resize."))
  758. return
  759. if new_dia not in self.draw_app.olddia_newdia:
  760. self.destination_storage = AppGeoEditor.make_storage()
  761. self.draw_app.storage_dict[new_dia] = self.destination_storage
  762. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  763. # each time a tool diameter is edited or added
  764. self.draw_app.olddia_newdia[new_dia] = new_dia
  765. else:
  766. self.destination_storage = self.draw_app.storage_dict[new_dia]
  767. for index in self.draw_app.e_ui.tools_table_exc.selectedIndexes():
  768. row = index.row()
  769. # on column 1 in tool tables we hold the diameters, and we retrieve them as strings
  770. # therefore below we convert to float
  771. dia_on_row = self.draw_app.e_ui.tools_table_exc.item(row, 1).text()
  772. self.selected_dia_set.add(float(dia_on_row))
  773. # since we add a new tool, we update also the intial state of the tool_table through it's dictionary
  774. # we add a new entry in the tool2tooldia dict
  775. self.draw_app.tool2tooldia[len(self.draw_app.olddia_newdia)] = new_dia
  776. sel_shapes_to_be_deleted = []
  777. if self.selected_dia_set:
  778. for sel_dia in self.selected_dia_set:
  779. self.current_storage = self.draw_app.storage_dict[sel_dia]
  780. for select_shape in self.draw_app.get_selected():
  781. if select_shape in self.current_storage.get_objects():
  782. # add new geometry according to the new size
  783. if isinstance(select_shape.geo, MultiLineString):
  784. factor = new_dia / sel_dia
  785. self.geometry.append(DrawToolShape(affinity.scale(select_shape.geo,
  786. xfact=factor,
  787. yfact=factor,
  788. origin='center')))
  789. elif isinstance(select_shape.geo, Polygon):
  790. # I don't have any info regarding the angle of the slot geometry, nor how thick it is or
  791. # how long it is given the angle. So I will have to make an approximation because
  792. # we need to conserve the slot length, we only resize the diameter for the tool
  793. # Therefore scaling won't work and buffering will not work either.
  794. # First we get the Linestring that is one that the original slot is built around with the
  795. # tool having the diameter sel_dia
  796. poly = select_shape.geo
  797. xmin, ymin, xmax, ymax = poly.bounds
  798. # a line that is certain to be bigger than our slot because it's the diagonal
  799. # of it's bounding box
  800. poly_diagonal = LineString([(xmin, ymin), (xmax, ymax)])
  801. poly_centroid = poly.centroid
  802. # center of the slot geometry
  803. poly_center = (poly_centroid.x, poly_centroid.y)
  804. # make a list of intersections with the rotated line
  805. list_of_cuttings = []
  806. for angle in range(0, 359, 1):
  807. rot_poly_diagonal = affinity.rotate(poly_diagonal, angle=angle, origin=poly_center)
  808. cut_line = rot_poly_diagonal.intersection(poly)
  809. cut_line_len = cut_line.length
  810. list_of_cuttings.append(
  811. (cut_line_len, cut_line)
  812. )
  813. # find the cut_line with the maximum length which is the LineString for which the start
  814. # and stop point are the start and stop point of the slot as in the Gerber file
  815. cut_line_with_max_length = max(list_of_cuttings, key=lambda i: i[0])[1]
  816. # find the coordinates of this line
  817. cut_line_with_max_length_coords = list(cut_line_with_max_length.coords)
  818. # extract the first and last point of the line and build some buffered polygon circles
  819. # around them
  820. start_pt = Point(cut_line_with_max_length_coords[0])
  821. stop_pt = Point(cut_line_with_max_length_coords[1])
  822. start_cut_geo = start_pt.buffer(new_dia / 2)
  823. stop_cut_geo = stop_pt.buffer(new_dia / 2)
  824. # and we cut the above circle polygons from our line and get in this way a line around
  825. # which we can build the new slot by buffering with the new tool diameter
  826. new_line = cut_line_with_max_length.difference(start_cut_geo)
  827. new_line = new_line.difference(stop_cut_geo)
  828. # create the geometry for the resized slot by buffering with half of the
  829. # new diameter value, new_dia
  830. new_poly = new_line.buffer(new_dia / 2)
  831. self.geometry.append(DrawToolShape(new_poly))
  832. else:
  833. # unexpected geometry so we cancel
  834. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("Cancelled."))
  835. return
  836. # remove the geometry with the old size
  837. self.current_storage.remove(select_shape)
  838. # a hack to make the tool_table display less drills per diameter when shape(drill) is deleted
  839. # self.points_edit it's only useful first time when we load the data into the storage
  840. # but is still used as reference when building tool_table in self.build_ui()
  841. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  842. # deleting self.points_edit elements (doesn't matter who but just the number)
  843. # solved the display issue.
  844. if isinstance(select_shape.geo, MultiLineString):
  845. try:
  846. del self.draw_app.points_edit[sel_dia][0]
  847. except KeyError:
  848. # if the exception happen here then we are not dealing with drills but with slots
  849. # This should not happen as the drills have MultiLineString geometry and slots have
  850. # Polygon geometry
  851. pass
  852. if isinstance(select_shape.geo, Polygon):
  853. try:
  854. del self.draw_app.slot_points_edit[sel_dia][0]
  855. except KeyError:
  856. # if the exception happen here then we are not dealing with slots but with drills
  857. # This should not happen as the drills have MultiLineString geometry and slots have
  858. # Polygon geometry
  859. pass
  860. sel_shapes_to_be_deleted.append(select_shape)
  861. # a hack to make the tool_table display more drills/slots per diameter when shape(drill/slot)
  862. # is added.
  863. # self.points_edit it's only useful first time when we load the data into the storage
  864. # but is still used as reference when building tool_table in self.build_ui()
  865. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  866. # deleting self.points_edit elements (doesn't matter who but just the number)
  867. # solved the display issue.
  868. # for drills
  869. if isinstance(select_shape.geo, MultiLineString):
  870. if new_dia not in self.draw_app.points_edit:
  871. self.draw_app.points_edit[new_dia] = [(0, 0)]
  872. else:
  873. self.draw_app.points_edit[new_dia].append((0, 0))
  874. # for slots
  875. if isinstance(select_shape.geo, Polygon):
  876. if new_dia not in self.draw_app.slot_points_edit:
  877. self.draw_app.slot_points_edit[new_dia] = [(0, 0)]
  878. else:
  879. self.draw_app.slot_points_edit[new_dia].append((0, 0))
  880. for dia_key in list(self.draw_app.storage_dict.keys()):
  881. # if following the resize of the drills there will be no more drills for some of the tools then
  882. # delete those tools
  883. try:
  884. if not self.draw_app.points_edit[dia_key]:
  885. self.draw_app.on_tool_delete(dia_key)
  886. except KeyError:
  887. # if the exception happen here then we are not dealing with drills but with slots
  888. # so we try for them
  889. try:
  890. if not self.draw_app.slot_points_edit[dia_key]:
  891. self.draw_app.on_tool_delete(dia_key)
  892. except KeyError:
  893. # if the exception happen here then we are not dealing with slots neither
  894. # therefore something else is not OK so we return
  895. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("Cancelled."))
  896. return
  897. # this simple hack is used so we can delete form self.draw_app.selected but
  898. # after we no longer iterate through it
  899. for shp in sel_shapes_to_be_deleted:
  900. self.draw_app.selected.remove(shp)
  901. # add the new geometry to storage
  902. self.draw_app.on_exc_shape_complete(self.destination_storage)
  903. self.draw_app.build_ui()
  904. self.draw_app.replot()
  905. # empty the self.geometry
  906. self.geometry = []
  907. # we reactivate the signals after the after the tool editing
  908. self.draw_app.e_ui.tools_table_exc.itemChanged.connect(self.draw_app.on_tool_edit)
  909. self.draw_app.app.inform.emit('[success] %s' %
  910. _("Done. Drill/Slot Resize completed."))
  911. else:
  912. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  913. _("Cancelled. No drills/slots selected for resize ..."))
  914. # init this set() for another use perhaps
  915. self.selected_dia_set = set()
  916. self.draw_app.e_ui.resize_frame.hide()
  917. self.complete = True
  918. # MS: always return to the Select Tool
  919. self.draw_app.select_tool("drill_select")
  920. def clean_up(self):
  921. self.draw_app.selected = []
  922. self.draw_app.e_ui.tools_table_exc.clearSelection()
  923. self.draw_app.plot_all()
  924. try:
  925. self.draw_app.app.jump_signal.disconnect()
  926. except (TypeError, AttributeError):
  927. pass
  928. class FCDrillMove(FCShapeTool):
  929. def __init__(self, draw_app):
  930. DrawTool.__init__(self, draw_app)
  931. self.name = 'drill_move'
  932. # self.shape_buffer = self.draw_app.shape_buffer
  933. self.origin = None
  934. self.destination = None
  935. self.sel_limit = self.draw_app.app.defaults["excellon_editor_sel_limit"]
  936. self.selection_shape = self.selection_bbox()
  937. self.selected_dia_list = []
  938. if self.draw_app.launched_from_shortcuts is True:
  939. self.draw_app.launched_from_shortcuts = False
  940. self.draw_app.app.inform.emit(_("Click on target location ..."))
  941. else:
  942. self.draw_app.app.inform.emit(_("Click on reference location ..."))
  943. self.current_storage = None
  944. self.geometry = []
  945. for index in self.draw_app.e_ui.tools_table_exc.selectedIndexes():
  946. row = index.row()
  947. # on column 1 in tool tables we hold the diameters, and we retrieve them as strings
  948. # therefore below we convert to float
  949. dia_on_row = self.draw_app.e_ui.tools_table_exc.item(row, 1).text()
  950. self.selected_dia_list.append(float(dia_on_row))
  951. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  952. # Switch notebook to Properties page
  953. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.properties_tab)
  954. def set_origin(self, origin):
  955. self.origin = origin
  956. def click(self, point):
  957. if len(self.draw_app.get_selected()) == 0:
  958. return "Nothing to move."
  959. if self.origin is None:
  960. self.set_origin(point)
  961. self.draw_app.app.inform.emit(_("Click on target location ..."))
  962. return
  963. else:
  964. self.destination = point
  965. self.make()
  966. # MS: always return to the Select Tool
  967. self.draw_app.select_tool("drill_select")
  968. return
  969. def make(self):
  970. # Create new geometry
  971. dx = self.destination[0] - self.origin[0]
  972. dy = self.destination[1] - self.origin[1]
  973. sel_shapes_to_be_deleted = []
  974. for sel_dia in self.selected_dia_list:
  975. self.current_storage = self.draw_app.storage_dict[sel_dia]
  976. for select_shape in self.draw_app.get_selected():
  977. if select_shape in self.current_storage.get_objects():
  978. self.geometry.append(DrawToolShape(affinity.translate(select_shape.geo, xoff=dx, yoff=dy)))
  979. self.current_storage.remove(select_shape)
  980. sel_shapes_to_be_deleted.append(select_shape)
  981. self.draw_app.on_exc_shape_complete(self.current_storage)
  982. self.geometry = []
  983. for shp in sel_shapes_to_be_deleted:
  984. self.draw_app.selected.remove(shp)
  985. sel_shapes_to_be_deleted = []
  986. self.draw_app.build_ui()
  987. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill(s) Move completed."))
  988. self.draw_app.app.jump_signal.disconnect()
  989. def selection_bbox(self):
  990. geo_list = []
  991. for select_shape in self.draw_app.get_selected():
  992. geometric_data = select_shape.geo
  993. try:
  994. for g in geometric_data:
  995. geo_list.append(g)
  996. except TypeError:
  997. geo_list.append(geometric_data)
  998. xmin, ymin, xmax, ymax = get_shapely_list_bounds(geo_list)
  999. pt1 = (xmin, ymin)
  1000. pt2 = (xmax, ymin)
  1001. pt3 = (xmax, ymax)
  1002. pt4 = (xmin, ymax)
  1003. return Polygon([pt1, pt2, pt3, pt4])
  1004. def utility_geometry(self, data=None):
  1005. """
  1006. Temporary geometry on screen while using this tool.
  1007. :param data:
  1008. :return:
  1009. """
  1010. geo_list = []
  1011. if self.origin is None:
  1012. return None
  1013. if len(self.draw_app.get_selected()) == 0:
  1014. return None
  1015. dx = data[0] - self.origin[0]
  1016. dy = data[1] - self.origin[1]
  1017. if len(self.draw_app.get_selected()) <= self.sel_limit:
  1018. try:
  1019. for geom in self.draw_app.get_selected():
  1020. geo_list.append(affinity.translate(geom.geo, xoff=dx, yoff=dy))
  1021. except AttributeError:
  1022. self.draw_app.select_tool('drill_select')
  1023. self.draw_app.selected = []
  1024. return
  1025. return DrawToolUtilityShape(geo_list)
  1026. else:
  1027. try:
  1028. ss_el = affinity.translate(self.selection_shape, xoff=dx, yoff=dy)
  1029. except ValueError:
  1030. ss_el = None
  1031. return DrawToolUtilityShape(ss_el)
  1032. def clean_up(self):
  1033. self.draw_app.selected = []
  1034. self.draw_app.e_ui.tools_table_exc.clearSelection()
  1035. self.draw_app.plot_all()
  1036. try:
  1037. self.draw_app.app.jump_signal.disconnect()
  1038. except (TypeError, AttributeError):
  1039. pass
  1040. class FCDrillCopy(FCDrillMove):
  1041. def __init__(self, draw_app):
  1042. FCDrillMove.__init__(self, draw_app)
  1043. self.name = 'drill_copy'
  1044. def make(self):
  1045. # Create new geometry
  1046. dx = self.destination[0] - self.origin[0]
  1047. dy = self.destination[1] - self.origin[1]
  1048. sel_shapes_to_be_deleted = []
  1049. for sel_dia in self.selected_dia_list:
  1050. self.current_storage = self.draw_app.storage_dict[sel_dia]
  1051. for select_shape in self.draw_app.get_selected():
  1052. if select_shape in self.current_storage.get_objects():
  1053. self.geometry.append(DrawToolShape(affinity.translate(select_shape.geo, xoff=dx, yoff=dy)))
  1054. # Add some fake drills into the self.draw_app.points_edit to update the drill count in tool table
  1055. # This may fail if we copy slots.
  1056. try:
  1057. self.draw_app.points_edit[sel_dia].append((0, 0))
  1058. except KeyError:
  1059. pass
  1060. # add some fake slots into the self.draw_app.slots_points_edit
  1061. # to update the slot count in tool table
  1062. # This may fail if we copy drills.
  1063. try:
  1064. self.draw_app.slot_points_edit[sel_dia].append((0, 0))
  1065. except KeyError:
  1066. pass
  1067. sel_shapes_to_be_deleted.append(select_shape)
  1068. self.draw_app.on_exc_shape_complete(self.current_storage)
  1069. self.geometry = []
  1070. for shp in sel_shapes_to_be_deleted:
  1071. self.draw_app.selected.remove(shp)
  1072. sel_shapes_to_be_deleted = []
  1073. self.draw_app.build_ui()
  1074. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill(s) copied."))
  1075. self.draw_app.app.jump_signal.disconnect()
  1076. def clean_up(self):
  1077. self.draw_app.selected = []
  1078. self.draw_app.e_ui.tools_table_exc.clearSelection()
  1079. self.draw_app.plot_all()
  1080. try:
  1081. self.draw_app.app.jump_signal.disconnect()
  1082. except (TypeError, AttributeError):
  1083. pass
  1084. class FCDrillSelect(DrawTool):
  1085. def __init__(self, draw_app):
  1086. DrawTool.__init__(self, draw_app)
  1087. self.name = 'drill_select'
  1088. try:
  1089. QtGui.QGuiApplication.restoreOverrideCursor()
  1090. except Exception:
  1091. pass
  1092. self.exc_editor_app = draw_app
  1093. self.storage = self.exc_editor_app.storage_dict
  1094. # self.selected = self.exc_editor_app.selected
  1095. # here we store the selected tools
  1096. self.sel_tools = set()
  1097. # here we store all shapes that were selected so we can search for the nearest to our click location
  1098. self.sel_storage = AppExcEditor.make_storage()
  1099. self.exc_editor_app.e_ui.resize_frame.hide()
  1100. self.exc_editor_app.e_ui.array_frame.hide()
  1101. self.exc_editor_app.e_ui.slot_frame.hide()
  1102. self.exc_editor_app.e_ui.slot_array_frame.hide()
  1103. def click(self, point):
  1104. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  1105. if key_modifier == QtCore.Qt.ShiftModifier:
  1106. mod_key = 'Shift'
  1107. elif key_modifier == QtCore.Qt.ControlModifier:
  1108. mod_key = 'Control'
  1109. else:
  1110. mod_key = None
  1111. if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1112. pass
  1113. else:
  1114. self.exc_editor_app.selected = []
  1115. def click_release(self, pos):
  1116. self.exc_editor_app.e_ui.tools_table_exc.clearSelection()
  1117. xmin, ymin, xmax, ymax = 0, 0, 0, 0
  1118. try:
  1119. for storage in self.exc_editor_app.storage_dict:
  1120. # for sh in self.exc_editor_app.storage_dict[storage].get_objects():
  1121. # self.sel_storage.insert(sh)
  1122. _, st_closest_shape = self.exc_editor_app.storage_dict[storage].nearest(pos)
  1123. self.sel_storage.insert(st_closest_shape)
  1124. _, closest_shape = self.sel_storage.nearest(pos)
  1125. # constrain selection to happen only within a certain bounding box; it works only for MultiLineStrings
  1126. if isinstance(closest_shape.geo, MultiLineString):
  1127. x_coord, y_coord = closest_shape.geo[0].xy
  1128. delta = (x_coord[1] - x_coord[0])
  1129. # closest_shape_coords = (((x_coord[0] + delta / 2)), y_coord[0])
  1130. xmin = x_coord[0] - (0.7 * delta)
  1131. xmax = x_coord[0] + (1.7 * delta)
  1132. ymin = y_coord[0] - (0.7 * delta)
  1133. ymax = y_coord[0] + (1.7 * delta)
  1134. elif isinstance(closest_shape.geo, Polygon):
  1135. xmin, ymin, xmax, ymax = closest_shape.geo.bounds
  1136. dx = xmax - xmin
  1137. dy = ymax - ymin
  1138. delta = dx if dx > dy else dy
  1139. xmin -= 0.7 * delta
  1140. xmax += 0.7 * delta
  1141. ymin -= 0.7 * delta
  1142. ymax += 0.7 * delta
  1143. except StopIteration:
  1144. return ""
  1145. if pos[0] < xmin or pos[0] > xmax or pos[1] < ymin or pos[1] > ymax:
  1146. self.exc_editor_app.selected = []
  1147. else:
  1148. modifiers = QtWidgets.QApplication.keyboardModifiers()
  1149. if modifiers == QtCore.Qt.ShiftModifier:
  1150. mod_key = 'Shift'
  1151. elif modifiers == QtCore.Qt.ControlModifier:
  1152. mod_key = 'Control'
  1153. else:
  1154. mod_key = None
  1155. if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1156. if closest_shape in self.exc_editor_app.selected:
  1157. self.exc_editor_app.selected.remove(closest_shape)
  1158. else:
  1159. self.exc_editor_app.selected.append(closest_shape)
  1160. else:
  1161. self.exc_editor_app.selected = []
  1162. self.exc_editor_app.selected.append(closest_shape)
  1163. # select the diameter of the selected shape in the tool table
  1164. try:
  1165. self.exc_editor_app.e_ui.tools_table_exc.cellPressed.disconnect()
  1166. except (TypeError, AttributeError):
  1167. pass
  1168. # if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1169. # self.exc_editor_app.e_ui.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
  1170. self.sel_tools.clear()
  1171. for shape_s in self.exc_editor_app.selected:
  1172. for storage in self.exc_editor_app.storage_dict:
  1173. if shape_s in self.exc_editor_app.storage_dict[storage].get_objects():
  1174. self.sel_tools.add(storage)
  1175. self.exc_editor_app.e_ui.tools_table_exc.clearSelection()
  1176. for storage in self.sel_tools:
  1177. for k, v in self.exc_editor_app.tool2tooldia.items():
  1178. if v == storage:
  1179. self.exc_editor_app.e_ui.tools_table_exc.selectRow(int(k) - 1)
  1180. self.exc_editor_app.last_tool_selected = int(k)
  1181. break
  1182. # self.exc_editor_app.e_ui.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
  1183. self.exc_editor_app.e_ui.tools_table_exc.cellPressed.connect(self.exc_editor_app.on_row_selected)
  1184. # delete whatever is in selection storage, there is no longer need for those shapes
  1185. self.sel_storage = AppExcEditor.make_storage()
  1186. return ""
  1187. # pos[0] and pos[1] are the mouse click coordinates (x, y)
  1188. # for storage in self.exc_editor_app.storage_dict:
  1189. # for obj_shape in self.exc_editor_app.storage_dict[storage].get_objects():
  1190. # minx, miny, maxx, maxy = obj_shape.geo.bounds
  1191. # if (minx <= pos[0] <= maxx) and (miny <= pos[1] <= maxy):
  1192. # over_shape_list.append(obj_shape)
  1193. #
  1194. # try:
  1195. # # if there is no shape under our click then deselect all shapes
  1196. # if not over_shape_list:
  1197. # self.exc_editor_app.selected = []
  1198. # AppExcEditor.draw_shape_idx = -1
  1199. # self.exc_editor_app.e_ui.tools_table_exc.clearSelection()
  1200. # else:
  1201. # # if there are shapes under our click then advance through the list of them, one at the time in a
  1202. # # circular way
  1203. # AppExcEditor.draw_shape_idx = (AppExcEditor.draw_shape_idx + 1) % len(over_shape_list)
  1204. # obj_to_add = over_shape_list[int(AppExcEditor.draw_shape_idx)]
  1205. #
  1206. # if self.exc_editor_app.app.defaults["global_mselect_key"] == 'Shift':
  1207. # if self.exc_editor_app.modifiers == Qt.ShiftModifier:
  1208. # if obj_to_add in self.exc_editor_app.selected:
  1209. # self.exc_editor_app.selected.remove(obj_to_add)
  1210. # else:
  1211. # self.exc_editor_app.selected.append(obj_to_add)
  1212. # else:
  1213. # self.exc_editor_app.selected = []
  1214. # self.exc_editor_app.selected.append(obj_to_add)
  1215. # else:
  1216. # # if CONTROL key is pressed then we add to the selected list the current shape but if it's already
  1217. # # in the selected list, we removed it. Therefore first click selects, second deselects.
  1218. # if self.exc_editor_app.modifiers == Qt.ControlModifier:
  1219. # if obj_to_add in self.exc_editor_app.selected:
  1220. # self.exc_editor_app.selected.remove(obj_to_add)
  1221. # else:
  1222. # self.exc_editor_app.selected.append(obj_to_add)
  1223. # else:
  1224. # self.exc_editor_app.selected = []
  1225. # self.exc_editor_app.selected.append(obj_to_add)
  1226. #
  1227. # for storage in self.exc_editor_app.storage_dict:
  1228. # for shape in self.exc_editor_app.selected:
  1229. # if shape in self.exc_editor_app.storage_dict[storage].get_objects():
  1230. # for key in self.exc_editor_app.tool2tooldia:
  1231. # if self.exc_editor_app.tool2tooldia[key] == storage:
  1232. # item = self.exc_editor_app.e_ui.tools_table_exc.item((key - 1), 1)
  1233. # item.setSelected(True)
  1234. # # self.exc_editor_app.e_ui.tools_table_exc.selectItem(key - 1)
  1235. #
  1236. # except Exception as e:
  1237. # log.error("[ERROR] Something went bad. %s" % str(e))
  1238. # raise
  1239. class AppExcEditor(QtCore.QObject):
  1240. draw_shape_idx = -1
  1241. def __init__(self, app):
  1242. # assert isinstance(app, FlatCAMApp.App), "Expected the app to be a FlatCAMApp.App, got %s" % type(app)
  1243. super(AppExcEditor, self).__init__()
  1244. self.app = app
  1245. self.canvas = self.app.plotcanvas
  1246. self.units = self.app.defaults['units'].upper()
  1247. self.dec_format = self.app.dec_format
  1248. # Number of decimals used by tools in this class
  1249. self.decimals = self.app.decimals
  1250. self.e_ui = AppExcEditorUI(app=self.app)
  1251. self.exc_obj = None
  1252. # ## Toolbar events and properties
  1253. self.tools_exc = {}
  1254. # ## Data
  1255. self.active_tool = None
  1256. self.in_action = False
  1257. self.storage_dict = {}
  1258. self.current_storage = []
  1259. # build the data from the Excellon point into a dictionary
  1260. # {tool_dia: [geometry_in_points]}
  1261. self.points_edit = {}
  1262. self.slot_points_edit = {}
  1263. self.sorted_diameters = []
  1264. self.new_drills = []
  1265. self.new_tools = {}
  1266. self.new_slots = []
  1267. # dictionary to store the tool_row and diameters in Tool_table
  1268. # it will be updated everytime self.build_ui() is called
  1269. self.olddia_newdia = {}
  1270. self.tool2tooldia = {}
  1271. # this will store the value for the last selected tool, for use after clicking on canvas when the selection
  1272. # is cleared but as a side effect also the selected tool is cleared
  1273. self.last_tool_selected = None
  1274. self.utility = []
  1275. # this will flag if the Editor "tools" are launched from key shortcuts (True) or from menu toolbar (False)
  1276. self.launched_from_shortcuts = False
  1277. # this var will store the state of the toolbar before starting the editor
  1278. self.toolbar_old_state = False
  1279. if self.units == 'MM':
  1280. self.tolerance = float(self.app.defaults["global_tolerance"])
  1281. else:
  1282. self.tolerance = float(self.app.defaults["global_tolerance"]) / 20
  1283. # VisPy Visuals
  1284. if self.app.is_legacy is False:
  1285. self.shapes = self.canvas.new_shape_collection(layers=1)
  1286. if self.canvas.big_cursor is True:
  1287. self.tool_shape = self.canvas.new_shape_collection(layers=1, line_width=2)
  1288. else:
  1289. self.tool_shape = self.canvas.new_shape_collection(layers=1)
  1290. else:
  1291. from appGUI.PlotCanvasLegacy import ShapeCollectionLegacy
  1292. self.shapes = ShapeCollectionLegacy(obj=self, app=self.app, name='shapes_exc_editor')
  1293. self.tool_shape = ShapeCollectionLegacy(obj=self, app=self.app, name='tool_shapes_exc_editor')
  1294. self.app.pool_recreated.connect(self.pool_recreated)
  1295. # Remove from scene
  1296. self.shapes.enabled = False
  1297. self.tool_shape.enabled = False
  1298. # ## List of selected shapes.
  1299. self.selected = []
  1300. self.move_timer = QtCore.QTimer()
  1301. self.move_timer.setSingleShot(True)
  1302. self.key = None # Currently pressed key
  1303. self.modifiers = None
  1304. self.x = None # Current mouse cursor pos
  1305. self.y = None
  1306. # Current snapped mouse pos
  1307. self.snap_x = None
  1308. self.snap_y = None
  1309. self.pos = None
  1310. self.complete = False
  1311. self.options = {
  1312. "global_gridx": 0.1,
  1313. "global_gridy": 0.1,
  1314. "snap_max": 0.05,
  1315. "grid_snap": True,
  1316. "corner_snap": False,
  1317. "grid_gap_link": True
  1318. }
  1319. self.options.update(self.app.options)
  1320. for option in self.options:
  1321. if option in self.app.options:
  1322. self.options[option] = self.app.options[option]
  1323. self.data_defaults = {}
  1324. self.rtree_exc_index = rtindex.Index()
  1325. # flag to show if the object was modified
  1326. self.is_modified = False
  1327. self.edited_obj_name = ""
  1328. # variable to store the total amount of drills per job
  1329. self.tot_drill_cnt = 0
  1330. self.tool_row = 0
  1331. # variable to store the total amount of slots per job
  1332. self.tot_slot_cnt = 0
  1333. self.tool_row_slots = 0
  1334. self.tool_row = 0
  1335. # def entry2option(option, entry):
  1336. # self.options[option] = float(entry.text())
  1337. # Event signals disconnect id holders
  1338. self.mp = None
  1339. self.mm = None
  1340. self.mr = None
  1341. # #############################################################################################################
  1342. # ######################### Excellon Editor Signals ###########################################################
  1343. # #############################################################################################################
  1344. # connect the toolbar signals
  1345. self.connect_exc_toolbar_signals()
  1346. self.e_ui.convert_slots_btn.clicked.connect(self.on_slots_conversion)
  1347. self.app.ui.delete_drill_btn.triggered.connect(self.on_delete_btn)
  1348. self.e_ui.name_entry.returnPressed.connect(self.on_name_activate)
  1349. self.e_ui.addtool_btn.clicked.connect(self.on_tool_add)
  1350. self.e_ui.addtool_entry.editingFinished.connect(self.on_tool_add)
  1351. self.e_ui.deltool_btn.clicked.connect(self.on_tool_delete)
  1352. # self.e_ui.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
  1353. self.e_ui.tools_table_exc.cellPressed.connect(self.on_row_selected)
  1354. self.e_ui.array_type_combo.currentIndexChanged.connect(self.on_array_type_combo)
  1355. self.e_ui.slot_array_type_combo.currentIndexChanged.connect(self.on_slot_array_type_combo)
  1356. self.e_ui.drill_axis_radio.activated_custom.connect(self.on_linear_angle_radio)
  1357. self.e_ui.slot_axis_radio.activated_custom.connect(self.on_slot_angle_radio)
  1358. self.e_ui.slot_array_axis_radio.activated_custom.connect(self.on_slot_array_linear_angle_radio)
  1359. self.app.ui.exc_add_array_drill_menuitem.triggered.connect(self.exc_add_drill_array)
  1360. self.app.ui.exc_add_drill_menuitem.triggered.connect(self.exc_add_drill)
  1361. self.app.ui.exc_add_array_slot_menuitem.triggered.connect(self.exc_add_slot_array)
  1362. self.app.ui.exc_add_slot_menuitem.triggered.connect(self.exc_add_slot)
  1363. self.app.ui.exc_resize_drill_menuitem.triggered.connect(self.exc_resize_drills)
  1364. self.app.ui.exc_copy_drill_menuitem.triggered.connect(self.exc_copy_drills)
  1365. self.app.ui.exc_delete_drill_menuitem.triggered.connect(self.on_delete_btn)
  1366. self.app.ui.exc_move_drill_menuitem.triggered.connect(self.exc_move_drills)
  1367. self.e_ui.exit_editor_button.clicked.connect(lambda: self.app.editor2object())
  1368. log.debug("Initialization of the Excellon Editor is finished ...")
  1369. def make_callback(self, thetool):
  1370. def f():
  1371. self.on_tool_select(thetool)
  1372. return f
  1373. def connect_exc_toolbar_signals(self):
  1374. self.tools_exc.update({
  1375. "drill_select": {"button": self.app.ui.select_drill_btn, "constructor": FCDrillSelect},
  1376. "drill_add": {"button": self.app.ui.add_drill_btn, "constructor": FCDrillAdd},
  1377. "drill_array": {"button": self.app.ui.add_drill_array_btn, "constructor": FCDrillArray},
  1378. "slot_add": {"button": self.app.ui.add_slot_btn, "constructor": FCSlot},
  1379. "slot_array": {"button": self.app.ui.add_slot_array_btn, "constructor": FCSlotArray},
  1380. "drill_resize": {"button": self.app.ui.resize_drill_btn, "constructor": FCDrillResize},
  1381. "drill_copy": {"button": self.app.ui.copy_drill_btn, "constructor": FCDrillCopy},
  1382. "drill_move": {"button": self.app.ui.move_drill_btn, "constructor": FCDrillMove},
  1383. })
  1384. for tool in self.tools_exc:
  1385. self.tools_exc[tool]["button"].triggered.connect(self.make_callback(tool)) # Events
  1386. self.tools_exc[tool]["button"].setCheckable(True) # Checkable
  1387. def pool_recreated(self, pool):
  1388. self.shapes.pool = pool
  1389. self.tool_shape.pool = pool
  1390. @staticmethod
  1391. def make_storage():
  1392. # ## Shape storage.
  1393. storage = FlatCAMRTreeStorage()
  1394. storage.get_points = DrawToolShape.get_pts
  1395. return storage
  1396. def set_ui(self):
  1397. # updated units
  1398. self.units = self.app.defaults['units'].upper()
  1399. self.olddia_newdia.clear()
  1400. self.tool2tooldia.clear()
  1401. # update the olddia_newdia dict to make sure we have an updated state of the tool_table
  1402. for key in self.points_edit:
  1403. self.olddia_newdia[key] = key
  1404. for key in self.slot_points_edit:
  1405. if key not in self.olddia_newdia:
  1406. self.olddia_newdia[key] = key
  1407. sort_temp = []
  1408. for diam in self.olddia_newdia:
  1409. sort_temp.append(float(diam))
  1410. self.sorted_diameters = sorted(sort_temp)
  1411. # populate self.intial_table_rows dict with the tool number as keys and tool diameters as values
  1412. if self.exc_obj.diameterless is False:
  1413. for i in range(len(self.sorted_diameters)):
  1414. tt_dia = self.sorted_diameters[i]
  1415. self.tool2tooldia[i + 1] = tt_dia
  1416. else:
  1417. # the Excellon object has diameters that are bogus information, added by the application because the
  1418. # Excellon file has no tool diameter information. In this case do not order the diameter in the table
  1419. # but use the real order found in the exc_obj.tools
  1420. for k, v in self.exc_obj.tools.items():
  1421. tool_dia = float('%.*f' % (self.decimals, v['tooldia']))
  1422. self.tool2tooldia[int(k)] = tool_dia
  1423. # Init appGUI
  1424. self.e_ui.addtool_entry.set_value(float(self.app.defaults['excellon_editor_newdia']))
  1425. self.e_ui.drill_array_size_entry.set_value(int(self.app.defaults['excellon_editor_array_size']))
  1426. self.e_ui.drill_axis_radio.set_value(self.app.defaults['excellon_editor_lin_dir'])
  1427. self.e_ui.drill_pitch_entry.set_value(float(self.app.defaults['excellon_editor_lin_pitch']))
  1428. self.e_ui.linear_angle_spinner.set_value(float(self.app.defaults['excellon_editor_lin_angle']))
  1429. self.e_ui.drill_direction_radio.set_value(self.app.defaults['excellon_editor_circ_dir'])
  1430. self.e_ui.drill_angle_entry.set_value(float(self.app.defaults['excellon_editor_circ_angle']))
  1431. self.e_ui.slot_length_entry.set_value(float(self.app.defaults['excellon_editor_slot_length']))
  1432. self.e_ui.slot_axis_radio.set_value(self.app.defaults['excellon_editor_slot_direction'])
  1433. self.e_ui.slot_angle_spinner.set_value(float(self.app.defaults['excellon_editor_slot_angle']))
  1434. self.e_ui.slot_array_size_entry.set_value(int(self.app.defaults['excellon_editor_slot_array_size']))
  1435. self.e_ui.slot_array_axis_radio.set_value(self.app.defaults['excellon_editor_slot_lin_dir'])
  1436. self.e_ui.slot_array_pitch_entry.set_value(float(self.app.defaults['excellon_editor_slot_lin_pitch']))
  1437. self.e_ui.slot_array_linear_angle_spinner.set_value(float(self.app.defaults['excellon_editor_slot_lin_angle']))
  1438. self.e_ui.slot_array_direction_radio.set_value(self.app.defaults['excellon_editor_slot_circ_dir'])
  1439. self.e_ui.slot_array_angle_entry.set_value(float(self.app.defaults['excellon_editor_slot_circ_angle']))
  1440. self.e_ui.slot_array_circular_frame.hide()
  1441. self.e_ui.slot_array_linear_frame.show()
  1442. def build_ui(self, first_run=None):
  1443. try:
  1444. # if connected, disconnect the signal from the slot on item_changed as it creates issues
  1445. self.e_ui.tools_table_exc.itemChanged.disconnect()
  1446. except (TypeError, AttributeError):
  1447. pass
  1448. try:
  1449. self.e_ui.tools_table_exc.cellPressed.disconnect()
  1450. except (TypeError, AttributeError):
  1451. pass
  1452. # updated units
  1453. self.units = self.app.defaults['units'].upper()
  1454. # make a new name for the new Excellon object (the one with edited content)
  1455. self.edited_obj_name = self.exc_obj.options['name']
  1456. self.e_ui.name_entry.set_value(self.edited_obj_name)
  1457. sort_temp = []
  1458. for diam in self.olddia_newdia:
  1459. sort_temp.append(float(diam))
  1460. self.sorted_diameters = sorted(sort_temp)
  1461. # here, self.sorted_diameters will hold in a oblique way, the number of tools
  1462. n = len(self.sorted_diameters)
  1463. # we have (n+2) rows because there are 'n' tools, each a row, plus the last 2 rows for totals.
  1464. self.e_ui.tools_table_exc.setRowCount(n + 2)
  1465. self.tot_drill_cnt = 0
  1466. self.tot_slot_cnt = 0
  1467. self.tool_row = 0
  1468. # this variable will serve as the real tool_number
  1469. tool_id = 0
  1470. for tool_no in self.sorted_diameters:
  1471. tool_id += 1
  1472. drill_cnt = 0 # variable to store the nr of drills per tool
  1473. slot_cnt = 0 # variable to store the nr of slots per tool
  1474. # Find no of drills for the current tool
  1475. for tool_dia in self.points_edit:
  1476. if float(tool_dia) == tool_no:
  1477. drill_cnt = len(self.points_edit[tool_dia])
  1478. self.tot_drill_cnt += drill_cnt
  1479. # try:
  1480. # # Find no of slots for the current tool
  1481. # for slot in self.slot_points_edit:
  1482. # if float(slot) == tool_no:
  1483. # slot_cnt += 1
  1484. #
  1485. # self.tot_slot_cnt += slot_cnt
  1486. # except AttributeError:
  1487. # # log.debug("No slots in the Excellon file")
  1488. # # Find no of slots for the current tool
  1489. # for tool_dia in self.slot_points_edit:
  1490. # if float(tool_dia) == tool_no:
  1491. # slot_cnt = len(self.slot_points_edit[tool_dia])
  1492. #
  1493. # self.tot_slot_cnt += slot_cnt
  1494. for tool_dia in self.slot_points_edit:
  1495. if float(tool_dia) == tool_no:
  1496. slot_cnt = len(self.slot_points_edit[tool_dia])
  1497. self.tot_slot_cnt += slot_cnt
  1498. idd = QtWidgets.QTableWidgetItem('%d' % int(tool_id))
  1499. idd.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
  1500. self.e_ui.tools_table_exc.setItem(self.tool_row, 0, idd) # Tool name/id
  1501. # Make sure that the drill diameter when in MM is with no more than 2 decimals
  1502. # There are no drill bits in MM with more than 2 decimals diameter
  1503. # For INCH the decimals should be no more than 4. There are no drills under 10mils
  1504. dia = QtWidgets.QTableWidgetItem('%.*f' % (self.decimals, self.olddia_newdia[tool_no]))
  1505. dia.setFlags(QtCore.Qt.ItemIsEnabled)
  1506. drill_count = QtWidgets.QTableWidgetItem('%d' % drill_cnt)
  1507. drill_count.setFlags(QtCore.Qt.ItemIsEnabled)
  1508. # if the slot number is zero is better to not clutter the GUI with zero's so we print a space
  1509. if slot_cnt > 0:
  1510. slot_count = QtWidgets.QTableWidgetItem('%d' % slot_cnt)
  1511. else:
  1512. slot_count = QtWidgets.QTableWidgetItem('')
  1513. slot_count.setFlags(QtCore.Qt.ItemIsEnabled)
  1514. self.e_ui.tools_table_exc.setItem(self.tool_row, 1, dia) # Diameter
  1515. self.e_ui.tools_table_exc.setItem(self.tool_row, 2, drill_count) # Number of drills per tool
  1516. self.e_ui.tools_table_exc.setItem(self.tool_row, 3, slot_count) # Number of drills per tool
  1517. if first_run is True:
  1518. # set now the last tool selected
  1519. self.last_tool_selected = int(tool_id)
  1520. self.tool_row += 1
  1521. # make the diameter column editable
  1522. for row in range(self.tool_row):
  1523. self.e_ui.tools_table_exc.item(row, 1).setFlags(
  1524. QtCore.Qt.ItemIsEditable | QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
  1525. self.e_ui.tools_table_exc.item(row, 2).setForeground(QtGui.QColor(0, 0, 0))
  1526. self.e_ui.tools_table_exc.item(row, 3).setForeground(QtGui.QColor(0, 0, 0))
  1527. # add a last row with the Total number of drills
  1528. # HACK: made the text on this cell '9999' such it will always be the one before last when sorting
  1529. # it will have to have the foreground color (font color) white
  1530. empty = QtWidgets.QTableWidgetItem('9998')
  1531. empty.setForeground(QtGui.QColor(255, 255, 255))
  1532. empty.setFlags(empty.flags() ^ QtCore.Qt.ItemIsEnabled)
  1533. empty_b = QtWidgets.QTableWidgetItem('')
  1534. empty_b.setFlags(empty_b.flags() ^ QtCore.Qt.ItemIsEnabled)
  1535. label_tot_drill_count = QtWidgets.QTableWidgetItem(_('Total Drills'))
  1536. tot_drill_count = QtWidgets.QTableWidgetItem('%d' % self.tot_drill_cnt)
  1537. label_tot_drill_count.setFlags(label_tot_drill_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1538. tot_drill_count.setFlags(tot_drill_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1539. self.e_ui.tools_table_exc.setItem(self.tool_row, 0, empty)
  1540. self.e_ui.tools_table_exc.setItem(self.tool_row, 1, label_tot_drill_count)
  1541. self.e_ui.tools_table_exc.setItem(self.tool_row, 2, tot_drill_count) # Total number of drills
  1542. self.e_ui.tools_table_exc.setItem(self.tool_row, 3, empty_b)
  1543. font = QtGui.QFont()
  1544. font.setBold(True)
  1545. font.setWeight(75)
  1546. for k in [1, 2]:
  1547. self.e_ui.tools_table_exc.item(self.tool_row, k).setForeground(QtGui.QColor(127, 0, 255))
  1548. self.e_ui.tools_table_exc.item(self.tool_row, k).setFont(font)
  1549. self.tool_row += 1
  1550. # add a last row with the Total number of slots
  1551. # HACK: made the text on this cell '9999' such it will always be the last when sorting
  1552. # it will have to have the foreground color (font color) white
  1553. empty_2 = QtWidgets.QTableWidgetItem('9999')
  1554. empty_2.setForeground(QtGui.QColor(255, 255, 255))
  1555. empty_2.setFlags(empty_2.flags() ^ QtCore.Qt.ItemIsEnabled)
  1556. empty_3 = QtWidgets.QTableWidgetItem('')
  1557. empty_3.setFlags(empty_3.flags() ^ QtCore.Qt.ItemIsEnabled)
  1558. label_tot_slot_count = QtWidgets.QTableWidgetItem(_('Total Slots'))
  1559. tot_slot_count = QtWidgets.QTableWidgetItem('%d' % self.tot_slot_cnt)
  1560. label_tot_slot_count.setFlags(label_tot_slot_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1561. tot_slot_count.setFlags(tot_slot_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1562. self.e_ui.tools_table_exc.setItem(self.tool_row, 0, empty_2)
  1563. self.e_ui.tools_table_exc.setItem(self.tool_row, 1, label_tot_slot_count)
  1564. self.e_ui.tools_table_exc.setItem(self.tool_row, 2, empty_3)
  1565. self.e_ui.tools_table_exc.setItem(self.tool_row, 3, tot_slot_count) # Total number of slots
  1566. for kl in [1, 2, 3]:
  1567. self.e_ui.tools_table_exc.item(self.tool_row, kl).setFont(font)
  1568. self.e_ui.tools_table_exc.item(self.tool_row, kl).setForeground(QtGui.QColor(0, 70, 255))
  1569. # all the tools are selected by default
  1570. self.e_ui.tools_table_exc.selectColumn(0)
  1571. #
  1572. self.e_ui.tools_table_exc.resizeColumnsToContents()
  1573. self.e_ui.tools_table_exc.resizeRowsToContents()
  1574. vertical_header = self.e_ui.tools_table_exc.verticalHeader()
  1575. # vertical_header.setSectionResizeMode(QtWidgets.QHeaderView.ResizeToContents)
  1576. vertical_header.hide()
  1577. self.e_ui.tools_table_exc.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
  1578. horizontal_header = self.e_ui.tools_table_exc.horizontalHeader()
  1579. horizontal_header.setSectionResizeMode(0, QtWidgets.QHeaderView.ResizeToContents)
  1580. horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.Stretch)
  1581. horizontal_header.setSectionResizeMode(2, QtWidgets.QHeaderView.ResizeToContents)
  1582. horizontal_header.setSectionResizeMode(3, QtWidgets.QHeaderView.ResizeToContents)
  1583. # horizontal_header.setStretchLastSection(True)
  1584. # self.e_ui.tools_table_exc.setSortingEnabled(True)
  1585. # sort by tool diameter
  1586. self.e_ui.tools_table_exc.sortItems(1)
  1587. # After sorting, to display also the number of drills in the right row we need to update self.initial_rows dict
  1588. # with the new order. Of course the last 2 rows in the tool table are just for display therefore we don't
  1589. # use them
  1590. self.tool2tooldia.clear()
  1591. for row in range(self.e_ui.tools_table_exc.rowCount() - 2):
  1592. tool = int(self.e_ui.tools_table_exc.item(row, 0).text())
  1593. diameter = float(self.e_ui.tools_table_exc.item(row, 1).text())
  1594. self.tool2tooldia[tool] = diameter
  1595. self.e_ui.tools_table_exc.setMinimumHeight(self.e_ui.tools_table_exc.getHeight())
  1596. self.e_ui.tools_table_exc.setMaximumHeight(self.e_ui.tools_table_exc.getHeight())
  1597. # make sure no rows are selected so the user have to click the correct row, meaning selecting the correct tool
  1598. self.e_ui.tools_table_exc.clearSelection()
  1599. # Remove anything else in the GUI Selected Tab
  1600. self.app.ui.properties_scroll_area.takeWidget()
  1601. # Put ourselves in the GUI Properties Tab
  1602. self.app.ui.properties_scroll_area.setWidget(self.e_ui.exc_edit_widget)
  1603. # Switch notebook to Properties page
  1604. self.app.ui.notebook.setCurrentWidget(self.app.ui.properties_tab)
  1605. # we reactivate the signals after the after the tool adding as we don't need to see the tool been populated
  1606. self.e_ui.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  1607. self.e_ui.tools_table_exc.cellPressed.connect(self.on_row_selected)
  1608. def on_tool_add(self, tooldia=None):
  1609. self.is_modified = True
  1610. if tooldia:
  1611. tool_dia = tooldia
  1612. else:
  1613. try:
  1614. tool_dia = float(self.e_ui.addtool_entry.get_value())
  1615. except ValueError:
  1616. # try to convert comma to decimal point. if it's still not working error message and return
  1617. try:
  1618. tool_dia = float(self.e_ui.addtool_entry.get_value().replace(',', '.'))
  1619. except ValueError:
  1620. self.app.inform.emit('[ERROR_NOTCL] %s' % _("Wrong value format entered, use a number."))
  1621. return
  1622. if tool_dia not in self.olddia_newdia:
  1623. storage_elem = AppGeoEditor.make_storage()
  1624. self.storage_dict[tool_dia] = storage_elem
  1625. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  1626. # each time a tool diameter is edited or added
  1627. self.olddia_newdia[tool_dia] = tool_dia
  1628. else:
  1629. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Tool already in the original or actual tool list.\n"
  1630. "Save and reedit Excellon if you need to add this tool. "))
  1631. return
  1632. # since we add a new tool, we update also the initial state of the tool_table through it's dictionary
  1633. # we add a new entry in the tool2tooldia dict
  1634. self.tool2tooldia[len(self.olddia_newdia)] = tool_dia
  1635. self.app.inform.emit('[success] %s: %s %s' % (_("Added new tool with dia"), str(tool_dia), str(self.units)))
  1636. self.build_ui()
  1637. # make a quick sort through the tool2tooldia dict so we find which row to select
  1638. row_to_be_selected = None
  1639. for key in sorted(self.tool2tooldia):
  1640. if self.tool2tooldia[key] == tool_dia:
  1641. row_to_be_selected = int(key) - 1
  1642. self.last_tool_selected = int(key)
  1643. break
  1644. try:
  1645. self.e_ui.tools_table_exc.selectRow(row_to_be_selected)
  1646. except TypeError as e:
  1647. log.debug("AppExcEditor.on_tool_add() --> %s" % str(e))
  1648. def on_tool_delete(self, dia=None):
  1649. self.is_modified = True
  1650. deleted_tool_dia_list = []
  1651. try:
  1652. if dia is None or dia is False:
  1653. # deleted_tool_dia = float(self.e_ui.tools_table_exc.item(self.e_ui.tools_table_exc.currentRow(), 1).text())
  1654. for index in self.e_ui.tools_table_exc.selectionModel().selectedRows():
  1655. row = index.row()
  1656. deleted_tool_dia_list.append(float(self.e_ui.tools_table_exc.item(row, 1).text()))
  1657. else:
  1658. if isinstance(dia, list):
  1659. for dd in dia:
  1660. deleted_tool_dia_list.append(float('%.*f' % (self.decimals, dd)))
  1661. else:
  1662. deleted_tool_dia_list.append(float('%.*f' % (self.decimals, dia)))
  1663. except Exception:
  1664. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Select a tool in Tool Table"))
  1665. return
  1666. for deleted_tool_dia in deleted_tool_dia_list:
  1667. # delete the storage used for that tool
  1668. storage_elem = AppGeoEditor.make_storage()
  1669. self.storage_dict[deleted_tool_dia] = storage_elem
  1670. self.storage_dict.pop(deleted_tool_dia, None)
  1671. # I've added this flag_del variable because dictionary don't like
  1672. # having keys deleted while iterating through them
  1673. flag_del = []
  1674. # self.points_edit.pop(deleted_tool_dia, None)
  1675. for deleted_tool in self.tool2tooldia:
  1676. if self.tool2tooldia[deleted_tool] == deleted_tool_dia:
  1677. flag_del.append(deleted_tool)
  1678. if flag_del:
  1679. for tool_to_be_deleted in flag_del:
  1680. # delete the tool
  1681. self.tool2tooldia.pop(tool_to_be_deleted, None)
  1682. # delete also the drills from points_edit dict just in case we add the tool again,
  1683. # we don't want to show the number of drills from before was deleter
  1684. self.points_edit[deleted_tool_dia] = []
  1685. self.olddia_newdia.pop(deleted_tool_dia, None)
  1686. self.app.inform.emit('[success] %s: %s %s' %
  1687. (_("Deleted tool with diameter"), str(deleted_tool_dia), str(self.units)))
  1688. self.replot()
  1689. # self.app.inform.emit("Could not delete selected tool")
  1690. self.build_ui()
  1691. def on_tool_edit(self, item_changed):
  1692. # if connected, disconnect the signal from the slot on item_changed as it creates issues
  1693. try:
  1694. self.e_ui.tools_table_exc.itemChanged.disconnect()
  1695. except TypeError:
  1696. pass
  1697. try:
  1698. self.e_ui.tools_table_exc.cellPressed.disconnect()
  1699. except TypeError:
  1700. pass
  1701. # self.e_ui.tools_table_exc.selectionModel().currentChanged.disconnect()
  1702. self.is_modified = True
  1703. # new_dia = None
  1704. try:
  1705. new_dia = float(self.e_ui.tools_table_exc.currentItem().text())
  1706. except ValueError as e:
  1707. log.debug("AppExcEditor.on_tool_edit() --> %s" % str(e))
  1708. return
  1709. row_of_item_changed = self.e_ui.tools_table_exc.currentRow()
  1710. # rows start with 0, tools start with 1 so we adjust the value by 1
  1711. key_in_tool2tooldia = row_of_item_changed + 1
  1712. old_dia = self.tool2tooldia[key_in_tool2tooldia]
  1713. # SOURCE storage
  1714. source_storage = self.storage_dict[old_dia]
  1715. # DESTINATION storage
  1716. # tool diameter is not used so we create a new tool with the desired diameter
  1717. if new_dia not in self.olddia_newdia:
  1718. destination_storage = AppGeoEditor.make_storage()
  1719. self.storage_dict[new_dia] = destination_storage
  1720. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  1721. # each time a tool diameter is edited or added
  1722. self.olddia_newdia[new_dia] = new_dia
  1723. else:
  1724. # tool diameter is already in use so we move the drills from the prior tool to the new tool
  1725. destination_storage = self.storage_dict[new_dia]
  1726. # since we add a new tool, we update also the intial state of the tool_table through it's dictionary
  1727. # we add a new entry in the tool2tooldia dict
  1728. self.tool2tooldia[len(self.olddia_newdia)] = new_dia
  1729. # CHANGE the elements geometry according to the new diameter
  1730. factor = new_dia / old_dia
  1731. new_geo = Polygon()
  1732. for shape_exc in source_storage.get_objects():
  1733. geo_list = []
  1734. if isinstance(shape_exc.geo, MultiLineString):
  1735. for subgeo in shape_exc.geo:
  1736. geo_list.append(affinity.scale(subgeo, xfact=factor, yfact=factor, origin='center'))
  1737. new_geo = MultiLineString(geo_list)
  1738. elif isinstance(shape_exc.geo, Polygon):
  1739. # I don't have any info regarding the angle of the slot geometry, nor how thick it is or
  1740. # how long it is given the angle. So I will have to make an approximation because
  1741. # we need to conserve the slot length, we only resize the diameter for the tool
  1742. # Therefore scaling won't work and buffering will not work either.
  1743. # First we get the Linestring that is one that the original slot is built around with the
  1744. # tool having the diameter sel_dia
  1745. poly = shape_exc.geo
  1746. xmin, ymin, xmax, ymax = poly.bounds
  1747. # a line that is certain to be bigger than our slot because it's the diagonal
  1748. # of it's bounding box
  1749. poly_diagonal = LineString([(xmin, ymin), (xmax, ymax)])
  1750. poly_centroid = poly.centroid
  1751. # center of the slot geometry
  1752. poly_center = (poly_centroid.x, poly_centroid.y)
  1753. # make a list of intersections with the rotated line
  1754. list_of_cuttings = []
  1755. for angle in range(0, 359, 1):
  1756. rot_poly_diagonal = affinity.rotate(poly_diagonal, angle=angle, origin=poly_center)
  1757. cut_line = rot_poly_diagonal.intersection(poly)
  1758. cut_line_len = cut_line.length
  1759. list_of_cuttings.append(
  1760. (cut_line_len, cut_line)
  1761. )
  1762. # find the cut_line with the maximum length which is the LineString for which the start
  1763. # and stop point are the start and stop point of the slot as in the Gerber file
  1764. cut_line_with_max_length = max(list_of_cuttings, key=lambda i: i[0])[1]
  1765. # find the coordinates of this line
  1766. cut_line_with_max_length_coords = list(cut_line_with_max_length.coords)
  1767. # extract the first and last point of the line and build some buffered polygon circles
  1768. # around them
  1769. start_pt = Point(cut_line_with_max_length_coords[0])
  1770. stop_pt = Point(cut_line_with_max_length_coords[1])
  1771. start_cut_geo = start_pt.buffer(new_dia / 2)
  1772. stop_cut_geo = stop_pt.buffer(new_dia / 2)
  1773. # and we cut the above circle polygons from our line and get in this way a line around
  1774. # which we can build the new slot by buffering with the new tool diameter
  1775. new_line = cut_line_with_max_length.difference(start_cut_geo)
  1776. new_line = new_line.difference(stop_cut_geo)
  1777. # create the geometry for the resized slot by buffering with half of the
  1778. # new diameter value: new_dia
  1779. new_geo = new_line.buffer(new_dia / 2)
  1780. try:
  1781. self.points_edit.pop(old_dia, None)
  1782. except KeyError:
  1783. pass
  1784. try:
  1785. self.slot_points_edit.pop(old_dia, None)
  1786. except KeyError:
  1787. pass
  1788. # add bogus drill/slots points (for total count of drills/slots)
  1789. # for drills
  1790. if isinstance(shape_exc.geo, MultiLineString):
  1791. if new_dia not in self.points_edit:
  1792. self.points_edit[new_dia] = [(0, 0)]
  1793. else:
  1794. self.points_edit[new_dia].append((0, 0))
  1795. # for slots
  1796. if isinstance(shape_exc.geo, Polygon):
  1797. if new_dia not in self.slot_points_edit:
  1798. self.slot_points_edit[new_dia] = [(0, 0)]
  1799. else:
  1800. self.slot_points_edit[new_dia].append((0, 0))
  1801. self.add_exc_shape(shape=DrawToolShape(new_geo), storage=destination_storage)
  1802. # update the UI and the CANVAS
  1803. self.build_ui()
  1804. self.replot()
  1805. # delete the old tool
  1806. self.on_tool_delete(dia=old_dia)
  1807. # we reactivate the signals after the after the tool editing
  1808. self.e_ui.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  1809. self.e_ui.tools_table_exc.cellPressed.connect(self.on_row_selected)
  1810. self.app.inform.emit('[success] %s' % _("Done. Tool edit completed."))
  1811. # self.e_ui.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
  1812. def on_name_activate(self):
  1813. self.edited_obj_name = self.e_ui.name_entry.get_value()
  1814. def activate(self):
  1815. # adjust the status of the menu entries related to the editor
  1816. self.app.ui.menueditedit.setDisabled(True)
  1817. self.app.ui.menueditok.setDisabled(False)
  1818. # adjust the visibility of some of the canvas context menu
  1819. self.app.ui.popmenu_edit.setVisible(False)
  1820. self.app.ui.popmenu_save.setVisible(True)
  1821. self.connect_canvas_event_handlers()
  1822. # initialize working objects
  1823. self.storage_dict = {}
  1824. self.current_storage = []
  1825. self.points_edit = {}
  1826. self.sorted_diameters = []
  1827. self.new_drills = []
  1828. self.new_tools = {}
  1829. self.new_slots = []
  1830. self.olddia_newdia = {}
  1831. self.shapes.enabled = True
  1832. self.tool_shape.enabled = True
  1833. # self.app.app_cursor.enabled = True
  1834. self.app.ui.corner_snap_btn.setVisible(True)
  1835. self.app.ui.snap_magnet.setVisible(True)
  1836. self.app.ui.exc_editor_menu.setDisabled(False)
  1837. self.app.ui.exc_editor_menu.menuAction().setVisible(True)
  1838. self.app.ui.update_obj_btn.setEnabled(True)
  1839. self.app.ui.e_editor_cmenu.setEnabled(True)
  1840. self.app.ui.exc_edit_toolbar.setDisabled(False)
  1841. self.app.ui.exc_edit_toolbar.setVisible(True)
  1842. # self.app.ui.grid_toolbar.setDisabled(False)
  1843. # start with GRID toolbar activated
  1844. if self.app.ui.grid_snap_btn.isChecked() is False:
  1845. self.app.ui.grid_snap_btn.trigger()
  1846. self.app.ui.popmenu_disable.setVisible(False)
  1847. self.app.ui.cmenu_newmenu.menuAction().setVisible(False)
  1848. self.app.ui.popmenu_properties.setVisible(False)
  1849. self.app.ui.e_editor_cmenu.menuAction().setVisible(True)
  1850. self.app.ui.g_editor_cmenu.menuAction().setVisible(False)
  1851. self.app.ui.grb_editor_cmenu.menuAction().setVisible(False)
  1852. # show the UI
  1853. self.e_ui.drills_frame.show()
  1854. def deactivate(self):
  1855. try:
  1856. QtGui.QGuiApplication.restoreOverrideCursor()
  1857. except Exception:
  1858. pass
  1859. # adjust the status of the menu entries related to the editor
  1860. self.app.ui.menueditedit.setDisabled(False)
  1861. self.app.ui.menueditok.setDisabled(True)
  1862. # adjust the visibility of some of the canvas context menu
  1863. self.app.ui.popmenu_edit.setVisible(True)
  1864. self.app.ui.popmenu_save.setVisible(False)
  1865. self.disconnect_canvas_event_handlers()
  1866. self.clear()
  1867. self.app.ui.exc_edit_toolbar.setDisabled(True)
  1868. self.app.ui.corner_snap_btn.setVisible(False)
  1869. self.app.ui.snap_magnet.setVisible(False)
  1870. # set the Editor Toolbar visibility to what was before entering in the Editor
  1871. self.app.ui.exc_edit_toolbar.setVisible(False) if self.toolbar_old_state is False \
  1872. else self.app.ui.exc_edit_toolbar.setVisible(True)
  1873. # Disable visuals
  1874. self.shapes.enabled = False
  1875. self.tool_shape.enabled = False
  1876. # self.app.app_cursor.enabled = False
  1877. self.app.ui.exc_editor_menu.setDisabled(True)
  1878. self.app.ui.exc_editor_menu.menuAction().setVisible(False)
  1879. self.app.ui.update_obj_btn.setEnabled(False)
  1880. self.app.ui.popmenu_disable.setVisible(True)
  1881. self.app.ui.cmenu_newmenu.menuAction().setVisible(True)
  1882. self.app.ui.popmenu_properties.setVisible(True)
  1883. self.app.ui.g_editor_cmenu.menuAction().setVisible(False)
  1884. self.app.ui.e_editor_cmenu.menuAction().setVisible(False)
  1885. self.app.ui.grb_editor_cmenu.menuAction().setVisible(False)
  1886. # Show original geometry
  1887. if self.exc_obj:
  1888. self.exc_obj.visible = True
  1889. # hide the UI
  1890. self.e_ui.drills_frame.hide()
  1891. def connect_canvas_event_handlers(self):
  1892. # ## Canvas events
  1893. # first connect to new, then disconnect the old handlers
  1894. # don't ask why but if there is nothing connected I've seen issues
  1895. self.mp = self.canvas.graph_event_connect('mouse_press', self.on_canvas_click)
  1896. self.mm = self.canvas.graph_event_connect('mouse_move', self.on_canvas_move)
  1897. self.mr = self.canvas.graph_event_connect('mouse_release', self.on_exc_click_release)
  1898. # make sure that the shortcuts key and mouse events will no longer be linked to the methods from FlatCAMApp
  1899. # but those from AppGeoEditor
  1900. if self.app.is_legacy is False:
  1901. self.app.plotcanvas.graph_event_disconnect('mouse_press', self.app.on_mouse_click_over_plot)
  1902. self.app.plotcanvas.graph_event_disconnect('mouse_move', self.app.on_mouse_move_over_plot)
  1903. self.app.plotcanvas.graph_event_disconnect('mouse_release', self.app.on_mouse_click_release_over_plot)
  1904. self.app.plotcanvas.graph_event_disconnect('mouse_double_click', self.app.on_mouse_double_click_over_plot)
  1905. else:
  1906. self.app.plotcanvas.graph_event_disconnect(self.app.mp)
  1907. self.app.plotcanvas.graph_event_disconnect(self.app.mm)
  1908. self.app.plotcanvas.graph_event_disconnect(self.app.mr)
  1909. self.app.plotcanvas.graph_event_disconnect(self.app.mdc)
  1910. self.app.collection.view.clicked.disconnect()
  1911. self.app.ui.popmenu_copy.triggered.disconnect()
  1912. self.app.ui.popmenu_delete.triggered.disconnect()
  1913. self.app.ui.popmenu_move.triggered.disconnect()
  1914. self.app.ui.popmenu_copy.triggered.connect(self.exc_copy_drills)
  1915. self.app.ui.popmenu_delete.triggered.connect(self.on_delete_btn)
  1916. self.app.ui.popmenu_move.triggered.connect(self.exc_move_drills)
  1917. # Excellon Editor
  1918. self.app.ui.drill.triggered.connect(self.exc_add_drill)
  1919. self.app.ui.drill_array.triggered.connect(self.exc_add_drill_array)
  1920. def disconnect_canvas_event_handlers(self):
  1921. # we restore the key and mouse control to FlatCAMApp method
  1922. # first connect to new, then disconnect the old handlers
  1923. # don't ask why but if there is nothing connected I've seen issues
  1924. self.app.mp = self.app.plotcanvas.graph_event_connect('mouse_press', self.app.on_mouse_click_over_plot)
  1925. self.app.mm = self.app.plotcanvas.graph_event_connect('mouse_move', self.app.on_mouse_move_over_plot)
  1926. self.app.mr = self.app.plotcanvas.graph_event_connect('mouse_release',
  1927. self.app.on_mouse_click_release_over_plot)
  1928. self.app.mdc = self.app.plotcanvas.graph_event_connect('mouse_double_click',
  1929. self.app.on_mouse_double_click_over_plot)
  1930. self.app.collection.view.clicked.connect(self.app.collection.on_mouse_down)
  1931. if self.app.is_legacy is False:
  1932. self.canvas.graph_event_disconnect('mouse_press', self.on_canvas_click)
  1933. self.canvas.graph_event_disconnect('mouse_move', self.on_canvas_move)
  1934. self.canvas.graph_event_disconnect('mouse_release', self.on_exc_click_release)
  1935. else:
  1936. self.canvas.graph_event_disconnect(self.mp)
  1937. self.canvas.graph_event_disconnect(self.mm)
  1938. self.canvas.graph_event_disconnect(self.mr)
  1939. try:
  1940. self.app.ui.popmenu_copy.triggered.disconnect(self.exc_copy_drills)
  1941. except (TypeError, AttributeError):
  1942. pass
  1943. try:
  1944. self.app.ui.popmenu_delete.triggered.disconnect(self.on_delete_btn)
  1945. except (TypeError, AttributeError):
  1946. pass
  1947. try:
  1948. self.app.ui.popmenu_move.triggered.disconnect(self.exc_move_drills)
  1949. except (TypeError, AttributeError):
  1950. pass
  1951. self.app.ui.popmenu_copy.triggered.connect(self.app.on_copy_command)
  1952. self.app.ui.popmenu_delete.triggered.connect(self.app.on_delete)
  1953. self.app.ui.popmenu_move.triggered.connect(self.app.obj_move)
  1954. # Excellon Editor
  1955. try:
  1956. self.app.ui.drill.triggered.disconnect(self.exc_add_drill)
  1957. except (TypeError, AttributeError):
  1958. pass
  1959. try:
  1960. self.app.ui.drill_array.triggered.disconnect(self.exc_add_drill_array)
  1961. except (TypeError, AttributeError):
  1962. pass
  1963. try:
  1964. self.app.jump_signal.disconnect()
  1965. except (TypeError, AttributeError):
  1966. pass
  1967. def clear(self):
  1968. self.active_tool = None
  1969. # self.shape_buffer = []
  1970. self.selected = []
  1971. self.points_edit = {}
  1972. self.new_tools = {}
  1973. self.new_drills = []
  1974. # self.storage_dict = {}
  1975. self.shapes.clear(update=True)
  1976. self.tool_shape.clear(update=True)
  1977. # self.storage = AppExcEditor.make_storage()
  1978. self.replot()
  1979. def edit_fcexcellon(self, exc_obj):
  1980. """
  1981. Imports the geometry from the given FlatCAM Excellon object
  1982. into the editor.
  1983. :param exc_obj: ExcellonObject object
  1984. :return: None
  1985. """
  1986. self.deactivate()
  1987. self.activate()
  1988. # Hide original geometry
  1989. self.exc_obj = exc_obj
  1990. exc_obj.visible = False
  1991. if self.exc_obj:
  1992. outname = self.exc_obj.options['name']
  1993. else:
  1994. outname = ''
  1995. self.data_defaults = {
  1996. "name": outname + '_drill',
  1997. "plot": self.app.defaults["excellon_plot"],
  1998. "solid": self.app.defaults["excellon_solid"],
  1999. "multicolored": self.app.defaults["excellon_multicolored"],
  2000. "merge_fuse_tools": self.app.defaults["excellon_merge_fuse_tools"],
  2001. "format_upper_in": self.app.defaults["excellon_format_upper_in"],
  2002. "format_lower_in": self.app.defaults["excellon_format_lower_in"],
  2003. "format_upper_mm": self.app.defaults["excellon_format_upper_mm"],
  2004. "lower_mm": self.app.defaults["excellon_format_lower_mm"],
  2005. "zeros": self.app.defaults["excellon_zeros"],
  2006. "tools_drill_tool_order": self.app.defaults["tools_drill_tool_order"],
  2007. "tools_drill_cutz": self.app.defaults["tools_drill_cutz"],
  2008. "tools_drill_multidepth": self.app.defaults["tools_drill_multidepth"],
  2009. "tools_drill_depthperpass": self.app.defaults["tools_drill_depthperpass"],
  2010. "tools_drill_travelz": self.app.defaults["tools_drill_travelz"],
  2011. "tools_drill_feedrate_z": self.app.defaults["tools_drill_feedrate_z"],
  2012. "tools_drill_feedrate_rapid": self.app.defaults["tools_drill_feedrate_rapid"],
  2013. "tools_drill_toolchange": self.app.defaults["tools_drill_toolchange"],
  2014. "tools_drill_toolchangez": self.app.defaults["tools_drill_toolchangez"],
  2015. "tools_drill_toolchangexy": self.app.defaults["tools_drill_toolchangexy"],
  2016. # Drill Slots
  2017. "tools_drill_drill_slots": self.app.defaults["tools_drill_drill_slots"],
  2018. "tools_drill_drill_overlap": self.app.defaults["tools_drill_drill_overlap"],
  2019. "tools_drill_last_drill": self.app.defaults["tools_drill_last_drill"],
  2020. "tools_drill_endz": self.app.defaults["tools_drill_endz"],
  2021. "tools_drill_endxy": self.app.defaults["tools_drill_endxy"],
  2022. "tools_drill_startz": self.app.defaults["tools_drill_startz"],
  2023. "tools_drill_offset": self.app.defaults["tools_drill_offset"],
  2024. "tools_drill_spindlespeed": self.app.defaults["tools_drill_spindlespeed"],
  2025. "tools_drill_dwell": self.app.defaults["tools_drill_dwell"],
  2026. "tools_drill_dwelltime": self.app.defaults["tools_drill_dwelltime"],
  2027. "tools_drill_ppname_e": self.app.defaults["tools_drill_ppname_e"],
  2028. "tools_drill_z_pdepth": self.app.defaults["tools_drill_z_pdepth"],
  2029. "tools_drill_feedrate_probe": self.app.defaults["tools_drill_feedrate_probe"],
  2030. "tools_drill_spindledir": self.app.defaults["tools_drill_spindledir"],
  2031. "tools_drill_f_plunge": self.app.defaults["tools_drill_f_plunge"],
  2032. "tools_drill_f_retract": self.app.defaults["tools_drill_f_retract"],
  2033. "tools_drill_area_exclusion": self.app.defaults["tools_drill_area_exclusion"],
  2034. "tools_drill_area_shape": self.app.defaults["tools_drill_area_shape"],
  2035. "tools_drill_area_strategy": self.app.defaults["tools_drill_area_strategy"],
  2036. "tools_drill_area_overz": self.app.defaults["tools_drill_area_overz"],
  2037. }
  2038. # fill in self.default_data values from self.options
  2039. for opt_key, opt_val in self.app.options.items():
  2040. if opt_key.find('excellon_') == 0:
  2041. self.data_defaults[opt_key] = deepcopy(opt_val)
  2042. self.points_edit = {}
  2043. # build the self.points_edit dict {dimaters: [point_list]}
  2044. for tool, tool_dict in self.exc_obj.tools.items():
  2045. tool_dia = self.dec_format(self.exc_obj.tools[tool]['tooldia'])
  2046. if 'drills' in tool_dict and tool_dict['drills']:
  2047. for drill in tool_dict['drills']:
  2048. try:
  2049. self.points_edit[tool_dia].append(drill)
  2050. except KeyError:
  2051. self.points_edit[tool_dia] = [drill]
  2052. self.slot_points_edit = {}
  2053. # build the self.slot_points_edit dict {dimaters: {"start": Point, "stop": Point}}
  2054. for tool, tool_dict in self.exc_obj.tools.items():
  2055. tool_dia = float('%.*f' % (self.decimals, self.exc_obj.tools[tool]['tooldia']))
  2056. if 'slots' in tool_dict and tool_dict['slots']:
  2057. for slot in tool_dict['slots']:
  2058. try:
  2059. self.slot_points_edit[tool_dia].append({
  2060. "start": slot[0],
  2061. "stop": slot[1]
  2062. })
  2063. except KeyError:
  2064. self.slot_points_edit[tool_dia] = [{
  2065. "start": slot[0],
  2066. "stop": slot[1]
  2067. }]
  2068. # Set selection tolerance
  2069. # DrawToolShape.tolerance = fc_excellon.drawing_tolerance * 10
  2070. self.select_tool("drill_select")
  2071. # reset the tool table
  2072. self.e_ui.tools_table_exc.clear()
  2073. self.e_ui.tools_table_exc.setHorizontalHeaderLabels(['#', _('Diameter'), 'D', 'S'])
  2074. self.last_tool_selected = None
  2075. self.set_ui()
  2076. # now that we have data, create the appGUI interface and add it to the Tool Tab
  2077. self.build_ui(first_run=True)
  2078. # we activate this after the initial build as we don't need to see the tool been populated
  2079. self.e_ui.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  2080. # build the geometry for each tool-diameter, each drill will be represented by a '+' symbol
  2081. # and then add it to the storage elements (each storage elements is a member of a list
  2082. for tool_dia in self.points_edit:
  2083. storage_elem = AppGeoEditor.make_storage()
  2084. for point in self.points_edit[tool_dia]:
  2085. # make a '+' sign, the line length is the tool diameter
  2086. start_hor_line = ((point.x - (tool_dia / 2)), point.y)
  2087. stop_hor_line = ((point.x + (tool_dia / 2)), point.y)
  2088. start_vert_line = (point.x, (point.y - (tool_dia / 2)))
  2089. stop_vert_line = (point.x, (point.y + (tool_dia / 2)))
  2090. shape_geo = MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  2091. if shape_geo is not None:
  2092. self.add_exc_shape(DrawToolShape(shape_geo), storage_elem)
  2093. self.storage_dict[tool_dia] = storage_elem
  2094. # slots
  2095. for tool_dia in self.slot_points_edit:
  2096. buf_value = float(tool_dia) / 2
  2097. for elem_dict in self.slot_points_edit[tool_dia]:
  2098. line_geo = LineString([elem_dict['start'], elem_dict['stop']])
  2099. shape_geo = line_geo.buffer(buf_value)
  2100. if tool_dia not in self.storage_dict:
  2101. storage_elem = AppGeoEditor.make_storage()
  2102. self.storage_dict[tool_dia] = storage_elem
  2103. if shape_geo is not None:
  2104. self.add_exc_shape(DrawToolShape(shape_geo), self.storage_dict[tool_dia])
  2105. self.replot()
  2106. # add a first tool in the Tool Table but only if the Excellon Object is empty
  2107. if not self.tool2tooldia:
  2108. self.on_tool_add(self.dec_format(float(self.app.defaults['excellon_editor_newdia'])))
  2109. def update_fcexcellon(self, exc_obj):
  2110. """
  2111. Create a new Excellon object that contain the edited content of the source Excellon object
  2112. :param exc_obj: ExcellonObject
  2113. :return: None
  2114. """
  2115. # this dictionary will contain tooldia's as keys and a list of coordinates tuple as values
  2116. # the values of this dict are coordinates of the holes (drills)
  2117. edited_points = {}
  2118. """
  2119. - this dictionary will contain tooldia's as keys and a list of another dicts as values
  2120. - the dict element of the list has the structure
  2121. ================ ====================================
  2122. Key Value
  2123. ================ ====================================
  2124. start (Shapely.Point) Start point of the slot
  2125. stop (Shapely.Point) Stop point of the slot
  2126. ================ ====================================
  2127. """
  2128. edited_slot_points = {}
  2129. for storage_tooldia in self.storage_dict:
  2130. for x in self.storage_dict[storage_tooldia].get_objects():
  2131. if isinstance(x.geo, MultiLineString):
  2132. # all x.geo in self.storage_dict[storage] are MultiLinestring objects for drills
  2133. # each MultiLineString is made out of Linestrings
  2134. # select first Linestring object in the current MultiLineString
  2135. first_linestring = x.geo[0]
  2136. # get it's coordinates
  2137. first_linestring_coords = first_linestring.coords
  2138. x_coord = first_linestring_coords[0][0] + (float(first_linestring.length / 2))
  2139. y_coord = first_linestring_coords[0][1]
  2140. # create a tuple with the coordinates (x, y) and add it to the list that is the value of the
  2141. # edited_points dictionary
  2142. point = (x_coord, y_coord)
  2143. if storage_tooldia not in edited_points:
  2144. edited_points[storage_tooldia] = [point]
  2145. else:
  2146. edited_points[storage_tooldia].append(point)
  2147. elif isinstance(x.geo, Polygon):
  2148. # create a tuple with the points (start, stop) and add it to the list that is the value of the
  2149. # edited_points dictionary
  2150. # first determine the start and stop coordinates for the slot knowing the geometry and the tool
  2151. # diameter
  2152. radius = float(storage_tooldia) / 2
  2153. radius = radius - 0.0000001
  2154. poly = x.geo
  2155. poly = poly.buffer(-radius)
  2156. if not poly.is_valid or poly.is_empty:
  2157. # print("Polygon not valid: %s" % str(poly.wkt))
  2158. continue
  2159. xmin, ymin, xmax, ymax = poly.bounds
  2160. line_one = LineString([(xmin, ymin), (xmax, ymax)]).intersection(poly).length
  2161. line_two = LineString([(xmin, ymax), (xmax, ymin)]).intersection(poly).length
  2162. if line_one < line_two:
  2163. point_elem = {
  2164. "start": (xmin, ymax),
  2165. "stop": (xmax, ymin)
  2166. }
  2167. else:
  2168. point_elem = {
  2169. "start": (xmin, ymin),
  2170. "stop": (xmax, ymax)
  2171. }
  2172. if storage_tooldia not in edited_slot_points:
  2173. edited_slot_points[storage_tooldia] = [point_elem]
  2174. else:
  2175. edited_slot_points[storage_tooldia].append(point_elem)
  2176. # recreate the drills and tools to be added to the new Excellon edited object
  2177. # first, we look in the tool table if one of the tool diameters was changed then
  2178. # append that a tuple formed by (old_dia, edited_dia) to a list
  2179. changed_key = set()
  2180. for initial_dia in self.olddia_newdia:
  2181. edited_dia = self.olddia_newdia[initial_dia]
  2182. if edited_dia != initial_dia:
  2183. # for drills
  2184. for old_dia in edited_points:
  2185. if old_dia == initial_dia:
  2186. changed_key.add((old_dia, edited_dia))
  2187. # for slots
  2188. for old_dia in edited_slot_points:
  2189. if old_dia == initial_dia:
  2190. changed_key.add((old_dia, edited_dia))
  2191. # if the initial_dia is not in edited_points it means it is a new tool with no drill points
  2192. # (and we have to add it)
  2193. # because in case we have drill points it will have to be already added in edited_points
  2194. # if initial_dia not in edited_points.keys():
  2195. # edited_points[initial_dia] = []
  2196. for el in changed_key:
  2197. edited_points[el[1]] = edited_points.pop(el[0])
  2198. edited_slot_points[el[1]] = edited_slot_points.pop(el[0])
  2199. # Let's sort the edited_points dictionary by keys (diameters) and store the result in a zipped list
  2200. # ordered_edited_points is a ordered list of tuples;
  2201. # element[0] of the tuple is the diameter and
  2202. # element[1] of the tuple is a list of coordinates (a tuple themselves)
  2203. ordered_edited_points = sorted(zip(edited_points.keys(), edited_points.values()))
  2204. current_tool = 0
  2205. for tool_dia in ordered_edited_points:
  2206. current_tool += 1
  2207. # create the self.tools for the new Excellon object (the one with edited content)
  2208. if current_tool not in self.new_tools:
  2209. self.new_tools[current_tool] = {}
  2210. self.new_tools[current_tool]['tooldia'] = float(tool_dia[0])
  2211. # add in self.tools the 'solid_geometry' key, the value (a list) is populated below
  2212. self.new_tools[current_tool]['solid_geometry'] = []
  2213. # create the self.drills for the new Excellon object (the one with edited content)
  2214. for point in tool_dia[1]:
  2215. try:
  2216. self.new_tools[current_tool]['drills'].append(Point(point))
  2217. except KeyError:
  2218. self.new_tools[current_tool]['drills'] = [Point(point)]
  2219. # repopulate the 'solid_geometry' for each tool
  2220. poly = Point(point).buffer(float(tool_dia[0]) / 2.0, int(int(exc_obj.geo_steps_per_circle) / 4))
  2221. self.new_tools[current_tool]['solid_geometry'].append(poly)
  2222. ordered_edited_slot_points = sorted(zip(edited_slot_points.keys(), edited_slot_points.values()))
  2223. for tool_dia in ordered_edited_slot_points:
  2224. tool_exist_flag = False
  2225. for tool in self.new_tools:
  2226. if tool_dia[0] == self.new_tools[tool]["tooldia"]:
  2227. current_tool = tool
  2228. tool_exist_flag = True
  2229. break
  2230. if tool_exist_flag is False:
  2231. current_tool += 1
  2232. # create the self.tools for the new Excellon object (the one with edited content)
  2233. if current_tool not in self.new_tools:
  2234. self.new_tools[current_tool] = {}
  2235. self.new_tools[current_tool]['tooldia'] = float(tool_dia[0])
  2236. # add in self.tools the 'solid_geometry' key, the value (a list) is populated below
  2237. self.new_tools[current_tool]['solid_geometry'] = []
  2238. # create the self.slots for the new Excellon object (the one with edited content)
  2239. for coord_dict in tool_dia[1]:
  2240. slot = (
  2241. Point(coord_dict['start']),
  2242. Point(coord_dict['stop'])
  2243. )
  2244. try:
  2245. self.new_tools[current_tool]['slots'].append(slot)
  2246. except KeyError:
  2247. self.new_tools[current_tool]['slots'] = [slot]
  2248. # repopulate the 'solid_geometry' for each tool
  2249. poly = LineString([coord_dict['start'], coord_dict['stop']]).buffer(
  2250. float(tool_dia[0]) / 2.0, int(int(exc_obj.geo_steps_per_circle) / 4)
  2251. )
  2252. self.new_tools[current_tool]['solid_geometry'].append(poly)
  2253. if self.is_modified is True:
  2254. if "_edit" in self.edited_obj_name:
  2255. try:
  2256. idd = int(self.edited_obj_name[-1]) + 1
  2257. self.edited_obj_name = self.edited_obj_name[:-1] + str(idd)
  2258. except ValueError:
  2259. self.edited_obj_name += "_1"
  2260. else:
  2261. self.edited_obj_name += "_edit"
  2262. self.app.worker_task.emit({'fcn': self.new_edited_excellon,
  2263. 'params': [self.edited_obj_name,
  2264. self.new_drills,
  2265. self.new_slots,
  2266. self.new_tools]})
  2267. return self.edited_obj_name
  2268. @staticmethod
  2269. def update_options(obj):
  2270. try:
  2271. if not obj.options:
  2272. obj.options = {}
  2273. obj.options['xmin'] = 0
  2274. obj.options['ymin'] = 0
  2275. obj.options['xmax'] = 0
  2276. obj.options['ymax'] = 0
  2277. return True
  2278. else:
  2279. return False
  2280. except AttributeError:
  2281. obj.options = {}
  2282. return True
  2283. def new_edited_excellon(self, outname, n_drills, n_slots, n_tools):
  2284. """
  2285. Creates a new Excellon object for the edited Excellon. Thread-safe.
  2286. :param outname: Name of the resulting object. None causes the
  2287. name to be that of the file.
  2288. :type outname: str
  2289. :param n_drills: The new Drills storage
  2290. :param n_slots: The new Slots storage
  2291. :param n_tools: The new Tools storage
  2292. :return: None
  2293. """
  2294. self.app.log.debug("Update the Excellon object with edited content. Source is %s" %
  2295. self.exc_obj.options['name'])
  2296. new_drills = n_drills
  2297. new_slots = n_slots
  2298. new_tools = n_tools
  2299. # How the object should be initialized
  2300. def obj_init(excellon_obj, app_obj):
  2301. excellon_obj.drills = deepcopy(new_drills)
  2302. excellon_obj.tools = deepcopy(new_tools)
  2303. excellon_obj.slots = deepcopy(new_slots)
  2304. excellon_obj.options['name'] = outname
  2305. # add a 'data' dict for each tool with the default values
  2306. for tool in excellon_obj.tools:
  2307. excellon_obj.tools[tool]['data'] = {}
  2308. excellon_obj.tools[tool]['data'].update(deepcopy(self.data_defaults))
  2309. try:
  2310. excellon_obj.create_geometry()
  2311. except KeyError:
  2312. self.app.inform.emit('[ERROR_NOTCL] %s' %
  2313. _("There are no Tools definitions in the file. Aborting Excellon creation.")
  2314. )
  2315. except Exception:
  2316. msg = '[ERROR] %s' % \
  2317. _("An internal error has ocurred. See Shell.\n")
  2318. msg += traceback.format_exc()
  2319. app_obj.inform.emit(msg)
  2320. return
  2321. with self.app.proc_container.new(_("Creating Excellon.")):
  2322. try:
  2323. edited_obj = self.app.app_obj.new_object("excellon", outname, obj_init)
  2324. edited_obj.source_file = self.app.f_handlers.export_excellon(obj_name=edited_obj.options['name'],
  2325. local_use=edited_obj,
  2326. filename=None,
  2327. use_thread=False)
  2328. except Exception as e:
  2329. self.deactivate()
  2330. log.error("Error on Edited object creation: %s" % str(e))
  2331. return
  2332. self.deactivate()
  2333. self.app.inform.emit('[success] %s' % _("Excellon editing finished."))
  2334. def on_tool_select(self, tool):
  2335. """
  2336. Behavior of the toolbar. Tool initialization.
  2337. :rtype : None
  2338. """
  2339. current_tool = tool
  2340. self.app.log.debug("on_tool_select('%s')" % tool)
  2341. if self.last_tool_selected is None and current_tool != 'drill_select':
  2342. # self.draw_app.select_tool('drill_select')
  2343. self.complete = True
  2344. current_tool = 'drill_select'
  2345. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled. There is no Tool/Drill selected"))
  2346. # This is to make the group behave as radio group
  2347. if current_tool in self.tools_exc:
  2348. if self.tools_exc[current_tool]["button"].isChecked():
  2349. self.app.log.debug("%s is checked." % current_tool)
  2350. for t in self.tools_exc:
  2351. if t != current_tool:
  2352. self.tools_exc[t]["button"].setChecked(False)
  2353. # this is where the Editor toolbar classes (button's) are instantiated
  2354. self.active_tool = self.tools_exc[current_tool]["constructor"](self)
  2355. # self.app.inform.emit(self.active_tool.start_msg)
  2356. else:
  2357. self.app.log.debug("%s is NOT checked." % current_tool)
  2358. for t in self.tools_exc:
  2359. self.tools_exc[t]["button"].setChecked(False)
  2360. self.select_tool('drill_select')
  2361. self.active_tool = FCDrillSelect(self)
  2362. def on_row_selected(self, row, col):
  2363. if col == 0:
  2364. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  2365. if self.app.defaults["global_mselect_key"] == 'Control':
  2366. modifier_to_use = Qt.ControlModifier
  2367. else:
  2368. modifier_to_use = Qt.ShiftModifier
  2369. if key_modifier == modifier_to_use:
  2370. pass
  2371. else:
  2372. self.selected = []
  2373. try:
  2374. selected_dia = self.tool2tooldia[self.e_ui.tools_table_exc.currentRow() + 1]
  2375. self.last_tool_selected = int(self.e_ui.tools_table_exc.currentRow()) + 1
  2376. for obj in self.storage_dict[selected_dia].get_objects():
  2377. self.selected.append(obj)
  2378. except Exception as e:
  2379. self.app.log.debug(str(e))
  2380. self.replot()
  2381. def on_canvas_click(self, event):
  2382. """
  2383. event.x and .y have canvas coordinates
  2384. event.xdata and .ydata have plot coordinates
  2385. :param event: Event object dispatched by VisPy
  2386. :return: None
  2387. """
  2388. if self.app.is_legacy is False:
  2389. event_pos = event.pos
  2390. # event_is_dragging = event.is_dragging
  2391. # right_button = 2
  2392. else:
  2393. event_pos = (event.xdata, event.ydata)
  2394. # event_is_dragging = self.app.plotcanvas.is_dragging
  2395. # right_button = 3
  2396. self.pos = self.canvas.translate_coords(event_pos)
  2397. if self.app.grid_status():
  2398. self.pos = self.app.geo_editor.snap(self.pos[0], self.pos[1])
  2399. else:
  2400. self.pos = (self.pos[0], self.pos[1])
  2401. if event.button == 1:
  2402. self.app.ui.rel_position_label.setText("<b>Dx</b>: %.4f&nbsp;&nbsp; <b>Dy</b>: "
  2403. "%.4f&nbsp;&nbsp;&nbsp;&nbsp;" % (0, 0))
  2404. # Selection with left mouse button
  2405. if self.active_tool is not None and event.button == 1:
  2406. # Dispatch event to active_tool
  2407. # msg = self.active_tool.click(self.app.geo_editor.snap(event.xdata, event.ydata))
  2408. self.active_tool.click(self.app.geo_editor.snap(self.pos[0], self.pos[1]))
  2409. # If it is a shape generating tool
  2410. if isinstance(self.active_tool, FCShapeTool) and self.active_tool.complete:
  2411. if self.current_storage is not None:
  2412. self.on_exc_shape_complete(self.current_storage)
  2413. self.build_ui()
  2414. # MS: always return to the Select Tool if modifier key is not pressed
  2415. # else return to the current tool
  2416. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  2417. if self.app.defaults["global_mselect_key"] == 'Control':
  2418. modifier_to_use = Qt.ControlModifier
  2419. else:
  2420. modifier_to_use = Qt.ShiftModifier
  2421. # if modifier key is pressed then we add to the selected list the current shape but if it's already
  2422. # in the selected list, we removed it. Therefore first click selects, second deselects.
  2423. if key_modifier == modifier_to_use:
  2424. self.select_tool(self.active_tool.name)
  2425. else:
  2426. # return to Select tool but not for FCDrillAdd or FCSlot
  2427. if isinstance(self.active_tool, FCDrillAdd) or isinstance(self.active_tool, FCSlot):
  2428. self.select_tool(self.active_tool.name)
  2429. else:
  2430. self.select_tool("drill_select")
  2431. return
  2432. if isinstance(self.active_tool, FCDrillSelect):
  2433. # self.app.log.debug("Replotting after click.")
  2434. self.replot()
  2435. else:
  2436. self.app.log.debug("No active tool to respond to click!")
  2437. def on_exc_shape_complete(self, storage):
  2438. self.app.log.debug("on_shape_complete()")
  2439. # Add shape
  2440. if type(storage) is list:
  2441. for item_storage in storage:
  2442. self.add_exc_shape(self.active_tool.geometry, item_storage)
  2443. else:
  2444. self.add_exc_shape(self.active_tool.geometry, storage)
  2445. # Remove any utility shapes
  2446. self.delete_utility_geometry()
  2447. self.tool_shape.clear(update=True)
  2448. # Replot and reset tool.
  2449. self.replot()
  2450. # self.active_tool = type(self.active_tool)(self)
  2451. def add_exc_shape(self, shape, storage):
  2452. """
  2453. Adds a shape to a specified shape storage.
  2454. :param shape: Shape to be added.
  2455. :type shape: DrawToolShape
  2456. :param storage: object where to store the shapes
  2457. :return: None
  2458. """
  2459. # List of DrawToolShape?
  2460. if isinstance(shape, list):
  2461. for subshape in shape:
  2462. self.add_exc_shape(subshape, storage)
  2463. return
  2464. assert isinstance(shape, DrawToolShape), \
  2465. "Expected a DrawToolShape, got %s" % str(type(shape))
  2466. assert shape.geo is not None, \
  2467. "Shape object has empty geometry (None)"
  2468. assert (isinstance(shape.geo, list) and len(shape.geo) > 0) or not isinstance(shape.geo, list), \
  2469. "Shape objects has empty geometry ([])"
  2470. if isinstance(shape, DrawToolUtilityShape):
  2471. self.utility.append(shape)
  2472. else:
  2473. storage.insert(shape) # TODO: Check performance
  2474. def add_shape(self, shape):
  2475. """
  2476. Adds a shape to the shape storage.
  2477. :param shape: Shape to be added.
  2478. :type shape: DrawToolShape
  2479. :return: None
  2480. """
  2481. # List of DrawToolShape?
  2482. if isinstance(shape, list):
  2483. for subshape in shape:
  2484. self.add_shape(subshape)
  2485. return
  2486. assert isinstance(shape, DrawToolShape), \
  2487. "Expected a DrawToolShape, got %s" % type(shape)
  2488. assert shape.geo is not None, \
  2489. "Shape object has empty geometry (None)"
  2490. assert (isinstance(shape.geo, list) and len(shape.geo) > 0) or not isinstance(shape.geo, list), \
  2491. "Shape objects has empty geometry ([])"
  2492. if isinstance(shape, DrawToolUtilityShape):
  2493. self.utility.append(shape)
  2494. # else:
  2495. # self.storage.insert(shape)
  2496. def on_exc_click_release(self, event):
  2497. """
  2498. Handler of the "mouse_release" event.
  2499. It will pop-up the context menu on right mouse click unless there was a panning move (decided in the
  2500. "mouse_move" event handler) and only if the current tool is the Select tool.
  2501. It will 'close' a Editor tool if it is the case.
  2502. :param event: Event object dispatched by VisPy SceneCavas
  2503. :return: None
  2504. """
  2505. if self.app.is_legacy is False:
  2506. event_pos = event.pos
  2507. # event_is_dragging = event.is_dragging
  2508. right_button = 2
  2509. else:
  2510. event_pos = (event.xdata, event.ydata)
  2511. # event_is_dragging = self.app.plotcanvas.is_dragging
  2512. right_button = 3
  2513. pos_canvas = self.canvas.translate_coords(event_pos)
  2514. if self.app.grid_status():
  2515. pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
  2516. else:
  2517. pos = (pos_canvas[0], pos_canvas[1])
  2518. # if the released mouse button was RMB then test if it was a panning motion or not, if not it was a context
  2519. # canvas menu
  2520. try:
  2521. if event.button == right_button: # right click
  2522. if self.app.ui.popMenu.mouse_is_panning is False:
  2523. try:
  2524. QtGui.QGuiApplication.restoreOverrideCursor()
  2525. except Exception:
  2526. pass
  2527. if self.active_tool.complete is False and not isinstance(self.active_tool, FCDrillSelect):
  2528. self.active_tool.complete = True
  2529. self.in_action = False
  2530. self.delete_utility_geometry()
  2531. self.app.inform.emit('[success] %s' % _("Done."))
  2532. self.select_tool('drill_select')
  2533. else:
  2534. if isinstance(self.active_tool, FCDrillAdd):
  2535. self.active_tool.complete = True
  2536. self.in_action = False
  2537. self.delete_utility_geometry()
  2538. self.app.inform.emit('[success] %s' % _("Done."))
  2539. self.select_tool('drill_select')
  2540. self.app.cursor = QtGui.QCursor()
  2541. self.app.populate_cmenu_grids()
  2542. self.app.ui.popMenu.popup(self.app.cursor.pos())
  2543. except Exception as e:
  2544. log.warning("AppExcEditor.on_exc_click_release() RMB click --> Error: %s" % str(e))
  2545. raise
  2546. # if the released mouse button was LMB then test if we had a right-to-left selection or a left-to-right
  2547. # selection and then select a type of selection ("enclosing" or "touching")
  2548. try:
  2549. if event.button == 1: # left click
  2550. if self.app.selection_type is not None:
  2551. self.draw_selection_area_handler(self.pos, pos, self.app.selection_type)
  2552. self.app.selection_type = None
  2553. elif isinstance(self.active_tool, FCDrillSelect):
  2554. self.active_tool.click_release((self.pos[0], self.pos[1]))
  2555. # if there are selected objects then plot them
  2556. if self.selected:
  2557. self.replot()
  2558. except Exception as e:
  2559. log.warning("AppExcEditor.on_exc_click_release() LMB click --> Error: %s" % str(e))
  2560. raise
  2561. def draw_selection_area_handler(self, start, end, sel_type):
  2562. """
  2563. This function is called whenever we have a left mouse click release and only we have a left mouse click drag,
  2564. be it from left to right or from right to left. The direction of the drag is decided in the "mouse_move"
  2565. event handler.
  2566. Pressing a modifier key (eg. Ctrl, Shift or Alt) will change the behavior of the selection.
  2567. Depending on which tool belongs the selected shapes, the corresponding rows in the Tools Table are selected or
  2568. deselected.
  2569. :param start: mouse position when the selection LMB click was done
  2570. :param end: mouse position when the left mouse button is released
  2571. :param sel_type: if True it's a left to right selection (enclosure), if False it's a 'touch' selection
  2572. :return:
  2573. """
  2574. start_pos = (start[0], start[1])
  2575. end_pos = (end[0], end[1])
  2576. poly_selection = Polygon([start_pos, (end_pos[0], start_pos[1]), end_pos, (start_pos[0], end_pos[1])])
  2577. modifiers = None
  2578. # delete the selection shape that was just drawn, we no longer need it
  2579. self.app.delete_selection_shape()
  2580. # detect if a modifier key was pressed while the left mouse button was released
  2581. self.modifiers = QtWidgets.QApplication.keyboardModifiers()
  2582. if self.modifiers == QtCore.Qt.ShiftModifier:
  2583. modifiers = 'Shift'
  2584. elif self.modifiers == QtCore.Qt.ControlModifier:
  2585. modifiers = 'Control'
  2586. if modifiers == self.app.defaults["global_mselect_key"]:
  2587. for storage in self.storage_dict:
  2588. for obj in self.storage_dict[storage].get_objects():
  2589. if (sel_type is True and poly_selection.contains(obj.geo)) or \
  2590. (sel_type is False and poly_selection.intersects(obj.geo)):
  2591. if obj in self.selected:
  2592. # remove the shape object from the selected shapes storage
  2593. self.selected.remove(obj)
  2594. else:
  2595. # add the shape object to the selected shapes storage
  2596. self.selected.append(obj)
  2597. else:
  2598. # clear the selection shapes storage
  2599. self.selected = []
  2600. # then add to the selection shapes storage the shapes that are included (touched) by the selection rectangle
  2601. for storage in self.storage_dict:
  2602. for obj in self.storage_dict[storage].get_objects():
  2603. if (sel_type is True and poly_selection.contains(obj.geo)) or \
  2604. (sel_type is False and poly_selection.intersects(obj.geo)):
  2605. self.selected.append(obj)
  2606. try:
  2607. self.e_ui.tools_table_exc.cellPressed.disconnect()
  2608. except Exception:
  2609. pass
  2610. # first deselect all rows (tools) in the Tools Table
  2611. self.e_ui.tools_table_exc.clearSelection()
  2612. # and select the rows (tools) in the tool table according to the diameter(s) of the selected shape(s)
  2613. self.e_ui.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
  2614. for storage in self.storage_dict:
  2615. for shape_s in self.selected:
  2616. if shape_s in self.storage_dict[storage].get_objects():
  2617. for key_tool_nr in self.tool2tooldia:
  2618. if self.tool2tooldia[key_tool_nr] == storage:
  2619. row_to_sel = key_tool_nr - 1
  2620. # item = self.e_ui.tools_table_exc.item(row_to_sel, 1)
  2621. # self.e_ui.tools_table_exc.setCurrentItem(item)
  2622. # item.setSelected(True)
  2623. # if the row to be selected is not already in the selected rows then select it
  2624. # otherwise don't do it as it seems that we have a toggle effect
  2625. if row_to_sel not in set(index.row() for index in self.e_ui.tools_table_exc.selectedIndexes()):
  2626. self.e_ui.tools_table_exc.selectRow(row_to_sel)
  2627. self.last_tool_selected = int(key_tool_nr)
  2628. self.e_ui.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
  2629. self.e_ui.tools_table_exc.cellPressed.connect(self.on_row_selected)
  2630. self.replot()
  2631. def on_canvas_move(self, event):
  2632. """
  2633. Called on 'mouse_move' event.
  2634. It updates the mouse cursor if the grid snapping is ON.
  2635. It decide if we have a mouse drag and if it is done with the right mouse click. Then it passes this info to a
  2636. class object which is used in the "mouse_release" handler to decide if to pop-up the context menu or not.
  2637. It draws utility_geometry for the Editor tools.
  2638. Update the position labels from status bar.
  2639. Decide if we have a right to left or a left to right mouse drag with left mouse button and call a function
  2640. that will draw a selection shape on canvas.
  2641. event.pos have canvas screen coordinates
  2642. :param event: Event object dispatched by VisPy SceneCavas
  2643. :return: None
  2644. """
  2645. if self.app.is_legacy is False:
  2646. event_pos = event.pos
  2647. event_is_dragging = event.is_dragging
  2648. right_button = 2
  2649. else:
  2650. event_pos = (event.xdata, event.ydata)
  2651. event_is_dragging = self.app.plotcanvas.is_dragging
  2652. right_button = 3
  2653. pos = self.canvas.translate_coords(event_pos)
  2654. event.xdata, event.ydata = pos[0], pos[1]
  2655. self.x = event.xdata
  2656. self.y = event.ydata
  2657. self.app.ui.popMenu.mouse_is_panning = False
  2658. # if the RMB is clicked and mouse is moving over plot then 'panning_action' is True
  2659. if event.button == right_button and event_is_dragging == 1:
  2660. self.app.ui.popMenu.mouse_is_panning = True
  2661. return
  2662. try:
  2663. x = float(event.xdata)
  2664. y = float(event.ydata)
  2665. except TypeError:
  2666. return
  2667. if self.active_tool is None:
  2668. return
  2669. # ## Snap coordinates
  2670. if self.app.grid_status():
  2671. x, y = self.app.geo_editor.snap(x, y)
  2672. # Update cursor
  2673. self.app.app_cursor.set_data(np.asarray([(x, y)]), symbol='++', edge_color=self.app.cursor_color_3D,
  2674. edge_width=self.app.defaults["global_cursor_width"],
  2675. size=self.app.defaults["global_cursor_size"])
  2676. self.snap_x = x
  2677. self.snap_y = y
  2678. if self.pos is None:
  2679. self.pos = (0, 0)
  2680. self.app.dx = x - self.pos[0]
  2681. self.app.dy = y - self.pos[1]
  2682. # # update the position label in the infobar since the APP mouse event handlers are disconnected
  2683. self.app.ui.position_label.setText("&nbsp;<b>X</b>: %.4f&nbsp;&nbsp; "
  2684. "<b>Y</b>: %.4f&nbsp;" % (x, y))
  2685. # # update the reference position label in the infobar since the APP mouse event handlers are disconnected
  2686. self.app.ui.rel_position_label.setText("<b>Dx</b>: %.4f&nbsp;&nbsp; <b>Dy</b>: "
  2687. "%.4f&nbsp;&nbsp;&nbsp;&nbsp;" % (self.app.dx, self.app.dy))
  2688. units = self.app.defaults["units"].lower()
  2689. self.app.plotcanvas.text_hud.text = \
  2690. 'Dx:\t{:<.4f} [{:s}]\nDy:\t{:<.4f} [{:s}]\n\nX: \t{:<.4f} [{:s}]\nY: \t{:<.4f} [{:s}]'.format(
  2691. self.app.dx, units, self.app.dy, units, x, units, y, units)
  2692. # ## Utility geometry (animated)
  2693. self.update_utility_geometry(data=(x, y))
  2694. # ## Selection area on canvas section # ##
  2695. if event_is_dragging == 1 and event.button == 1:
  2696. # I make an exception for FCDrillAdd and FCDrillArray because clicking and dragging while making regions
  2697. # can create strange issues. Also for FCSlot and FCSlotArray
  2698. if isinstance(self.active_tool, FCDrillAdd) or isinstance(self.active_tool, FCDrillArray) or \
  2699. isinstance(self.active_tool, FCSlot) or isinstance(self.active_tool, FCSlotArray):
  2700. self.app.selection_type = None
  2701. else:
  2702. dx = pos[0] - self.pos[0]
  2703. self.app.delete_selection_shape()
  2704. if dx < 0:
  2705. self.app.draw_moving_selection_shape((self.pos[0], self.pos[1]), (x, y),
  2706. color=self.app.defaults["global_alt_sel_line"],
  2707. face_color=self.app.defaults['global_alt_sel_fill'])
  2708. self.app.selection_type = False
  2709. else:
  2710. self.app.draw_moving_selection_shape((self.pos[0], self.pos[1]), (x, y))
  2711. self.app.selection_type = True
  2712. else:
  2713. self.app.selection_type = None
  2714. # Update cursor
  2715. self.app.app_cursor.set_data(np.asarray([(x, y)]), symbol='++', edge_color=self.app.cursor_color_3D,
  2716. edge_width=self.app.defaults["global_cursor_width"],
  2717. size=self.app.defaults["global_cursor_size"])
  2718. def update_utility_geometry(self, data):
  2719. # ### Utility geometry (animated) ###
  2720. geo = self.active_tool.utility_geometry(data=data)
  2721. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  2722. # Remove any previous utility shape
  2723. self.tool_shape.clear(update=True)
  2724. self.draw_utility_geometry(geo=geo)
  2725. def on_canvas_key_release(self, event):
  2726. self.key = None
  2727. def draw_utility_geometry(self, geo):
  2728. # Add the new utility shape
  2729. try:
  2730. # this case is for the Font Parse
  2731. for el in list(geo.geo):
  2732. if type(el) == MultiPolygon:
  2733. for poly in el:
  2734. self.tool_shape.add(
  2735. shape=poly,
  2736. color=(self.app.defaults["global_draw_color"] + '80'),
  2737. update=False,
  2738. layer=0,
  2739. tolerance=None
  2740. )
  2741. elif type(el) == MultiLineString:
  2742. for linestring in el:
  2743. self.tool_shape.add(
  2744. shape=linestring,
  2745. color=(self.app.defaults["global_draw_color"] + '80'),
  2746. update=False,
  2747. layer=0,
  2748. tolerance=None
  2749. )
  2750. else:
  2751. self.tool_shape.add(
  2752. shape=el,
  2753. color=(self.app.defaults["global_draw_color"] + '80'),
  2754. update=False,
  2755. layer=0,
  2756. tolerance=None
  2757. )
  2758. except TypeError:
  2759. self.tool_shape.add(
  2760. shape=geo.geo, color=(self.app.defaults["global_draw_color"] + '80'),
  2761. update=False, layer=0, tolerance=None)
  2762. self.tool_shape.redraw()
  2763. def replot(self):
  2764. self.plot_all()
  2765. def plot_all(self):
  2766. """
  2767. Plots all shapes in the editor.
  2768. :return: None
  2769. :rtype: None
  2770. """
  2771. self.shapes.clear(update=True)
  2772. for storage in self.storage_dict:
  2773. for shape_plus in self.storage_dict[storage].get_objects():
  2774. if shape_plus.geo is None:
  2775. continue
  2776. if shape_plus in self.selected:
  2777. self.plot_shape(geometry=shape_plus.geo, color=self.app.defaults['global_sel_draw_color'] + 'FF',
  2778. linewidth=2)
  2779. continue
  2780. self.plot_shape(geometry=shape_plus.geo, color=self.app.defaults['global_draw_color'] + 'FF')
  2781. for shape_form in self.utility:
  2782. self.plot_shape(geometry=shape_form.geo, linewidth=1)
  2783. continue
  2784. self.shapes.redraw()
  2785. def plot_shape(self, geometry=None, color='0x000000FF', linewidth=1):
  2786. """
  2787. Plots a geometric object or list of objects without rendering. Plotted objects
  2788. are returned as a list. This allows for efficient/animated rendering.
  2789. :param geometry: Geometry to be plotted (Any Shapely.geom kind or list of such)
  2790. :param color: Shape color
  2791. :param linewidth: Width of lines in # of pixels.
  2792. :return: List of plotted elements.
  2793. """
  2794. plot_elements = []
  2795. if geometry is None:
  2796. geometry = self.active_tool.geometry
  2797. try:
  2798. for geo in geometry:
  2799. plot_elements += self.plot_shape(geometry=geo, color=color, linewidth=linewidth)
  2800. # ## Non-iterable
  2801. except TypeError:
  2802. # ## DrawToolShape
  2803. if isinstance(geometry, DrawToolShape):
  2804. plot_elements += self.plot_shape(geometry=geometry.geo, color=color, linewidth=linewidth)
  2805. # ## Polygon: Descend into exterior and each interior.
  2806. if type(geometry) == Polygon:
  2807. plot_elements += self.plot_shape(geometry=geometry.exterior, color=color, linewidth=linewidth)
  2808. plot_elements += self.plot_shape(geometry=geometry.interiors, color=color, linewidth=linewidth)
  2809. if type(geometry) == LineString or type(geometry) == LinearRing:
  2810. plot_elements.append(self.shapes.add(shape=geometry, color=color, layer=0, tolerance=self.tolerance))
  2811. if type(geometry) == Point:
  2812. pass
  2813. return plot_elements
  2814. def on_shape_complete(self):
  2815. # Add shape
  2816. self.add_shape(self.active_tool.geometry)
  2817. # Remove any utility shapes
  2818. self.delete_utility_geometry()
  2819. self.tool_shape.clear(update=True)
  2820. # Replot and reset tool.
  2821. self.replot()
  2822. # self.active_tool = type(self.active_tool)(self)
  2823. def get_selected(self):
  2824. """
  2825. Returns list of shapes that are selected in the editor.
  2826. :return: List of shapes.
  2827. """
  2828. return self.selected
  2829. def delete_selected(self):
  2830. temp_ref = [s for s in self.selected]
  2831. for shape_sel in temp_ref:
  2832. self.delete_shape(shape_sel)
  2833. self.selected = []
  2834. self.build_ui()
  2835. self.app.inform.emit('[success] %s' % _("Done. Drill(s) deleted."))
  2836. def delete_shape(self, del_shape):
  2837. self.is_modified = True
  2838. if del_shape in self.utility:
  2839. self.utility.remove(del_shape)
  2840. return
  2841. for storage in self.storage_dict:
  2842. # try:
  2843. # self.storage_dict[storage].remove(shape)
  2844. # except:
  2845. # pass
  2846. if del_shape in self.storage_dict[storage].get_objects():
  2847. if isinstance(del_shape.geo, MultiLineString):
  2848. self.storage_dict[storage].remove(del_shape)
  2849. # a hack to make the tool_table display less drills per diameter
  2850. # self.points_edit it's only useful first time when we load the data into the storage
  2851. # but is still used as referecen when building tool_table in self.build_ui()
  2852. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  2853. # deleting self.points_edit elements (doesn't matter who but just the number)
  2854. # solved the display issue.
  2855. del self.points_edit[storage][0]
  2856. else:
  2857. self.storage_dict[storage].remove(del_shape)
  2858. del self.slot_points_edit[storage][0]
  2859. if del_shape in self.selected:
  2860. self.selected.remove(del_shape)
  2861. def delete_utility_geometry(self):
  2862. for_deletion = [util_shape for util_shape in self.utility]
  2863. for util_shape in for_deletion:
  2864. self.delete_shape(util_shape)
  2865. self.tool_shape.clear(update=True)
  2866. self.tool_shape.redraw()
  2867. def on_delete_btn(self):
  2868. self.delete_selected()
  2869. self.replot()
  2870. def select_tool(self, toolname):
  2871. """
  2872. Selects a drawing tool. Impacts the object and appGUI.
  2873. :param toolname: Name of the tool.
  2874. :return: None
  2875. """
  2876. self.tools_exc[toolname]["button"].setChecked(True)
  2877. self.on_tool_select(toolname)
  2878. def set_selected(self, sel_shape):
  2879. # Remove and add to the end.
  2880. if sel_shape in self.selected:
  2881. self.selected.remove(sel_shape)
  2882. self.selected.append(sel_shape)
  2883. def set_unselected(self, unsel_shape):
  2884. if unsel_shape in self.selected:
  2885. self.selected.remove(unsel_shape)
  2886. def on_array_type_combo(self):
  2887. if self.e_ui.array_type_combo.currentIndex() == 0:
  2888. self.e_ui.array_circular_frame.hide()
  2889. self.e_ui.array_linear_frame.show()
  2890. else:
  2891. self.delete_utility_geometry()
  2892. self.e_ui.array_circular_frame.show()
  2893. self.e_ui.array_linear_frame.hide()
  2894. self.app.inform.emit(_("Click on the circular array Center position"))
  2895. def on_slot_array_type_combo(self):
  2896. if self.e_ui.slot_array_type_combo.currentIndex() == 0:
  2897. self.e_ui.slot_array_circular_frame.hide()
  2898. self.e_ui.slot_array_linear_frame.show()
  2899. else:
  2900. self.delete_utility_geometry()
  2901. self.e_ui.slot_array_circular_frame.show()
  2902. self.e_ui.slot_array_linear_frame.hide()
  2903. self.app.inform.emit(_("Click on the circular array Center position"))
  2904. def on_linear_angle_radio(self):
  2905. val = self.e_ui.drill_axis_radio.get_value()
  2906. if val == 'A':
  2907. self.e_ui.linear_angle_spinner.show()
  2908. self.e_ui.linear_angle_label.show()
  2909. else:
  2910. self.e_ui.linear_angle_spinner.hide()
  2911. self.e_ui.linear_angle_label.hide()
  2912. def on_slot_array_linear_angle_radio(self):
  2913. val = self.e_ui.slot_array_axis_radio.get_value()
  2914. if val == 'A':
  2915. self.e_ui.slot_array_linear_angle_spinner.show()
  2916. self.e_ui.slot_array_linear_angle_label.show()
  2917. else:
  2918. self.e_ui.slot_array_linear_angle_spinner.hide()
  2919. self.e_ui.slot_array_linear_angle_label.hide()
  2920. def on_slot_angle_radio(self):
  2921. val = self.e_ui.slot_axis_radio.get_value()
  2922. if val == 'A':
  2923. self.e_ui.slot_angle_spinner.show()
  2924. self.e_ui.slot_angle_label.show()
  2925. else:
  2926. self.e_ui.slot_angle_spinner.hide()
  2927. self.e_ui.slot_angle_label.hide()
  2928. def exc_add_drill(self):
  2929. self.select_tool('drill_add')
  2930. return
  2931. def exc_add_drill_array(self):
  2932. self.select_tool('drill_array')
  2933. return
  2934. def exc_add_slot(self):
  2935. self.select_tool('slot_add')
  2936. return
  2937. def exc_add_slot_array(self):
  2938. self.select_tool('slot_array')
  2939. return
  2940. def exc_resize_drills(self):
  2941. self.select_tool('drill_resize')
  2942. return
  2943. def exc_copy_drills(self):
  2944. self.select_tool('drill_copy')
  2945. return
  2946. def exc_move_drills(self):
  2947. self.select_tool('drill_move')
  2948. return
  2949. def on_slots_conversion(self):
  2950. # selected rows
  2951. selected_rows = set()
  2952. for it in self.e_ui.tools_table_exc.selectedItems():
  2953. selected_rows.add(it.row())
  2954. # convert a Polygon (slot) to a MultiLineString (drill)
  2955. def convert_slot2drill(geo_elem, tool_dia):
  2956. point = geo_elem.centroid
  2957. start_hor_line = ((point.x - (tool_dia / 2)), point.y)
  2958. stop_hor_line = ((point.x + (tool_dia / 2)), point.y)
  2959. start_vert_line = (point.x, (point.y - (tool_dia / 2)))
  2960. stop_vert_line = (point.x, (point.y + (tool_dia / 2)))
  2961. return MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  2962. # temporary new storage: a dist with keys the tool diameter and values Rtree storage
  2963. new_storage_dict = {}
  2964. for row in selected_rows:
  2965. table_tooldia = self.dec_format(float(self.e_ui.tools_table_exc.item(row, 1).text()))
  2966. for dict_dia, geo_dict in self.storage_dict.items():
  2967. if self.dec_format(float(dict_dia)) == table_tooldia:
  2968. storage_elem = AppGeoEditor.make_storage()
  2969. for shape in geo_dict.get_objects():
  2970. if isinstance(shape.geo, MultiLineString):
  2971. # it's a drill just add it as it is to storage
  2972. self.add_exc_shape(shape, storage_elem)
  2973. if isinstance(shape.geo, Polygon):
  2974. # it's a slot, convert drill to slot and then add it to storage
  2975. new_shape = convert_slot2drill(shape.geo, table_tooldia)
  2976. self.add_exc_shape(DrawToolShape(new_shape), storage_elem)
  2977. new_storage_dict[table_tooldia] = storage_elem
  2978. self.storage_dict.update(new_storage_dict)
  2979. self.replot()
  2980. class AppExcEditorUI:
  2981. def __init__(self, app):
  2982. self.app = app
  2983. # Number of decimals used by tools in this class
  2984. self.decimals = self.app.decimals
  2985. # ## Current application units in Upper Case
  2986. self.units = self.app.defaults['units'].upper()
  2987. self.exc_edit_widget = QtWidgets.QWidget()
  2988. # ## Box for custom widgets
  2989. # This gets populated in offspring implementations.
  2990. layout = QtWidgets.QVBoxLayout()
  2991. self.exc_edit_widget.setLayout(layout)
  2992. # add a frame and inside add a vertical box layout. Inside this vbox layout I add all the Drills widgets
  2993. # this way I can hide/show the frame
  2994. self.drills_frame = QtWidgets.QFrame()
  2995. self.drills_frame.setContentsMargins(0, 0, 0, 0)
  2996. layout.addWidget(self.drills_frame)
  2997. self.tools_box = QtWidgets.QVBoxLayout()
  2998. self.tools_box.setContentsMargins(0, 0, 0, 0)
  2999. self.drills_frame.setLayout(self.tools_box)
  3000. # ## Page Title box (spacing between children)
  3001. self.title_box = QtWidgets.QHBoxLayout()
  3002. self.tools_box.addLayout(self.title_box)
  3003. # ## Page Title icon
  3004. pixmap = QtGui.QPixmap(self.app.resource_location + '/flatcam_icon32.png')
  3005. self.icon = QtWidgets.QLabel()
  3006. self.icon.setPixmap(pixmap)
  3007. self.title_box.addWidget(self.icon, stretch=0)
  3008. # ## Title label
  3009. self.title_label = QtWidgets.QLabel("<font size=5><b>%s</b></font>" % _('Excellon Editor'))
  3010. self.title_label.setAlignment(QtCore.Qt.AlignLeft | QtCore.Qt.AlignVCenter)
  3011. self.title_box.addWidget(self.title_label, stretch=1)
  3012. # ## Object name
  3013. self.name_box = QtWidgets.QHBoxLayout()
  3014. self.tools_box.addLayout(self.name_box)
  3015. name_label = QtWidgets.QLabel(_("Name:"))
  3016. self.name_box.addWidget(name_label)
  3017. self.name_entry = FCEntry()
  3018. self.name_box.addWidget(self.name_entry)
  3019. # ### Tools Drills ## ##
  3020. self.tools_table_label = QtWidgets.QLabel("<b>%s</b>" % _('Tools Table'))
  3021. self.tools_table_label.setToolTip(
  3022. _("Tools in this Excellon object\n"
  3023. "when are used for drilling.")
  3024. )
  3025. self.tools_box.addWidget(self.tools_table_label)
  3026. self.tools_table_exc = FCTable()
  3027. # delegate = SpinBoxDelegate(units=self.units)
  3028. # self.e_ui.tools_table_exc.setItemDelegateForColumn(1, delegate)
  3029. self.tools_box.addWidget(self.tools_table_exc)
  3030. self.tools_table_exc.setColumnCount(4)
  3031. self.tools_table_exc.setHorizontalHeaderLabels(['#', _('Diameter'), 'D', 'S'])
  3032. self.tools_table_exc.setSortingEnabled(False)
  3033. self.tools_table_exc.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
  3034. separator_line = QtWidgets.QFrame()
  3035. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  3036. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  3037. self.tools_box.addWidget(separator_line)
  3038. self.convert_slots_btn = FCButton('%s' % _("Convert Slots"))
  3039. self.convert_slots_btn.setToolTip(
  3040. _("Convert the slots in the selected tools to drills.")
  3041. )
  3042. self.tools_box.addWidget(self.convert_slots_btn)
  3043. separator_line = QtWidgets.QFrame()
  3044. separator_line.setFrameShape(QtWidgets.QFrame.HLine)
  3045. separator_line.setFrameShadow(QtWidgets.QFrame.Sunken)
  3046. self.tools_box.addWidget(separator_line)
  3047. # ### Add a new Tool ## ##
  3048. self.addtool_label = QtWidgets.QLabel('<b>%s</b>' % _('Add/Delete Tool'))
  3049. self.addtool_label.setToolTip(
  3050. _("Add/Delete a tool to the tool list\n"
  3051. "for this Excellon object.")
  3052. )
  3053. self.tools_box.addWidget(self.addtool_label)
  3054. grid1 = QtWidgets.QGridLayout()
  3055. self.tools_box.addLayout(grid1)
  3056. grid1.setColumnStretch(0, 0)
  3057. grid1.setColumnStretch(1, 1)
  3058. addtool_entry_lbl = QtWidgets.QLabel('%s:' % _('Tool Dia'))
  3059. addtool_entry_lbl.setToolTip(
  3060. _("Diameter for the new tool")
  3061. )
  3062. hlay = QtWidgets.QHBoxLayout()
  3063. self.addtool_entry = FCDoubleSpinner()
  3064. self.addtool_entry.set_precision(self.decimals)
  3065. self.addtool_entry.set_range(0.0000, 9999.9999)
  3066. hlay.addWidget(self.addtool_entry)
  3067. self.addtool_btn = QtWidgets.QPushButton(_('Add Tool'))
  3068. self.addtool_btn.setToolTip(
  3069. _("Add a new tool to the tool list\n"
  3070. "with the diameter specified above.")
  3071. )
  3072. self.addtool_btn.setFixedWidth(80)
  3073. hlay.addWidget(self.addtool_btn)
  3074. grid1.addWidget(addtool_entry_lbl, 0, 0)
  3075. grid1.addLayout(hlay, 0, 1)
  3076. grid2 = QtWidgets.QGridLayout()
  3077. self.tools_box.addLayout(grid2)
  3078. self.deltool_btn = QtWidgets.QPushButton(_('Delete Tool'))
  3079. self.deltool_btn.setToolTip(
  3080. _("Delete a tool in the tool list\n"
  3081. "by selecting a row in the tool table.")
  3082. )
  3083. grid2.addWidget(self.deltool_btn, 0, 1)
  3084. # add a frame and inside add a vertical box layout. Inside this vbox layout I add all the Drills widgets
  3085. # this way I can hide/show the frame
  3086. self.resize_frame = QtWidgets.QFrame()
  3087. self.resize_frame.setContentsMargins(0, 0, 0, 0)
  3088. self.tools_box.addWidget(self.resize_frame)
  3089. self.resize_box = QtWidgets.QVBoxLayout()
  3090. self.resize_box.setContentsMargins(0, 0, 0, 0)
  3091. self.resize_frame.setLayout(self.resize_box)
  3092. # ### Resize a drill ## ##
  3093. self.emptyresize_label = QtWidgets.QLabel('')
  3094. self.resize_box.addWidget(self.emptyresize_label)
  3095. self.drillresize_label = QtWidgets.QLabel('<b>%s</b>' % _("Resize Drill(s)"))
  3096. self.drillresize_label.setToolTip(
  3097. _("Resize a drill or a selection of drills.")
  3098. )
  3099. self.resize_box.addWidget(self.drillresize_label)
  3100. grid3 = QtWidgets.QGridLayout()
  3101. self.resize_box.addLayout(grid3)
  3102. res_entry_lbl = QtWidgets.QLabel('%s:' % _('Resize Dia'))
  3103. res_entry_lbl.setToolTip(
  3104. _("Diameter to resize to.")
  3105. )
  3106. grid3.addWidget(res_entry_lbl, 0, 0)
  3107. hlay2 = QtWidgets.QHBoxLayout()
  3108. self.resdrill_entry = FCDoubleSpinner()
  3109. self.resdrill_entry.set_precision(self.decimals)
  3110. self.resdrill_entry.set_range(0.0000, 9999.9999)
  3111. hlay2.addWidget(self.resdrill_entry)
  3112. self.resize_btn = QtWidgets.QPushButton(_('Resize'))
  3113. self.resize_btn.setToolTip(
  3114. _("Resize drill(s)")
  3115. )
  3116. self.resize_btn.setFixedWidth(80)
  3117. hlay2.addWidget(self.resize_btn)
  3118. grid3.addLayout(hlay2, 0, 1)
  3119. self.resize_frame.hide()
  3120. # ####################################
  3121. # ### Add DRILL Array ################
  3122. # ####################################
  3123. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  3124. # all the add drill array widgets
  3125. # this way I can hide/show the frame
  3126. self.array_frame = QtWidgets.QFrame()
  3127. self.array_frame.setContentsMargins(0, 0, 0, 0)
  3128. self.tools_box.addWidget(self.array_frame)
  3129. self.array_box = QtWidgets.QVBoxLayout()
  3130. self.array_box.setContentsMargins(0, 0, 0, 0)
  3131. self.array_frame.setLayout(self.array_box)
  3132. self.emptyarray_label = QtWidgets.QLabel('')
  3133. self.array_box.addWidget(self.emptyarray_label)
  3134. self.drill_array_label = QtWidgets.QLabel('<b>%s</b>' % _("Add Drill Array"))
  3135. self.drill_array_label.setToolTip(
  3136. _("Add an array of drills (linear or circular array)")
  3137. )
  3138. self.array_box.addWidget(self.drill_array_label)
  3139. self.array_type_combo = FCComboBox()
  3140. self.array_type_combo.setToolTip(
  3141. _("Select the type of drills array to create.\n"
  3142. "It can be Linear X(Y) or Circular")
  3143. )
  3144. self.array_type_combo.addItem(_("Linear"))
  3145. self.array_type_combo.addItem(_("Circular"))
  3146. self.array_box.addWidget(self.array_type_combo)
  3147. self.array_form = QtWidgets.QFormLayout()
  3148. self.array_box.addLayout(self.array_form)
  3149. # Set the number of drill holes in the drill array
  3150. self.drill_array_size_label = QtWidgets.QLabel('%s:' % _('Nr of drills'))
  3151. self.drill_array_size_label.setToolTip(_("Specify how many drills to be in the array."))
  3152. self.drill_array_size_label.setMinimumWidth(100)
  3153. self.drill_array_size_entry = FCSpinner()
  3154. self.drill_array_size_entry.set_range(1, 9999)
  3155. self.array_form.addRow(self.drill_array_size_label, self.drill_array_size_entry)
  3156. self.array_linear_frame = QtWidgets.QFrame()
  3157. self.array_linear_frame.setContentsMargins(0, 0, 0, 0)
  3158. self.array_box.addWidget(self.array_linear_frame)
  3159. self.linear_box = QtWidgets.QVBoxLayout()
  3160. self.linear_box.setContentsMargins(0, 0, 0, 0)
  3161. self.array_linear_frame.setLayout(self.linear_box)
  3162. self.linear_form = QtWidgets.QFormLayout()
  3163. self.linear_box.addLayout(self.linear_form)
  3164. # Linear Drill Array direction
  3165. self.drill_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  3166. self.drill_axis_label.setToolTip(
  3167. _("Direction on which the linear array is oriented:\n"
  3168. "- 'X' - horizontal axis \n"
  3169. "- 'Y' - vertical axis or \n"
  3170. "- 'Angle' - a custom angle for the array inclination")
  3171. )
  3172. self.drill_axis_label.setMinimumWidth(100)
  3173. self.drill_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  3174. {'label': _('Y'), 'value': 'Y'},
  3175. {'label': _('Angle'), 'value': 'A'}])
  3176. self.linear_form.addRow(self.drill_axis_label, self.drill_axis_radio)
  3177. # Linear Drill Array pitch distance
  3178. self.drill_pitch_label = QtWidgets.QLabel('%s:' % _('Pitch'))
  3179. self.drill_pitch_label.setToolTip(
  3180. _("Pitch = Distance between elements of the array.")
  3181. )
  3182. self.drill_pitch_label.setMinimumWidth(100)
  3183. self.drill_pitch_entry = FCDoubleSpinner()
  3184. self.drill_pitch_entry.set_precision(self.decimals)
  3185. self.drill_pitch_entry.set_range(0.0000, 9999.9999)
  3186. self.linear_form.addRow(self.drill_pitch_label, self.drill_pitch_entry)
  3187. # Linear Drill Array angle
  3188. self.linear_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  3189. self.linear_angle_label.setToolTip(
  3190. _("Angle at which the linear array is placed.\n"
  3191. "The precision is of max 2 decimals.\n"
  3192. "Min value is: -360 degrees.\n"
  3193. "Max value is: 360.00 degrees.")
  3194. )
  3195. self.linear_angle_label.setMinimumWidth(100)
  3196. self.linear_angle_spinner = FCDoubleSpinner()
  3197. self.linear_angle_spinner.set_precision(self.decimals)
  3198. self.linear_angle_spinner.setSingleStep(1.0)
  3199. self.linear_angle_spinner.setRange(-360.00, 360.00)
  3200. self.linear_form.addRow(self.linear_angle_label, self.linear_angle_spinner)
  3201. self.array_circular_frame = QtWidgets.QFrame()
  3202. self.array_circular_frame.setContentsMargins(0, 0, 0, 0)
  3203. self.array_box.addWidget(self.array_circular_frame)
  3204. self.circular_box = QtWidgets.QVBoxLayout()
  3205. self.circular_box.setContentsMargins(0, 0, 0, 0)
  3206. self.array_circular_frame.setLayout(self.circular_box)
  3207. self.drill_direction_label = QtWidgets.QLabel('%s:' % _('Direction'))
  3208. self.drill_direction_label.setToolTip(_("Direction for circular array."
  3209. "Can be CW = clockwise or CCW = counter clockwise."))
  3210. self.drill_direction_label.setMinimumWidth(100)
  3211. self.circular_form = QtWidgets.QFormLayout()
  3212. self.circular_box.addLayout(self.circular_form)
  3213. self.drill_direction_radio = RadioSet([{'label': _('CW'), 'value': 'CW'},
  3214. {'label': _('CCW'), 'value': 'CCW'}])
  3215. self.circular_form.addRow(self.drill_direction_label, self.drill_direction_radio)
  3216. self.drill_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  3217. self.drill_angle_label.setToolTip(_("Angle at which each element in circular array is placed."))
  3218. self.drill_angle_label.setMinimumWidth(100)
  3219. self.drill_angle_entry = FCDoubleSpinner()
  3220. self.drill_angle_entry.set_precision(self.decimals)
  3221. self.drill_angle_entry.setSingleStep(1.0)
  3222. self.drill_angle_entry.setRange(-360.00, 360.00)
  3223. self.circular_form.addRow(self.drill_angle_label, self.drill_angle_entry)
  3224. self.array_circular_frame.hide()
  3225. self.linear_angle_spinner.hide()
  3226. self.linear_angle_label.hide()
  3227. self.array_frame.hide()
  3228. # ######################################################
  3229. # ##### ADDING SLOTS ###################################
  3230. # ######################################################
  3231. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  3232. # all the add slot widgets
  3233. # this way I can hide/show the frame
  3234. self.slot_frame = QtWidgets.QFrame()
  3235. self.slot_frame.setContentsMargins(0, 0, 0, 0)
  3236. self.tools_box.addWidget(self.slot_frame)
  3237. self.slot_box = QtWidgets.QVBoxLayout()
  3238. self.slot_box.setContentsMargins(0, 0, 0, 0)
  3239. self.slot_frame.setLayout(self.slot_box)
  3240. self.emptyarray_label = QtWidgets.QLabel('')
  3241. self.slot_box.addWidget(self.emptyarray_label)
  3242. self.slot_label = QtWidgets.QLabel('<b>%s</b>' % _("Slot Parameters"))
  3243. self.slot_label.setToolTip(
  3244. _("Parameters for adding a slot (hole with oval shape)\n"
  3245. "either single or as an part of an array.")
  3246. )
  3247. self.slot_box.addWidget(self.slot_label)
  3248. self.slot_form = QtWidgets.QFormLayout()
  3249. self.slot_box.addLayout(self.slot_form)
  3250. # Slot length
  3251. self.slot_length_label = QtWidgets.QLabel('%s:' % _('Length'))
  3252. self.slot_length_label.setToolTip(
  3253. _("Length = The length of the slot.")
  3254. )
  3255. self.slot_length_label.setMinimumWidth(100)
  3256. self.slot_length_entry = FCDoubleSpinner()
  3257. self.slot_length_entry.set_precision(self.decimals)
  3258. self.slot_length_entry.setSingleStep(0.1)
  3259. self.slot_length_entry.setRange(0.0000, 9999.9999)
  3260. self.slot_form.addRow(self.slot_length_label, self.slot_length_entry)
  3261. # Slot direction
  3262. self.slot_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  3263. self.slot_axis_label.setToolTip(
  3264. _("Direction on which the slot is oriented:\n"
  3265. "- 'X' - horizontal axis \n"
  3266. "- 'Y' - vertical axis or \n"
  3267. "- 'Angle' - a custom angle for the slot inclination")
  3268. )
  3269. self.slot_axis_label.setMinimumWidth(100)
  3270. self.slot_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  3271. {'label': _('Y'), 'value': 'Y'},
  3272. {'label': _('Angle'), 'value': 'A'}])
  3273. self.slot_form.addRow(self.slot_axis_label, self.slot_axis_radio)
  3274. # Slot custom angle
  3275. self.slot_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  3276. self.slot_angle_label.setToolTip(
  3277. _("Angle at which the slot is placed.\n"
  3278. "The precision is of max 2 decimals.\n"
  3279. "Min value is: -360 degrees.\n"
  3280. "Max value is: 360.00 degrees.")
  3281. )
  3282. self.slot_angle_label.setMinimumWidth(100)
  3283. self.slot_angle_spinner = FCDoubleSpinner()
  3284. self.slot_angle_spinner.set_precision(self.decimals)
  3285. self.slot_angle_spinner.setWrapping(True)
  3286. self.slot_angle_spinner.setRange(-360.00, 360.00)
  3287. self.slot_angle_spinner.setSingleStep(1.0)
  3288. self.slot_form.addRow(self.slot_angle_label, self.slot_angle_spinner)
  3289. self.slot_frame.hide()
  3290. # ######################################################
  3291. # ##### ADDING SLOT ARRAY #############################
  3292. # ######################################################
  3293. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  3294. # all the add slot widgets
  3295. # this way I can hide/show the frame
  3296. self.slot_array_frame = QtWidgets.QFrame()
  3297. self.slot_array_frame.setContentsMargins(0, 0, 0, 0)
  3298. self.tools_box.addWidget(self.slot_array_frame)
  3299. self.slot_array_box = QtWidgets.QVBoxLayout()
  3300. self.slot_array_box.setContentsMargins(0, 0, 0, 0)
  3301. self.slot_array_frame.setLayout(self.slot_array_box)
  3302. self.emptyarray_label = QtWidgets.QLabel('')
  3303. self.slot_array_box.addWidget(self.emptyarray_label)
  3304. self.slot_array_label = QtWidgets.QLabel('<b>%s</b>' % _("Slot Array Parameters"))
  3305. self.slot_array_label.setToolTip(
  3306. _("Parameters for the array of slots (linear or circular array)")
  3307. )
  3308. self.slot_array_box.addWidget(self.slot_array_label)
  3309. self.l_form = QtWidgets.QFormLayout()
  3310. self.slot_array_box.addLayout(self.l_form)
  3311. self.slot_array_type_combo = FCComboBox()
  3312. self.slot_array_type_combo.setToolTip(
  3313. _("Select the type of slot array to create.\n"
  3314. "It can be Linear X(Y) or Circular")
  3315. )
  3316. self.slot_array_type_combo.addItem(_("Linear"))
  3317. self.slot_array_type_combo.addItem(_("Circular"))
  3318. self.slot_array_box.addWidget(self.slot_array_type_combo)
  3319. self.slot_array_form = QtWidgets.QFormLayout()
  3320. self.slot_array_box.addLayout(self.slot_array_form)
  3321. # Set the number of slot holes in the slot array
  3322. self.slot_array_size_label = QtWidgets.QLabel('%s:' % _('Nr of slots'))
  3323. self.slot_array_size_label.setToolTip(_("Specify how many slots to be in the array."))
  3324. self.slot_array_size_label.setMinimumWidth(100)
  3325. self.slot_array_size_entry = FCSpinner()
  3326. self.slot_array_size_entry.set_range(0, 9999)
  3327. self.slot_array_form.addRow(self.slot_array_size_label, self.slot_array_size_entry)
  3328. self.slot_array_linear_frame = QtWidgets.QFrame()
  3329. self.slot_array_linear_frame.setContentsMargins(0, 0, 0, 0)
  3330. self.slot_array_box.addWidget(self.slot_array_linear_frame)
  3331. self.slot_array_linear_box = QtWidgets.QVBoxLayout()
  3332. self.slot_array_linear_box.setContentsMargins(0, 0, 0, 0)
  3333. self.slot_array_linear_frame.setLayout(self.slot_array_linear_box)
  3334. self.slot_array_linear_form = QtWidgets.QFormLayout()
  3335. self.slot_array_linear_box.addLayout(self.slot_array_linear_form)
  3336. # Linear Slot Array direction
  3337. self.slot_array_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  3338. self.slot_array_axis_label.setToolTip(
  3339. _("Direction on which the linear array is oriented:\n"
  3340. "- 'X' - horizontal axis \n"
  3341. "- 'Y' - vertical axis or \n"
  3342. "- 'Angle' - a custom angle for the array inclination")
  3343. )
  3344. self.slot_array_axis_label.setMinimumWidth(100)
  3345. self.slot_array_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  3346. {'label': _('Y'), 'value': 'Y'},
  3347. {'label': _('Angle'), 'value': 'A'}])
  3348. self.slot_array_linear_form.addRow(self.slot_array_axis_label, self.slot_array_axis_radio)
  3349. # Linear Slot Array pitch distance
  3350. self.slot_array_pitch_label = QtWidgets.QLabel('%s:' % _('Pitch'))
  3351. self.slot_array_pitch_label.setToolTip(
  3352. _("Pitch = Distance between elements of the array.")
  3353. )
  3354. self.slot_array_pitch_label.setMinimumWidth(100)
  3355. self.slot_array_pitch_entry = FCDoubleSpinner()
  3356. self.slot_array_pitch_entry.set_precision(self.decimals)
  3357. self.slot_array_pitch_entry.setSingleStep(0.1)
  3358. self.slot_array_pitch_entry.setRange(0.0000, 9999.9999)
  3359. self.slot_array_linear_form.addRow(self.slot_array_pitch_label, self.slot_array_pitch_entry)
  3360. # Linear Slot Array angle
  3361. self.slot_array_linear_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  3362. self.slot_array_linear_angle_label.setToolTip(
  3363. _("Angle at which the linear array is placed.\n"
  3364. "The precision is of max 2 decimals.\n"
  3365. "Min value is: -360 degrees.\n"
  3366. "Max value is: 360.00 degrees.")
  3367. )
  3368. self.slot_array_linear_angle_label.setMinimumWidth(100)
  3369. self.slot_array_linear_angle_spinner = FCDoubleSpinner()
  3370. self.slot_array_linear_angle_spinner.set_precision(self.decimals)
  3371. self.slot_array_linear_angle_spinner.setSingleStep(1.0)
  3372. self.slot_array_linear_angle_spinner.setRange(-360.00, 360.00)
  3373. self.slot_array_linear_form.addRow(self.slot_array_linear_angle_label, self.slot_array_linear_angle_spinner)
  3374. self.slot_array_circular_frame = QtWidgets.QFrame()
  3375. self.slot_array_circular_frame.setContentsMargins(0, 0, 0, 0)
  3376. self.slot_array_box.addWidget(self.slot_array_circular_frame)
  3377. self.slot_array_circular_box = QtWidgets.QVBoxLayout()
  3378. self.slot_array_circular_box.setContentsMargins(0, 0, 0, 0)
  3379. self.slot_array_circular_frame.setLayout(self.slot_array_circular_box)
  3380. self.slot_array_direction_label = QtWidgets.QLabel('%s:' % _('Direction'))
  3381. self.slot_array_direction_label.setToolTip(_("Direction for circular array."
  3382. "Can be CW = clockwise or CCW = counter clockwise."))
  3383. self.slot_array_direction_label.setMinimumWidth(100)
  3384. self.slot_array_circular_form = QtWidgets.QFormLayout()
  3385. self.slot_array_circular_box.addLayout(self.slot_array_circular_form)
  3386. self.slot_array_direction_radio = RadioSet([{'label': _('CW'), 'value': 'CW'},
  3387. {'label': _('CCW'), 'value': 'CCW'}])
  3388. self.slot_array_circular_form.addRow(self.slot_array_direction_label, self.slot_array_direction_radio)
  3389. self.slot_array_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  3390. self.slot_array_angle_label.setToolTip(_("Angle at which each element in circular array is placed."))
  3391. self.slot_array_angle_label.setMinimumWidth(100)
  3392. self.slot_array_angle_entry = FCDoubleSpinner()
  3393. self.slot_array_angle_entry.set_precision(self.decimals)
  3394. self.slot_array_angle_entry.setSingleStep(1)
  3395. self.slot_array_angle_entry.setRange(-360.00, 360.00)
  3396. self.slot_array_circular_form.addRow(self.slot_array_angle_label, self.slot_array_angle_entry)
  3397. self.slot_array_linear_angle_spinner.hide()
  3398. self.slot_array_linear_angle_label.hide()
  3399. self.slot_array_frame.hide()
  3400. self.tools_box.addStretch()
  3401. layout.addStretch()
  3402. # Editor
  3403. self.exit_editor_button = QtWidgets.QPushButton(_('Exit Editor'))
  3404. self.exit_editor_button.setIcon(QtGui.QIcon(self.app.resource_location + '/power16.png'))
  3405. self.exit_editor_button.setToolTip(
  3406. _("Exit from Editor.")
  3407. )
  3408. self.exit_editor_button.setStyleSheet("""
  3409. QPushButton
  3410. {
  3411. font-weight: bold;
  3412. }
  3413. """)
  3414. layout.addWidget(self.exit_editor_button)
  3415. # ############################ FINSIHED GUI ###################################
  3416. # #############################################################################
  3417. def confirmation_message(self, accepted, minval, maxval):
  3418. if accepted is False:
  3419. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%.*f, %.*f]' % (_("Edited value is out of range"),
  3420. self.decimals,
  3421. minval,
  3422. self.decimals,
  3423. maxval), False)
  3424. else:
  3425. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  3426. def confirmation_message_int(self, accepted, minval, maxval):
  3427. if accepted is False:
  3428. self.app.inform[str, bool].emit('[WARNING_NOTCL] %s: [%d, %d]' %
  3429. (_("Edited value is out of range"), minval, maxval), False)
  3430. else:
  3431. self.app.inform[str, bool].emit('[success] %s' % _("Edited value is within limits."), False)
  3432. def get_shapely_list_bounds(geometry_list):
  3433. xmin = np.Inf
  3434. ymin = np.Inf
  3435. xmax = -np.Inf
  3436. ymax = -np.Inf
  3437. for gs in geometry_list:
  3438. try:
  3439. gxmin, gymin, gxmax, gymax = gs.bounds
  3440. xmin = min([xmin, gxmin])
  3441. ymin = min([ymin, gymin])
  3442. xmax = max([xmax, gxmax])
  3443. ymax = max([ymax, gymax])
  3444. except Exception as e:
  3445. log.warning("DEVELOPMENT: Tried to get bounds of empty geometry. --> %s" % str(e))
  3446. return [xmin, ymin, xmax, ymax]
  3447. # EOF