Class WlSeatProxy
- All Implemented Interfaces:
WaylandObject
A seat is a group of keyboards, pointer and touch devices. This object is published as a global during start up, or when such a device is hot plugged. A seat typically has a pointer and maintains a keyboard focus and a pointer focus.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionWlSeatProxy
(MemorySegment pointer) WlSeatProxy
(MemorySegment pointer, WlSeatEvents implementation, int version) -
Method Summary
Modifier and TypeMethodDescriptiongetKeyboard
(WlKeyboardEvents implementation) return keyboard objectgetPointer
(WlPointerEvents implementation) return pointer objectgetTouch
(WlTouchEvents implementation) return touch objectvoid
release()
release the seat objectMethods inherited from class org.freedesktop.wayland.client.Proxy
destroy, equals, getId, getImplementation, getPointer, getVersion, hashCode, marshal, marshal, marshalConstructor, setQueue
-
Field Details
-
INTERFACE_NAME
- See Also:
-
-
Constructor Details
-
WlSeatProxy
-
WlSeatProxy
-
-
Method Details
-
getPointer
return pointer objectThe ID provided will be initialized to the wl_pointer interface for this seat.
This request only takes effect if the seat has the pointer capability, or has had the pointer capability in the past. It is a protocol violation to issue this request on a seat that has never had the pointer capability. The missing_capability error will be sent in this case.
- Parameters:
implementation
- A protocol event listener for the newly created proxy.
-
getKeyboard
return keyboard objectThe ID provided will be initialized to the wl_keyboard interface for this seat.
This request only takes effect if the seat has the keyboard capability, or has had the keyboard capability in the past. It is a protocol violation to issue this request on a seat that has never had the keyboard capability. The missing_capability error will be sent in this case.
- Parameters:
implementation
- A protocol event listener for the newly created proxy.
-
getTouch
return touch objectThe ID provided will be initialized to the wl_touch interface for this seat.
This request only takes effect if the seat has the touch capability, or has had the touch capability in the past. It is a protocol violation to issue this request on a seat that has never had the touch capability. The missing_capability error will be sent in this case.
- Parameters:
implementation
- A protocol event listener for the newly created proxy.
-
release
public void release()release the seat objectUsing this request a client can tell the server that it is not going to use the seat object anymore.
-