New TCL Command OpenFolder added

This commit is contained in:
Robert Niemöller 2019-08-12 21:51:50 +02:00
parent dc61e6fede
commit 89410b0740
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,48 @@
from tclCommands.TclCommand import *
from PyQt5.QtWidgets import QFileDialog
class TclCommandOpenFolder(TclCommand):
"""
Tcl shell command to get open a folder browser dialog and return the result
example:
open_folder
"""
# List of all command aliases, to be able use old names for backward compatibility (add_poly, add_polygon)
aliases = ['open_folder']
# 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([
('dir', str)
])
# array of mandatory options for current Tcl command: required = {'name','outname'}
required = []
# structured help for current command, args needs to be ordered
help = {
'main': "Opens a dialog to browse for a folder",
'args': collections.OrderedDict([
('dir', 'Initial directory to open')
]),
'examples': ['open_folder']
}
def execute(self, args, unnamed_args):
"""
execute current TCL shell command
:param args: array of known named arguments and options
:param unnamed_args: array of other values which were passed into command
without -somename and we do not have them in known arg_names
:return: None or exception
"""
if "dir" in args:
return QFileDialog.getExistingDirectory(dir=args['dir'])
else:
return QFileDialog.getExistingDirectory()

View File

@ -37,6 +37,7 @@ import tclCommands.TclCommandOpenExcellon
import tclCommands.TclCommandOpenGCode
import tclCommands.TclCommandOpenGerber
import tclCommands.TclCommandOpenProject
import tclCommands.TclCommandOpenFolder
import tclCommands.TclCommandOptions
import tclCommands.TclCommandPaint
import tclCommands.TclCommandPanelize