Class EventDelegateDispatcher
- java.lang.Object
- 
- com.inductiveautomation.factorypmi.application.components.util.EventDelegateDispatcher
 
- 
 public class EventDelegateDispatcher extends java.lang.Object
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classEventDelegateDispatcher.MouseEventDispatcher
 - 
Field SummaryFields Modifier and Type Field Description static intALL_EVENTS_MASKstatic intFOCUS_EVENT_MASKstatic intKEY_EVENT_MASKstatic intMOUSE_EVENT_MASK
 - 
Constructor SummaryConstructors Constructor Description EventDelegateDispatcher()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voidinitializeDispatchers(java.awt.Component child, java.awt.Component parent)This function adds mouse, key, and focus listeners to the actual subcomponent (usually in a scrollpane) in order to dispatch them upwards to the parent, the scrollpane, so that these events can be seen by jython event handlersstatic voidinitializeDispatchers(java.awt.Component child, java.awt.Component parent, int mask)This function adds listeners to the actual subcomponent (usually in a scrollpane) in order to dispatch them upwards to the parent, the scrollpane, so that these events can be seen by jython event handlers
 
- 
- 
- 
Field Detail- 
KEY_EVENT_MASKpublic static final int KEY_EVENT_MASK - See Also:
- Constant Field Values
 
 - 
MOUSE_EVENT_MASKpublic static final int MOUSE_EVENT_MASK - See Also:
- Constant Field Values
 
 - 
FOCUS_EVENT_MASKpublic static final int FOCUS_EVENT_MASK - See Also:
- Constant Field Values
 
 - 
ALL_EVENTS_MASKpublic static final int ALL_EVENTS_MASK - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
initializeDispatcherspublic static void initializeDispatchers(java.awt.Component child, java.awt.Component parent)This function adds mouse, key, and focus listeners to the actual subcomponent (usually in a scrollpane) in order to dispatch them upwards to the parent, the scrollpane, so that these events can be seen by jython event handlers
 - 
initializeDispatcherspublic static void initializeDispatchers(java.awt.Component child, java.awt.Component parent, int mask)This function adds listeners to the actual subcomponent (usually in a scrollpane) in order to dispatch them upwards to the parent, the scrollpane, so that these events can be seen by jython event handlers
 
- 
 
-