Manager for all categories of settings.
Do not construct directly; call InitSettings() and use global
SettingsMgr.
|
|
__init__(self,
gdir,
udir)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
saveAll(self)
Saves the active settings in all categories. |
source code
|
|
|
|
|
|
|
listNames(self,
cat)
Returns a list of available preset names for a named category. |
source code
|
|
|
|
save(self,
props,
cat,
name)
Saves qubx.tree.Node props as a named preset in a category. |
source code
|
|
|
|
load(self,
cat,
name)
Returns a named preset in a category as a qubx.tree.Node. |
source code
|
|
|
|
rename(self,
cat,
old,
new)
Changes the name of a preset in a category. |
source code
|
|
|
|
delete(self,
cat,
name)
Removes a named preset from a category. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|