enum EventContext {
Preactivate,
MoveOver,
Move,
EndPreactivate,
BeginManipulate,
Activate,
Context,
EndManipulate
}
Defines the notification creation context.
- Parameters:
-
- Preactivate
- There are two cases to consider:
- The mouse pointer, coming from the background, enters on a graphic representation.
Two notifications with the following context are sent in this order:
- A EndPreactivate context:
The pointer returned by
is null
- A Preactivate context:
The pointer returned by
is not null
- The mouse pointer leaves a graphic representation to the background.
Two notifications with the following context are sent in this order:
- A EndPreactivate context:
The pointer returned by
is not null
- A Preactivate context:
The pointer returned by
is null
- MoveOver
- The mouse pointer leaves a graphic representation to enter on a new one.
The pointer returned by
is not null.
- Move
- The mouse pointer moves on a graphic representation or the background. In the first case,
the pointer returned by
is not null, otherwise the pointer is nul.
- EndPreactivate
- There are two cases to consider:
- The mouse pointer, coming from the background, enters on a graphic representation.
Two notifications with the following context are sent in this order:
- A EndPreactivate context:
The pointer returned by
is null
A Preactivate context:
The pointer returned by
is not null
The mouse pointer leaves a graphic representation to the background.
Two notifications with the following context are sent in this order:
- A EndPreactivate context:
The pointer returned by
is not null
- A Preactivate context:
The pointer returned by
is null