flatcam/tclCommands/TclCommandGetNames.py
Marius Stanciu 2eecb20e95 - remade file names in the app
- fixed the issue with factory_defaults being saved every time the app start
- fixed the preferences not being saved to a file when the Save button is pressed in Edit -> Preferences
- fixed and updated the Transform Tools in the Editors
2020-06-03 20:35:59 +03:00

52 lines
1.4 KiB
Python

from tclCommands.TclCommand import TclCommand
import collections
class TclCommandGetNames(TclCommand):
"""
Tcl shell command to set an object as active in the appGUI.
example:
"""
# List of all command aliases, to be able use old names for backward compatibility (add_poly, add_polygon)
aliases = ['get_names']
description = '%s %s' % ("--", "Return to TCL the list of the project objects names "
"as a string with names separated by the '\\n' char.")
# Dictionary of types from Tcl command, needs to be ordered
arg_names = collections.OrderedDict([
])
# Dictionary of types from Tcl command, needs to be ordered , this is for options like -optionname value
option_types = collections.OrderedDict([
])
# array of mandatory options for current Tcl command: required = {'name','outname'}
required = []
# structured help for current command, args needs to be ordered
help = {
'main': 'Lists the names of objects in the project. '
'It returns a string with names separated by "\\n" character',
'args': collections.OrderedDict([
]),
'examples': ['get_names']
}
def execute(self, args, unnamed_args):
"""
:param args:
:param unnamed_args:
:return:
"""
return '\n'.join(self.app.collection.get_names())