- fixed the Tcl Commands: new_geometry, new_gerber and new_excellon to create correct objects. New Geometry object created with the new_geometry Tcl command accept now the usage of add_circle/polygon/polyline/rectangle Tcl commands

- updated the autocompleter list for the Tcl commands with missing Tcl commands names
- added three new Tcl Commands: add_aperture (adds an aperture to a Gerber object), add_drill and add_slot (add a drill/slot to an Excellon object)
This commit is contained in:
Marius Stanciu
2021-01-03 19:58:46 +02:00
committed by Marius
parent bc8b2e3b3a
commit f9b3cb0794
13 changed files with 438 additions and 52 deletions

View File

@@ -264,17 +264,17 @@ class TclCommand(object):
raise unknown_exception
def raise_tcl_error(self, text):
"""
this method pass exception from python into TCL as error, so we get stacktrace and reason
:param text: text of error
:return: raise exception
"""
# because of signaling we cannot call error to TCL from here but when task
# is finished also non-signaled are handled here to better exception
# handling and displayed after command is finished
raise self.app.shell.TclErrorException(text)
# def raise_tcl_error(self, text):
# """
# this method pass exception from python into TCL as error, so we get stacktrace and reason
# :param text: text of error
# :return: raise exception
# """
#
# # because of signaling we cannot call error to TCL from here but when task
# # is finished also non-signaled are handled here to better exception
# # handling and displayed after command is finished
# raise self.app.shell.TclErrorException(text)
def execute_wrapper(self, *args):
"""
@@ -310,7 +310,7 @@ class TclCommand(object):
:return: None, output text or exception
"""
raise NotImplementedError("Please Implement this method")
return "Not Implemented Error -> Incorrect call."
class TclCommandSignaled(TclCommand):
@@ -330,7 +330,7 @@ class TclCommandSignaled(TclCommand):
@abc.abstractmethod
def execute(self, args, unnamed_args):
raise NotImplementedError("Please Implement this method")
return "Not Implemented Error -> Incorrect call."
output = None