diff --git a/BuiltInSearchResults.py b/BuiltInSearchResults.py index f75f39e..8f3ebf0 100644 --- a/BuiltInSearchResults.py +++ b/BuiltInSearchResults.py @@ -38,3 +38,6 @@ SearchResults.registerResultHandler('documentObject', SearchResults.registerResultHandler('param', action = lambda nfo : __import__('ResultsPreferences').paramAction(nfo), toolTip = lambda nfo, setParent: __import__('ResultsPreferences').paramToolTip(nfo, setParent)) +SearchResults.registerResultHandler('paramGroup', + action = lambda nfo : __import__('ResultsPreferences').paramGroupAction(nfo), + toolTip = lambda nfo, setParent: __import__('ResultsPreferences').paramGroupToolTip(nfo, setParent)) diff --git a/ResultsPreferences.py b/ResultsPreferences.py index 063087b..ea9b4f1 100644 --- a/ResultsPreferences.py +++ b/ResultsPreferences.py @@ -6,57 +6,70 @@ import Serialize genericToolIcon = QtGui.QIcon(QtGui.QIcon(os.path.dirname(__file__) + '/Tango-Tools-spanner-hammer.svg')) +def getParam(grpPath, type_, name): + return { + 'icon': genericToolIcon, + 'text': name, + 'toolTip': '', + 'action': {'handler': 'param', 'path': grpPath, 'type': type_, 'name': name}, + 'subitems': [] + } + +def getParamGroup(grpPath): + try: + grp = App.ParamGet(grpPath) + except: + return [] + contents = grp.GetContents() + if contents is not None: + return [getParam(grpPath, type_, name) for (type_, name, value) in contents] + else: + return [] + def getParamGroups(nameInConfig, nameInPath): userParameterPath = App.ConfigGet(nameInConfig) from lxml import etree xml = etree.parse(userParameterPath).getroot() xml.find('FCParamGroup[@Name="Root"]') root = xml.find('FCParamGroup[@Name="Root"]') - def recur(atRoot, path, tree): - if not atRoot: - yield path - for child in tree.getchildren(): - if child.tag == 'FCParamGroup': - for descendant in recur(False, path + (':' if atRoot else '/') + child.attrib['Name'], child): - yield descendant - return recur(True, nameInPath, root) - -def getParams(nameInConfig, nameInPath): - for grpPath in getParamGroups(nameInConfig, nameInPath): - grp = App.ParamGet(grpPath) - contents = grp.GetContents() - if contents is not None: - for (type_, name, value) in contents: - yield (grpPath, type_, name) + def recur(atRoot, path, name, tree): + params = [] if atRoot else getParamGroup(path) + subgroups = [recur(False, path + (':' if atRoot else '/') + child.attrib['Name'], child.attrib['Name'], child) for child in tree.getchildren() if child.tag == 'FCParamGroup'] + return { + 'icon': QtGui.QIcon(':/icons/Group.svg'), + 'text': name, + 'toolTip': '', + 'action': { 'handler': 'paramGroup', 'path': path, 'name': name }, + 'subitems': params + subgroups + } + return recur(True, nameInPath, nameInPath, root) def getAllParams(): - def getParam(p): - return { - 'icon': genericToolIcon, - 'text': p[0] + '/' + p[2], - 'toolTip': '', - 'action': {'handler': 'param', 'path': p[0], 'type': p[1], 'name': p[2]}, - 'subitems': [] - } - return [getParam(p) for p in getParams('UserParameter', 'User parameter')] + return [getParamGroups('UserParameter', 'User parameter')] -getAllParams() +def paramGroupAction(nfo): + print(repr(nfo)) def paramAction(nfo): - import RefreshTools - RefreshTools.refreshToolsAction() + print(repr(nfo)) + +getters = { + 'Boolean' : 'GetBool', + 'Float' : 'GetFloat', + 'Integer' : 'GetInt', + 'String' : 'GetString', + 'Unsigned Long': 'GetUnsigned', +} + +def paramGroupToolTip(nfo, setParent): + path = nfo['action']['path'] + name = nfo['action']['name'] + return '
App.ParamGet(' + repr(path) + ')