Package dogtail :: Module procedural :: Class Select
[hide private]
[frames] | no frames]

Class Select

source code

object --+            
         |            
 FocusBase --+        
             |        
   FocusWidget --+    
                 |    
            Action --+
                     |
                    Select

Aids in selecting and deselecting widgets, i.e. page tabs

Instance Methods [hide private]
 
__init__(self, action)
action must be 'select' or 'deselect'.
source code
 
__call__(self, name='', roleName='', description='', delay=1.0)
If name, roleName or description are specified, first search for a widget that matches and refocus on it.
source code

Inherited from Action: __getattr__, __setattr__, button, menu, menuItem, table, tableCell, text

Inherited from FocusWidget: findByPredicate

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

Class Variables [hide private]
  select = 'select'
  deselect = 'deselect'

Inherited from FocusBase: node

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, action)
(Constructor)

source code 

action must be 'select' or 'deselect'.

Overrides: object.__init__

__call__(self, name='', roleName='', description='', delay=1.0)
(Call operator)

source code 

If name, roleName or description are specified, first search for a widget that matches and refocus on it. Then execute the action.

Overrides: FocusWidget.__call__