TPointerFilter
Support
Supported from 5.0
Description
Pointer event filter types.
These flags are used by RWindowBase::PointerFilter()
to define which pointer events are filtered out by the window server and not
sent to the client session. They also allow the window server to simulate a
move event prior to each pen down event.
EPointerFilterMove |
Filter out pointer-move events for this window.
|
EPointerFilterDrag |
Filter out pointer-drag events for this window.
|
EPointerGenerateSimulatedMove |
Simulates a pointer move event before each pen down event.
This makes the pen appear more like a mouse — with
simulated movement between two pointer events. You can only get these events while you are in pen mode.
|
EPointerMoveEvents |
Filter Move and Drag-pointer events from the event stream and
simulate the move event before each pen down event.This enum is useful when you want to get SimulateMoveEvents . Use it as shown below to turn on simulated moves:win->PointerFilter(EPointerMoveEvents, EPointerGenerateSimulateMoves)
|
|