Interface WlPointerEventsV8
- All Superinterfaces:
WlPointerEvents
,WlPointerEventsV2
,WlPointerEventsV3
,WlPointerEventsV4
,WlPointerEventsV5
,WlPointerEventsV6
,WlPointerEventsV7
- All Known Subinterfaces:
WlPointerEventsV9
The wl_pointer interface represents one or more input devices, such as mice, which control the pointer location and pointer_focus of a seat.
The wl_pointer interface generates motion, enter and leave events for the surfaces that the pointer is located over, and button and axis events for button presses, button releases and scrolling.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
axis
(WlPointerProxy emitter, int time, int axis, Fixed value) axis eventvoid
axisDiscrete
(WlPointerProxy emitter, int axis, int discrete) axis click eventvoid
axisSource
(WlPointerProxy emitter, int axisSource) axis source eventvoid
axisStop
(WlPointerProxy emitter, int time, int axis) axis stop eventvoid
axisValue120
(WlPointerProxy emitter, int axis, int value120) axis high-resolution scroll eventvoid
button
(WlPointerProxy emitter, int serial, int time, int button, int state) pointer button eventvoid
enter
(WlPointerProxy emitter, int serial, WlSurfaceProxy surface, Fixed surfaceX, Fixed surfaceY) enter eventvoid
frame
(WlPointerProxy emitter) end of a pointer event sequencevoid
leave
(WlPointerProxy emitter, int serial, WlSurfaceProxy surface) leave eventvoid
motion
(WlPointerProxy emitter, int time, Fixed surfaceX, Fixed surfaceY) pointer motion event
-
Field Details
-
VERSION
static final int VERSION- See Also:
-
-
Method Details
-
enter
void enter(WlPointerProxy emitter, int serial, @Nonnull WlSurfaceProxy surface, @Nonnull Fixed surfaceX, @Nonnull Fixed surfaceY) enter eventNotification that this seat's pointer is focused on a certain surface.
When a seat's focus enters a surface, the pointer image is undefined and a client should respond to this event by setting an appropriate pointer image with the set_cursor request.
- Specified by:
enter
in interfaceWlPointerEvents
- Specified by:
enter
in interfaceWlPointerEventsV2
- Specified by:
enter
in interfaceWlPointerEventsV3
- Specified by:
enter
in interfaceWlPointerEventsV4
- Specified by:
enter
in interfaceWlPointerEventsV5
- Specified by:
enter
in interfaceWlPointerEventsV6
- Specified by:
enter
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.serial
- serial number of the enter eventsurface
- surface entered by the pointersurfaceX
- surface-local x coordinatesurfaceY
- surface-local y coordinate
-
leave
leave eventNotification that this seat's pointer is no longer focused on a certain surface.
The leave notification is sent before the enter notification for the new focus.
- Specified by:
leave
in interfaceWlPointerEvents
- Specified by:
leave
in interfaceWlPointerEventsV2
- Specified by:
leave
in interfaceWlPointerEventsV3
- Specified by:
leave
in interfaceWlPointerEventsV4
- Specified by:
leave
in interfaceWlPointerEventsV5
- Specified by:
leave
in interfaceWlPointerEventsV6
- Specified by:
leave
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.serial
- serial number of the leave eventsurface
- surface left by the pointer
-
motion
pointer motion eventNotification of pointer location change. The arguments surface_x and surface_y are the location relative to the focused surface.
- Specified by:
motion
in interfaceWlPointerEvents
- Specified by:
motion
in interfaceWlPointerEventsV2
- Specified by:
motion
in interfaceWlPointerEventsV3
- Specified by:
motion
in interfaceWlPointerEventsV4
- Specified by:
motion
in interfaceWlPointerEventsV5
- Specified by:
motion
in interfaceWlPointerEventsV6
- Specified by:
motion
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.time
- timestamp with millisecond granularitysurfaceX
- surface-local x coordinatesurfaceY
- surface-local y coordinate
-
button
pointer button eventMouse button click and release notifications.
The location of the click is given by the last motion or enter event. The time argument is a timestamp with millisecond granularity, with an undefined base.
The button is a button code as defined in the Linux kernel's linux/input-event-codes.h header file, e.g. BTN_LEFT.
Any 16-bit button code value is reserved for future additions to the kernel's event code list. All other button codes above 0xFFFF are currently undefined but may be used in future versions of this protocol.
- Specified by:
button
in interfaceWlPointerEvents
- Specified by:
button
in interfaceWlPointerEventsV2
- Specified by:
button
in interfaceWlPointerEventsV3
- Specified by:
button
in interfaceWlPointerEventsV4
- Specified by:
button
in interfaceWlPointerEventsV5
- Specified by:
button
in interfaceWlPointerEventsV6
- Specified by:
button
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.serial
- serial number of the button eventtime
- timestamp with millisecond granularitybutton
- button that produced the eventstate
- physical state of the button
-
axis
axis eventScroll and other axis notifications.
For scroll events (vertical and horizontal scroll axes), the value parameter is the length of a vector along the specified axis in a coordinate space identical to those of motion events, representing a relative movement along the specified axis.
For devices that support movements non-parallel to axes multiple axis events will be emitted.
When applicable, for example for touch pads, the server can choose to emit scroll events where the motion vector is equivalent to a motion event vector.
When applicable, a client can transform its content relative to the scroll distance.
- Specified by:
axis
in interfaceWlPointerEvents
- Specified by:
axis
in interfaceWlPointerEventsV2
- Specified by:
axis
in interfaceWlPointerEventsV3
- Specified by:
axis
in interfaceWlPointerEventsV4
- Specified by:
axis
in interfaceWlPointerEventsV5
- Specified by:
axis
in interfaceWlPointerEventsV6
- Specified by:
axis
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.time
- timestamp with millisecond granularityaxis
- axis typevalue
- length of vector in surface-local coordinate space
-
frame
end of a pointer event sequenceIndicates the end of a set of events that logically belong together. A client is expected to accumulate the data in all events within the frame before proceeding.
All wl_pointer events before a wl_pointer.frame event belong logically together. For example, in a diagonal scroll motion the compositor will send an optional wl_pointer.axis_source event, two wl_pointer.axis events (horizontal and vertical) and finally a wl_pointer.frame event. The client may use this information to calculate a diagonal vector for scrolling.
When multiple wl_pointer.axis events occur within the same frame, the motion vector is the combined motion of all events. When a wl_pointer.axis and a wl_pointer.axis_stop event occur within the same frame, this indicates that axis movement in one axis has stopped but continues in the other axis. When multiple wl_pointer.axis_stop events occur within the same frame, this indicates that these axes stopped in the same instance.
A wl_pointer.frame event is sent for every logical event group, even if the group only contains a single wl_pointer event. Specifically, a client may get a sequence: motion, frame, button, frame, axis, frame, axis_stop, frame.
The wl_pointer.enter and wl_pointer.leave events are logical events generated by the compositor and not the hardware. These events are also grouped by a wl_pointer.frame. When a pointer moves from one surface to another, a compositor should group the wl_pointer.leave event within the same wl_pointer.frame. However, a client must not rely on wl_pointer.leave and wl_pointer.enter being in the same wl_pointer.frame. Compositor-specific policies may require the wl_pointer.leave and wl_pointer.enter event being split across multiple wl_pointer.frame groups.
- Specified by:
frame
in interfaceWlPointerEventsV5
- Specified by:
frame
in interfaceWlPointerEventsV6
- Specified by:
frame
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.
-
axisSource
axis source eventSource information for scroll and other axes.
This event does not occur on its own. It is sent before a wl_pointer.frame event and carries the source information for all events within that frame.
The source specifies how this event was generated. If the source is wl_pointer.axis_source.finger, a wl_pointer.axis_stop event will be sent when the user lifts the finger off the device.
If the source is wl_pointer.axis_source.wheel, wl_pointer.axis_source.wheel_tilt or wl_pointer.axis_source.continuous, a wl_pointer.axis_stop event may or may not be sent. Whether a compositor sends an axis_stop event for these sources is hardware-specific and implementation-dependent; clients must not rely on receiving an axis_stop event for these scroll sources and should treat scroll sequences from these scroll sources as unterminated by default.
This event is optional. If the source is unknown for a particular axis event sequence, no event is sent. Only one wl_pointer.axis_source event is permitted per frame.
The order of wl_pointer.axis_discrete and wl_pointer.axis_source is not guaranteed.
- Specified by:
axisSource
in interfaceWlPointerEventsV5
- Specified by:
axisSource
in interfaceWlPointerEventsV6
- Specified by:
axisSource
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.axisSource
- source of the axis event
-
axisStop
axis stop eventStop notification for scroll and other axes.
For some wl_pointer.axis_source types, a wl_pointer.axis_stop event is sent to notify a client that the axis sequence has terminated. This enables the client to implement kinetic scrolling. See the wl_pointer.axis_source documentation for information on when this event may be generated.
Any wl_pointer.axis events with the same axis_source after this event should be considered as the start of a new axis motion.
The timestamp is to be interpreted identical to the timestamp in the wl_pointer.axis event. The timestamp value may be the same as a preceding wl_pointer.axis event.
- Specified by:
axisStop
in interfaceWlPointerEventsV5
- Specified by:
axisStop
in interfaceWlPointerEventsV6
- Specified by:
axisStop
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.time
- timestamp with millisecond granularityaxis
- the axis stopped with this event
-
axisDiscrete
axis click eventDiscrete step information for scroll and other axes.
This event carries the axis value of the wl_pointer.axis event in discrete steps (e.g. mouse wheel clicks).
This event is deprecated with wl_pointer version 8 - this event is not sent to clients supporting version 8 or later.
This event does not occur on its own, it is coupled with a wl_pointer.axis event that represents this axis value on a continuous scale. The protocol guarantees that each axis_discrete event is always followed by exactly one axis event with the same axis number within the same wl_pointer.frame. Note that the protocol allows for other events to occur between the axis_discrete and its coupled axis event, including other axis_discrete or axis events. A wl_pointer.frame must not contain more than one axis_discrete event per axis type.
This event is optional; continuous scrolling devices like two-finger scrolling on touchpads do not have discrete steps and do not generate this event.
The discrete value carries the directional information. e.g. a value of -2 is two steps towards the negative direction of this axis.
The axis number is identical to the axis number in the associated axis event.
The order of wl_pointer.axis_discrete and wl_pointer.axis_source is not guaranteed.
- Specified by:
axisDiscrete
in interfaceWlPointerEventsV5
- Specified by:
axisDiscrete
in interfaceWlPointerEventsV6
- Specified by:
axisDiscrete
in interfaceWlPointerEventsV7
- Parameters:
emitter
- The protocol object that emitted the event.axis
- axis typediscrete
- number of steps
-
axisValue120
axis high-resolution scroll eventDiscrete high-resolution scroll information.
This event carries high-resolution wheel scroll information, with each multiple of 120 representing one logical scroll step (a wheel detent). For example, an axis_value120 of 30 is one quarter of a logical scroll step in the positive direction, a value120 of -240 are two logical scroll steps in the negative direction within the same hardware event. Clients that rely on discrete scrolling should accumulate the value120 to multiples of 120 before processing the event.
The value120 must not be zero.
This event replaces the wl_pointer.axis_discrete event in clients supporting wl_pointer version 8 or later.
Where a wl_pointer.axis_source event occurs in the same wl_pointer.frame, the axis source applies to this event.
The order of wl_pointer.axis_value120 and wl_pointer.axis_source is not guaranteed.
- Parameters:
emitter
- The protocol object that emitted the event.axis
- axis typevalue120
- scroll distance as fraction of 120
-