The EditableOptions can be inherited from to allow objects to export
editable options for editing them with the OptionsEditor-class. NOTE:
This could use some improvement and is very poorly coded :) ...
|
|
|
add_option(self,
option,
callback=None,
realtime=True)
Add an editable option to this object. |
source code
|
|
|
add_options_group(self,
name,
group_info)
Add a new options-group to this Options-object |
source code
|
|
|
disable_option(self,
name)
Disable the inputs for a certain Option. |
source code
|
|
|
enable_option(self,
name)
Enable the inputs for a certain Option. |
source code
|
|
|
export_options_as_list(self)
Returns all editable options within a list (without groups) as
key/value tuples. |
source code
|
|
|
callback_value_changed(self,
sender,
option)
Called when a widget has updated and this needs calling. |
source code
|
|
|
|
|
remove_option(self,
name)
Remove an option from this Options. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|