Placeholder action for params, hierarchy of params
This commit is contained in:
parent
f907ad3950
commit
350fe5293b
|
@ -38,3 +38,6 @@ SearchResults.registerResultHandler('documentObject',
|
||||||
SearchResults.registerResultHandler('param',
|
SearchResults.registerResultHandler('param',
|
||||||
action = lambda nfo : __import__('ResultsPreferences').paramAction(nfo),
|
action = lambda nfo : __import__('ResultsPreferences').paramAction(nfo),
|
||||||
toolTip = lambda nfo, setParent: __import__('ResultsPreferences').paramToolTip(nfo, setParent))
|
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))
|
||||||
|
|
|
@ -6,57 +6,70 @@ import Serialize
|
||||||
|
|
||||||
genericToolIcon = QtGui.QIcon(QtGui.QIcon(os.path.dirname(__file__) + '/Tango-Tools-spanner-hammer.svg'))
|
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):
|
def getParamGroups(nameInConfig, nameInPath):
|
||||||
userParameterPath = App.ConfigGet(nameInConfig)
|
userParameterPath = App.ConfigGet(nameInConfig)
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
xml = etree.parse(userParameterPath).getroot()
|
xml = etree.parse(userParameterPath).getroot()
|
||||||
xml.find('FCParamGroup[@Name="Root"]')
|
xml.find('FCParamGroup[@Name="Root"]')
|
||||||
root = xml.find('FCParamGroup[@Name="Root"]')
|
root = xml.find('FCParamGroup[@Name="Root"]')
|
||||||
def recur(atRoot, path, tree):
|
def recur(atRoot, path, name, tree):
|
||||||
if not atRoot:
|
params = [] if atRoot else getParamGroup(path)
|
||||||
yield path
|
subgroups = [recur(False, path + (':' if atRoot else '/') + child.attrib['Name'], child.attrib['Name'], child) for child in tree.getchildren() if child.tag == 'FCParamGroup']
|
||||||
for child in tree.getchildren():
|
return {
|
||||||
if child.tag == 'FCParamGroup':
|
'icon': QtGui.QIcon(':/icons/Group.svg'),
|
||||||
for descendant in recur(False, path + (':' if atRoot else '/') + child.attrib['Name'], child):
|
'text': name,
|
||||||
yield descendant
|
'toolTip': '',
|
||||||
return recur(True, nameInPath, root)
|
'action': { 'handler': 'paramGroup', 'path': path, 'name': name },
|
||||||
|
'subitems': params + subgroups
|
||||||
def getParams(nameInConfig, nameInPath):
|
}
|
||||||
for grpPath in getParamGroups(nameInConfig, nameInPath):
|
return recur(True, nameInPath, nameInPath, root)
|
||||||
grp = App.ParamGet(grpPath)
|
|
||||||
contents = grp.GetContents()
|
|
||||||
if contents is not None:
|
|
||||||
for (type_, name, value) in contents:
|
|
||||||
yield (grpPath, type_, name)
|
|
||||||
|
|
||||||
def getAllParams():
|
def getAllParams():
|
||||||
def getParam(p):
|
return [getParamGroups('UserParameter', 'User parameter')]
|
||||||
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')]
|
|
||||||
|
|
||||||
getAllParams()
|
def paramGroupAction(nfo):
|
||||||
|
print(repr(nfo))
|
||||||
|
|
||||||
def paramAction(nfo):
|
def paramAction(nfo):
|
||||||
import RefreshTools
|
print(repr(nfo))
|
||||||
RefreshTools.refreshToolsAction()
|
|
||||||
|
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 '<h1>' + name + '</h1><p><code>App.ParamGet(' + repr(path) + ')</code></p'
|
||||||
|
|
||||||
def paramToolTip(nfo, setParent):
|
def paramToolTip(nfo, setParent):
|
||||||
path = nfo['action']['path']
|
path = nfo['action']['path']
|
||||||
type_ = nfo['action']['type']
|
type_ = nfo['action']['type']
|
||||||
name = nfo['action']['name']
|
name = nfo['action']['name']
|
||||||
getters = {
|
|
||||||
'Boolean' : 'GetBool',
|
|
||||||
'Float' : 'GetFloat',
|
|
||||||
'Integer' : 'GetInt',
|
|
||||||
'String' : 'GetString',
|
|
||||||
'Unsigned Long': 'GetUnsigned',
|
|
||||||
}
|
|
||||||
try:
|
try:
|
||||||
value = getattr(App.ParamGet(path), getters[type_])(name)
|
value = getattr(App.ParamGet(path), getters[type_])(name)
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user