Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Protocol for atspi #32

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,13 @@
);
}
}

pub mod atspi {

Check warning on line 104 in src/lib.rs

View workflow job for this annotation

GitHub Actions / rust-check

missing documentation for a module

Check warning on line 104 in src/lib.rs

View workflow job for this annotation

GitHub Actions / doc

missing documentation for a module
#[allow(missing_docs)]
pub mod v1 {
wayland_protocol!(
"./unstable/cosmic-atspi-unstable-v1.xml",
[]
);
}
}
44 changes: 44 additions & 0 deletions unstable/cosmic-atspi-unstable-v1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="cosmic_atspi_v1">
<copyright>
foo bar
</copyright>
<description summary="">
</description>
<interface name="cosmic_atspi_manager_v1" version="1">
<description summary="">
</description>
<!-- per wl_seat interface -->
<request name="destroy" type="destructor">
<description summary="">
</description>
</request>
<request name="add_key_grab">
Drakulix marked this conversation as resolved.
Show resolved Hide resolved
<description summary="">
</description>
<arg name="mods" type="uint" summary=""/>
<arg name="virtual_mods" type="array" summary=""/>
<arg name="key" type="uint" summary=""/>
</request>
<request name="remove_key_grab">
<description summary="">
</description>
<arg name="mods" type="uint" summary=""/>
<arg name="virtual_mods" type="array" summary=""/>
<arg name="key" type="uint" summary=""/>
</request>
<request name="grab_keyboard">
<description summary="">
</description>
</request>
<request name="ungrab_keyboard">
<description summary="">
</description>
</request>
<event name="key_events_eis">
<description summary="">
</description>
<arg name="fd" type="fd" summary="eis file descriptor"/>
</event>
</interface>
</protocol>
Loading