Package AccessEngine :: Package AEEvent
[hide private]
[frames] | no frames]

Source Code for Package AccessEngine.AEEvent

 1  ''' 
 2  Defines internal L{AEEvent}s and their execution logic. The subclasses of the 
 3  base L{Base.AEEvent} class are instantiated by the event handler 
 4  adapters (either the default or specialized event handler adapters). 
 5   
 6  Defines functions that allows L{AEEvent} classes to register their names to 
 7  suggest all possible event names and which to buffer by default in  
 8  L{AEMonitor}s. Defines functions to allow monitors to retrieve those names 
 9   
10  Additional import statements should be added to this file as this package 
11  grows new modules. 
12   
13  @author: Peter Parente 
14  @author: Pete Brunet 
15  @author: Brett Clippingdale 
16  @organization: IBM Corporation 
17  @copyright: Copyright (c) 2005, 2007 IBM Corporation 
18  @license: The BSD License 
19   
20  @author: Frank Zenker 
21  @organization: IT Science Center Ruegen gGmbH, Germany 
22  @copyright: Copyright (c) 2007, 2008 ITSC Ruegen 
23  @license: The BSD License 
24   
25  All rights reserved. This program and the accompanying materials are made 
26  available under the terms of the BSD license which accompanies 
27  this distribution, and is available at 
28  U{http://www.opensource.org/licenses/bsd-license.php} 
29  ''' 
30  from Base import * 
31  from CaretChange import * 
32  from ChildrenChange import * 
33  from ChooserChange import * 
34  from FocusChange import * 
35  from InputGesture import * 
36  from MouseChange import * 
37  from PrivateChange import * 
38  from PropertyChange import * 
39  from SelectorChange import * 
40  from StateChange import * 
41  from ScreenChange import * 
42  from TableChange import * 
43  from TimerAlert import * 
44  from ViewChange import * 
45