Table of Contents
A MVC View
__init__ ( model, controller=None )
A view must be told what it's model is, and may be told what it's controller is, but can also look up it's controller if none specified.
controllerFactory ()
Hook for subclasses to customize the controller that is associated with the model associated with this view.
Default behavior: Look up a component that implements IController for the self.model instance.
modelChanged ( changed )
Dispatch changed messages to any update_* methods which may have been defined, then pass the update notification on to the controller.
setController ( controller )
Set the controller that this view is related to.