Module fullscreenwrapper2 :: Class click_EventHandler
[hide private]
[frames] | no frames]

Class click_EventHandler

source code

  object --+    
           |    
EventHandler --+
               |
              click_EventHandler

predefined click event handler for use with Views

This is the event handler to typically associate with TextView, Button, ImageView etc. You only need to pass the view to link the click event to & the handler function & rest of event handler initialization is handled automatically

Instance Methods [hide private]
 
__init__(self, view, handler_function=None)
predefined click event handler for use with Views
source code

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

    Inherited from EventHandler
 
__str__(self)
convenience function for debugging
source code
 
match_event_data(self, event_data)
Provides a matching function to compare event handler vs.
source code
Class Variables [hide private]
  EVENT_NAME = 'click'
  COMPARE_ATTRIBUTE = 'id'
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, view, handler_function=None)
(Constructor)

source code 

predefined click event handler for use with Views

This is the event handler to typically associate with TextView, Button, ImageView etc. You only need to pass the view to link the click event to & the handler function & rest of event handler initialization is handled automatically

Overrides: object.__init__