Package muntjac :: Package event :: Module field_events :: Class IBlurNotifier
[hide private]
[frames] | no frames]

Class IBlurNotifier

source code

object --+
         |
        IBlurNotifier

The interface for adding and removing BlurEvent listeners. By implementing this interface a class explicitly announces that it will generate a BlurEvent when it loses keyboard focus.


See Also:
IBlurListener, BlurEvent
Instance Methods [hide private]
 
addListener(self, listener, iface=None)
Adds a IBlurListener to the Component which gets fired when a Field loses keyboard focus.
source code
 
addCallback(self, callback, eventType=None, *args) source code
 
removeListener(self, listener, iface=None)
Removes a IBlurListener from the Component.
source code
 
removeCallback(self, callback, eventType=None) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

addListener(self, listener, iface=None)

source code 

Adds a IBlurListener to the Component which gets fired when a Field loses keyboard focus.

See Also: IBlurListener

removeListener(self, listener, iface=None)

source code 

Removes a IBlurListener from the Component.

See Also: IBlurListener