Mercurial > libervia-backend
comparison frontends/sat_bridge_frontend/DBus.py @ 105:d2630fba8dfd
params to XMLUI tools
- xml_tools: new paramsXml2xmlUI method, for conversion from params xml to User Interface XML
- xml_tools: new addButton method
- bridge: new method getParamsUI
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 23 Jun 2010 17:26:21 +0800 |
parents | 783e9d6980ec |
children | ded2431cea5a |
comparison
equal
deleted
inserted
replaced
104:5458ac1380cc | 105:d2630fba8dfd |
---|---|
83 return self.db_comm_iface.setParam(name, value, category, profile_key) | 83 return self.db_comm_iface.setParam(name, value, category, profile_key) |
84 | 84 |
85 def getParamA(self, name, category, profile_key='@DEFAULT@'): | 85 def getParamA(self, name, category, profile_key='@DEFAULT@'): |
86 return self.db_comm_iface.getParamA(name, category, profile_key) | 86 return self.db_comm_iface.getParamA(name, category, profile_key) |
87 | 87 |
88 def getParamsUI(self, profile_key='@DEFAULT@'): | |
89 return self.db_comm_iface.getParamsUI(profile_key) | |
90 | |
88 def getParams(self, profile_key='@DEFAULT@'): | 91 def getParams(self, profile_key='@DEFAULT@'): |
89 return self.db_comm_iface.getParams(profile_key) | 92 return self.db_comm_iface.getParams(profile_key) |
90 | 93 |
91 def getParamsForCategory(self, category, profile_key='@DEFAULT@'): | 94 def getParamsForCategory(self, category, profile_key='@DEFAULT@'): |
92 return self.db_comm_iface.getParamsForCategory(category, profile_key) | 95 return self.db_comm_iface.getParamsForCategory(category, profile_key) |