|
__init__(self)
Lazily set name from class name styled with underscores (class
ComponentBar -> name component_bar. |
source code
|
|
|
|
|
clean(self)
Perform some cleanups and save the Component config back to
application's config. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
update(self)
Refresh completely the rendering of the associated Controller. |
source code
|
|
|
|
|
|
|
attribute_set(self,
origin,
key,
old_value,
new_value)
Called when an attribute of the controller to which it is
connected changes. |
source code
|
|
|
_delete_bound_attributes(self,
controller_attribute)
Delete view's attributes bound to controller_attribute . |
source code
|
|
|
_update_bound_attributes(self,
controller_attribute)
Update (create or delete) view's attribute bound to controller_attribute . |
source code
|
|
|
_update_bound_view(self,
attribute,
controller)
Update (create or delete) a child view stored as attribute which is connected to controller. |
source code
|
|
|
_create_child_view(self,
attribute,
path)
Create a View of type path and make it a child of self stored as an
instance variable named after the content of attribute . |
source code
|
|
|
|
Inherited from core.component.Component :
load_config ,
save_config
Inherited from extern.log.log.Loggable :
debug ,
doLog ,
error ,
info ,
log ,
logFunction ,
logObjectName ,
warning ,
warningFailure
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|