Package com.luciad.input
Class TLcdAWTEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
com.luciad.input.TLcdAWTEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TLcdTouchEvent
,TLspNextCreateStepEvent
The base class for all non-standard hardware input events.
In order for a Component
to handle this TLcdAWTEvent
, it should override the
java.awt.Component#processEvent(java.awt.AWTEvent)
method to accept the new events, e.g.:
Component component = new Component(){
@Override
protected void processEvent( AWTEvent aEvent ) {
if ( aEvent instanceof TLcdAWTEvent ){
handleAWTEvent( ( TLcdAWTEvent ) aEvent );
} else {
super.processEvent( aEvent );
}
}
private void handleAWTEvent( TLcdAWTEvent aEvent ){
//handle the event
}
};
A typical component might implement ILcdAWTEventSource
and dispatch all received
TLcdAWTEvents to the registered listeners.- Since:
- 10.0
- See Also:
-
Field Summary
Fields inherited from class java.awt.AWTEvent
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
-
Method Summary
Methods inherited from class java.awt.AWTEvent
consume, getID, isConsumed, paramString, setSource, toString
Methods inherited from class java.util.EventObject
getSource
-
Constructor Details
-
TLcdAWTEvent
Create a newTLcdAWTEvent
.- Parameters:
aSource
- the object where the event originatedaEventType
- the event type- Since:
- 2020.0
-