Interface WlSeatRequestsV4
- All Superinterfaces:
WlSeatRequests
,WlSeatRequestsV2
,WlSeatRequestsV3
- All Known Subinterfaces:
WlSeatRequestsV5
,WlSeatRequestsV6
,WlSeatRequestsV7
,WlSeatRequestsV8
,WlSeatRequestsV9
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 -
Method Summary
Modifier and TypeMethodDescriptionvoid
getKeyboard
(WlSeatResource requester, int id) return keyboard objectvoid
getPointer
(WlSeatResource requester, int id) return pointer objectvoid
getTouch
(WlSeatResource requester, int id) return touch object
-
Field Details
-
VERSION
static final int VERSION- See Also:
-
-
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.
- Specified by:
getPointer
in interfaceWlSeatRequests
- Specified by:
getPointer
in interfaceWlSeatRequestsV2
- Specified by:
getPointer
in interfaceWlSeatRequestsV3
- Parameters:
requester
- The protocol object that made the request.id
- seat pointer
-
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.
- Specified by:
getKeyboard
in interfaceWlSeatRequests
- Specified by:
getKeyboard
in interfaceWlSeatRequestsV2
- Specified by:
getKeyboard
in interfaceWlSeatRequestsV3
- Parameters:
requester
- The protocol object that made the request.id
- seat keyboard
-
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.
- Specified by:
getTouch
in interfaceWlSeatRequests
- Specified by:
getTouch
in interfaceWlSeatRequestsV2
- Specified by:
getTouch
in interfaceWlSeatRequestsV3
- Parameters:
requester
- The protocol object that made the request.id
- seat touch interface
-