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

Class Select

source code

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

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

Inherited from FocusBase: node

Method Details [hide private]

__init__(self, action)
(Constructor)

source code 

action must be 'select' or 'deselect'.

Overrides: Action.__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__