weston/protocol/text-cursor-position.xml
Scott Moreau 7a1b32a198 Implement text cursor position protocol.
Here we create a new client/compositor interface in weston to allow
clients to report their x/y cursor position to the compositor. These
values are then used to center the zoom area on this point. This
is useful for everyone, especially people who are visually impaired.
2012-05-31 13:10:22 -04:00

12 lines
298 B
XML

<protocol name="text_cursor_position">
<interface name="text_cursor_position" version="1">
<request name="notify">
<arg name="surface" type="object" interface="wl_surface"/>
<arg name="x" type="uint"/>
<arg name="y" type="uint"/>
</request>
</interface>
</protocol>