* selection: clipboard delegate, primary selection, mobile UI, handles, accessibility Level 0: Route clipboard through Makepad instead of arboard. Custom ClipboardDelegate in havishell forwards set_text/get_text/clear through Makepad's CopyToClipboard and pending paste state. Fix Wayland serial constraint by queuing CopyToClipboard when no serial is available. Level 1: Primary selection (Linux). Add CxOsOp::SetPrimarySelection, Wayland zwp_primary_selection_device_manager_v1 protocol bindings, X11 PRIMARY atom handling. HAVI stores selection text in SharedDocumentSelection and calls set_primary_selection on change. Level 2: Mobile clipboard actions UI. Long-press selects word and shows native clipboard toolbar. TextCopy/TextCut events return selection text. Level 3: Selection handle API. Add CxOsOp Show/Update/HideSelectionHandles, Event::SelectionHandleDrag, and HAVI integration for handle drag events. Platform stubs for all backends. Level 4: Accessibility plumbing. Add CxOsOp::AccessibilityUpdate with type-erased Box<dyn Any + Send> payload. HAVI implements notify_accessibility_tree_update to forward accesskit::TreeUpdate through Makepad. Platform no-op stubs. * wayland: handle primary selection data_offer child objects --------- Co-authored-by: ant <ant@offline.click>
176 lines
7.6 KiB
XML
176 lines
7.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<protocol name="wp_primary_selection_unstable_v1">
|
|
|
|
<copyright>
|
|
Copyright © 2015, 2016 Red Hat
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice (including the next
|
|
paragraph) shall be included in all copies or substantial portions of the
|
|
Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
DEALINGS IN THE SOFTWARE.
|
|
</copyright>
|
|
|
|
<interface name="zwp_primary_selection_device_manager_v1" version="1">
|
|
<description summary="X primary selection emulation">
|
|
The primary selection device manager is a singleton global object that
|
|
provides access to the primary selection. It allows to create
|
|
wp_primary_selection_source objects, as well as retrieving the per-seat
|
|
wp_primary_selection_device objects.
|
|
</description>
|
|
|
|
<request name="create_source">
|
|
<description summary="create a new primary selection source">
|
|
Create a new primary selection source.
|
|
</description>
|
|
<arg name="id" type="new_id" interface="zwp_primary_selection_source_v1"/>
|
|
</request>
|
|
|
|
<request name="get_device">
|
|
<description summary="create a new primary selection device">
|
|
Create a new data device for a given seat.
|
|
</description>
|
|
<arg name="id" type="new_id" interface="zwp_primary_selection_device_v1"/>
|
|
<arg name="seat" type="object" interface="wl_seat"/>
|
|
</request>
|
|
|
|
<request name="destroy" type="destructor">
|
|
<description summary="destroy the primary selection device manager"/>
|
|
</request>
|
|
</interface>
|
|
|
|
<interface name="zwp_primary_selection_device_v1" version="1">
|
|
<description summary="offer primary selection data">
|
|
Provides access to the primary selection on the seat.
|
|
</description>
|
|
|
|
<event name="data_offer">
|
|
<description summary="introduce a new wp_primary_selection_offer">
|
|
Introduces a new wp_primary_selection_offer object that may be used
|
|
to receive the current primary selection. Immediately following this
|
|
event, the new wp_primary_selection_offer object will send
|
|
wp_primary_selection_offer.offer events to describe the offered mime
|
|
types.
|
|
</description>
|
|
<arg name="offer" type="new_id" interface="zwp_primary_selection_offer_v1"/>
|
|
</event>
|
|
|
|
<event name="selection">
|
|
<description summary="advertise a new primary selection">
|
|
The wp_primary_selection_device.selection event is sent to notify the
|
|
client of a new primary selection. This event is sent after the
|
|
wp_primary_selection.data_offer event introducing this object, and after
|
|
the offer has announced its mime types through
|
|
wp_primary_selection_offer.offer.
|
|
|
|
The data_offer is valid until a new offer or NULL is received
|
|
or until the client loses keyboard focus. The client must destroy the
|
|
previous selection data_offer, if any, upon receiving this event.
|
|
</description>
|
|
<arg name="id" type="object" interface="zwp_primary_selection_offer_v1" allow-null="true"/>
|
|
</event>
|
|
|
|
<request name="set_selection">
|
|
<description summary="set the primary selection">
|
|
Replaces the current selection. The previous owner of the primary
|
|
selection will receive a wp_primary_selection_source.cancelled event.
|
|
|
|
To unset the selection, set the source to NULL.
|
|
</description>
|
|
<arg name="source" type="object" interface="zwp_primary_selection_source_v1" allow-null="true"/>
|
|
<arg name="serial" type="uint" summary="serial of the event that triggered this request"/>
|
|
</request>
|
|
|
|
<request name="destroy" type="destructor"/>
|
|
</interface>
|
|
|
|
<interface name="zwp_primary_selection_offer_v1" version="1">
|
|
<description summary="offer to transfer primary selection contents">
|
|
A wp_primary_selection_offer represents an offer to transfer the contents
|
|
of the primary selection clipboard to the client. Similar to
|
|
wl_data_offer, the offer also describes the mime types that the data can
|
|
be converted to and provides the mechanisms for transferring the data
|
|
directly to the client.
|
|
</description>
|
|
|
|
<event name="offer">
|
|
<description summary="advertise offered mime type">
|
|
Sent immediately after creating announcing the
|
|
wp_primary_selection_offer through
|
|
wp_primary_selection_device.data_offer. One event is sent per offered
|
|
mime type.
|
|
</description>
|
|
<arg name="mime_type" type="string"/>
|
|
</event>
|
|
|
|
<request name="receive">
|
|
<description summary="request that the data is transferred">
|
|
To transfer the contents of the primary selection clipboard, the client
|
|
issues this request and indicates the mime type that it wants to
|
|
receive. The transfer happens through the passed file descriptor
|
|
(typically created with the pipe system call). The source client writes
|
|
the data in the mime type representation requested and then closes the
|
|
file descriptor.
|
|
|
|
The receiving client reads from the read end of the pipe until EOF and
|
|
closes its end, at which point the transfer is complete.
|
|
</description>
|
|
<arg name="mime_type" type="string"/>
|
|
<arg name="fd" type="fd"/>
|
|
</request>
|
|
|
|
<request name="destroy" type="destructor"/>
|
|
</interface>
|
|
|
|
<interface name="zwp_primary_selection_source_v1" version="1">
|
|
<description summary="offer to replace the contents of the primary selection">
|
|
The source side of a wp_primary_selection_offer, it provides a way to
|
|
describe the offered data and respond to requests to transfer the
|
|
requested contents of the primary selection clipboard.
|
|
</description>
|
|
|
|
<request name="offer">
|
|
<description summary="add an offered mime type">
|
|
This request adds a mime type to the set of mime types advertised to
|
|
targets. Can be called several times to offer multiple types.
|
|
</description>
|
|
<arg name="mime_type" type="string"/>
|
|
</request>
|
|
|
|
<request name="destroy" type="destructor">
|
|
<description summary="destroy the primary selection source">
|
|
Destroy the primary selection source.
|
|
</description>
|
|
</request>
|
|
|
|
<event name="send">
|
|
<description summary="send the primary selection contents">
|
|
Request for the current primary selection contents from the client.
|
|
Send the specified mime type over the passed file descriptor, then
|
|
close it.
|
|
</description>
|
|
<arg name="mime_type" type="string"/>
|
|
<arg name="fd" type="fd"/>
|
|
</event>
|
|
|
|
<event name="cancelled">
|
|
<description summary="request for primary selection contents was canceled">
|
|
This primary selection source is no longer valid. The client should
|
|
clean up and destroy this primary selection source.
|
|
</description>
|
|
</event>
|
|
</interface>
|
|
</protocol>
|