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

Source Code for Package AEEvent

 1  ''' 
 2  Defines internal L{AEEvent}s and their execution logic. The subclasses of the 
 3  base L{Base.AccessEngineEvent} 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  All rights reserved. This program and the accompanying materials are made 
21  available under the terms of the BSD license which accompanies 
22  this distribution, and is available at 
23  U{http://www.opensource.org/licenses/bsd-license.php} 
24  ''' 
25  from Base import * 
26  from CaretChange import * 
27  from ChildrenChange import * 
28  from ChooserChange import * 
29  from FocusChange import * 
30  from InputGesture import * 
31  from MouseChange import * 
32  from PrivateChange import * 
33  from PropertyChange import * 
34  from SelectorChange import * 
35  from StateChange import * 
36  from ScreenChange import * 
37  from TableChange import * 
38  from TimerAlert import * 
39  from ViewChange import * 
40