mirror of
https://github.com/hyprwm/hyprland-protocols.git
synced 2024-11-08 14:55:59 +01:00
Fix spelling & rephrase motion event
This commit is contained in:
parent
529178006e
commit
af4bf00015
1 changed files with 13 additions and 8 deletions
|
@ -32,15 +32,15 @@
|
||||||
</copyright>
|
</copyright>
|
||||||
|
|
||||||
<description summary="capture the inputs for sending it to a window">
|
<description summary="capture the inputs for sending it to a window">
|
||||||
This protocol allows clients to create bordel for when the mouse cross,
|
This protocol allows clients to create borders, for which after crossing,
|
||||||
the inputs are send to the client.
|
mouse events will be forwarded to the client
|
||||||
|
|
||||||
Usefull for implementing the input capture portal.
|
Useful for implementing the input capture portal.
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<interface name="hyprland_input_capture_manager_v1" version="1">
|
<interface name="hyprland_input_capture_manager_v1" version="1">
|
||||||
<description summary="manager for capturing inputs">
|
<description summary="manager for capturing inputs">
|
||||||
This interface allow a client to capture inputs and receive events
|
This interface allows a client to capture inputs and receive events
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<request name="capture">
|
<request name="capture">
|
||||||
|
@ -55,11 +55,15 @@
|
||||||
</description>
|
</description>
|
||||||
</request>
|
</request>
|
||||||
|
|
||||||
<event name="absolute_motion">
|
<event name="motion">
|
||||||
<description summary="pointer motion">
|
<description summary="pointer motion">
|
||||||
Event trigger when the mouse cursor mouse. It contains
|
Notification of pointer location change.
|
||||||
the absolute position of x and y and also the relative motion of the pointer.
|
|
||||||
Note that the dx and dy vectors can be accelerated, please use the relative motion protocol
|
It contains the absolute position of x and y and also the
|
||||||
|
relative motion of the pointer.
|
||||||
|
|
||||||
|
Note that the dx and dy vectors can be accelerated,
|
||||||
|
please use the relative motion protocol
|
||||||
for unaccelerated inputs.
|
for unaccelerated inputs.
|
||||||
</description>
|
</description>
|
||||||
<arg name="x"
|
<arg name="x"
|
||||||
|
@ -84,6 +88,7 @@
|
||||||
<event name="key">
|
<event name="key">
|
||||||
<description summary="key event">
|
<description summary="key event">
|
||||||
A key was pressed or released.
|
A key was pressed or released.
|
||||||
|
|
||||||
The key is a platform-specific key code that can be interpreted
|
The key is a platform-specific key code that can be interpreted
|
||||||
by feeding it to the keyboard mapping (see the keymap event).
|
by feeding it to the keyboard mapping (see the keymap event).
|
||||||
</description>
|
</description>
|
||||||
|
|
Loading…
Reference in a new issue