Interface WlSeatRequestsV7
- All Superinterfaces:
WlSeatRequests
,WlSeatRequestsV2
,WlSeatRequestsV3
,WlSeatRequestsV4
,WlSeatRequestsV5
,WlSeatRequestsV6
- All Known Subinterfaces:
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 objectvoid
release
(WlSeatResource requester) release the seat 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
- Specified by:
getPointer
in interfaceWlSeatRequestsV4
- Specified by:
getPointer
in interfaceWlSeatRequestsV5
- Specified by:
getPointer
in interfaceWlSeatRequestsV6
- 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
- Specified by:
getKeyboard
in interfaceWlSeatRequestsV4
- Specified by:
getKeyboard
in interfaceWlSeatRequestsV5
- Specified by:
getKeyboard
in interfaceWlSeatRequestsV6
- 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
- Specified by:
getTouch
in interfaceWlSeatRequestsV4
- Specified by:
getTouch
in interfaceWlSeatRequestsV5
- Specified by:
getTouch
in interfaceWlSeatRequestsV6
- Parameters:
requester
- The protocol object that made the request.id
- seat touch interface
-
release
release the seat objectUsing this request a client can tell the server that it is not going to use the seat object anymore.
- Specified by:
release
in interfaceWlSeatRequestsV5
- Specified by:
release
in interfaceWlSeatRequestsV6
- Parameters:
requester
- The protocol object that made the request.
-