-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcosmic-toplevel-info-unstable-v1.xml
245 lines (208 loc) · 10.7 KB
/
cosmic-toplevel-info-unstable-v1.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="cosmic_toplevel_info_unstable_v1">
<copyright>
Copyright © 2018 Ilia Bozhinov
Copyright © 2020 Isaac Freund
Copyright © 2024 Victoria Brekenfeld
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
without fee, provided that the above copyright notice appear in
all copies and that both that copyright notice and this permission
notice appear in supporting documentation, and that the name of
the copyright holders not be used in advertising or publicity
pertaining to distribution of the software without specific,
written prior permission. The copyright holders make no
representations about the suitability of this software for any
purpose. It is provided "as is" without express or implied
warranty.
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
</copyright>
<interface name="zcosmic_toplevel_info_v1" version="2">
<description summary="list toplevels and properties thereof">
The purpose of this protocol is to enable clients such as taskbars
or docks to access a list of opened applications and basic properties
thereof.
It thus extends ext_foreign_toplevel_v1 to provide more information
and actions on foreign toplevels.
</description>
<event name="toplevel" deprecated-since="2">
<description summary="a toplevel has been created">
This event is never emitted for clients binding version 2
of this protocol, they should use `get_cosmic_toplevel` instead.
This event is emitted for clients binding version 1 whenever a
new toplevel window is created. It is emitted for all toplevels,
regardless of the app that has created them.
All initial properties of the toplevel (title, app_id, states, etc.)
will be sent immediately after this event via the corresponding
events in zcosmic_toplevel_handle_v1.
</description>
<arg name="toplevel" type="new_id" interface="zcosmic_toplevel_handle_v1"/>
</event>
<request name="stop" deprecated-since="2">
<description summary="stop sending events">
This request indicates that the client no longer wishes to receive
events for new toplevels. However, the compositor may emit further
toplevel_created events until the finished event is emitted.
The client must not send any more requests after this one.
Note: This request isn't necessary for clients binding version 2
of this protocol and will be ignored.
</description>
</request>
<event name="finished" deprecated-since="2">
<description summary="the compositor has finished with the toplevel manager">
This event indicates that the compositor is done sending events
to the zcosmic_toplevel_info_v1. The server will destroy the
object immediately after sending this request, so it will become
invalid and the client should free any resources associated with it.
Note: This event is emitted immediately after calling `stop` for
clients binding version 2 of this protocol for backwards compatibility.
</description>
</event>
<request name="get_cosmic_toplevel" since="2">
<description summary="get cosmic toplevel extension object">
Request a zcosmic_toplevel_handle_v1 extension object for an existing
ext_foreign_toplevel_handle_v1.
All initial properties of the toplevel (states, etc.)
will be sent immediately after this event via the corresponding
events in zcosmic_toplevel_handle_v1.
</description>
<arg name="cosmic_toplevel" type="new_id" interface="zcosmic_toplevel_handle_v1"/>
<arg name="foreign_toplevel" type="object" interface="ext_foreign_toplevel_handle_v1"/>
</request>
<event name="done" since="2">
<description summary="all information about active toplevels have been sent">
This event is sent after all changes for currently active
zcosmic_toplevel_handle_v1 have been sent.
This allows changes to multiple zcosmic_toplevel_handle_v1 handles
and their properties to be seen as atomic, even if they happen via
multiple events.
</description>
</event>
</interface>
<interface name="zcosmic_toplevel_handle_v1" version="2">
<description summary="an open toplevel">
A zcosmic_toplevel_handle_v1 object represents an open toplevel
window. A single app may have multiple open toplevels.
Each toplevel has a list of outputs it is visible on, exposed to the
client via the output_enter and output_leave events.
</description>
<request name="destroy" type="destructor">
<description summary="destroy the zcosmic_toplevel_handle_v1 object">
This request should be called either when the client will no longer
use the zcosmic_toplevel_handle_v1.
</description>
</request>
<event name="closed" deprecated-since="2">
<description summary="the toplevel has been closed">
The server will emit no further events on the
zcosmic_toplevel_handle_v1 after this event. Any requests received
aside from the destroy request will be ignored. Upon receiving this
event, the client should make the destroy request to allow freeing
of resources.
Note: This event will not be emitted for clients binding version 2
of this protocol, as `ext_foreign_toplevel_handle_v1.closed` is
equivalent.
</description>
</event>
<event name="done" deprecated-since="2">
<description summary="all information about the toplevel has been sent">
This event is sent after all changes in the toplevel state have
been sent.
This allows changes to the zcosmic_toplevel_handle_v1 properties
to be seen as atomic, even if they happen via multiple events.
Note: this is is not sent after the closed event.
Note: This event will not be emitted for clients binding version 2
of this protocol, as `ext_foreign_toplevel_handle_v1.done` is
equivalent.
</description>
</event>
<event name="title" deprecated-since="2">
<description summary="title change">
This event is emitted whenever the title of the toplevel changes.
Note: This event will not be emitted for clients binding version 2
of this protocol, as `ext_foreign_toplevel_handle_v1.title` is
equivalent.
</description>
<arg name="title" type="string"/>
</event>
<event name="app_id" deprecated-since="2">
<description summary="app_id change">
This event is emitted whenever the app_id of the toplevel changes.
Note: This event will not be emitted for clients binding version 2
of this protocol, as `ext_foreign_toplevel_handle_v1.app_id` is
equivalent.
</description>
<arg name="app_id" type="string"/>
</event>
<event name="output_enter">
<description summary="toplevel entered an output">
This event is emitted whenever the toplevel becomes visible on the
given output. A toplevel may be visible on multiple outputs.
</description>
<arg name="output" type="object" interface="wl_output"/>
</event>
<event name="output_leave">
<description summary="toplevel left an output">
This event is emitted whenever the toplevel is no longer visible
on a given output. It is guaranteed that an output_enter event with
the same output has been emitted before this event.
</description>
<arg name="output" type="object" interface="wl_output"/>
</event>
<event name="workspace_enter">
<description summary="toplevel entered an workspace">
This event is emitted whenever the toplevel becomes visible on the
given workspace. A toplevel may be visible on multiple workspaces.
</description>
<arg name="workspace" type="object" interface="zcosmic_workspace_handle_v1"/>
</event>
<event name="workspace_leave">
<description summary="toplevel left an workspace">
This event is emitted whenever the toplevel is no longer visible
on a given workspace. It is guaranteed that an workspace_enter event with
the same workspace has been emitted before this event.
</description>
<arg name="workspace" type="object" interface="zcosmic_workspace_handle_v1"/>
</event>
<enum name="state">
<description summary="types of states on the toplevel">
The different states that a toplevel may have. These have the same
meaning as the states with the same names defined in xdg-toplevel
</description>
<entry name="maximized" value="0" summary="the toplevel is maximized" />
<entry name="minimized" value="1" summary="the toplevel is minimized" />
<entry name="activated" value="2" summary="the toplevel is active" />
<entry name="fullscreen" value="3" summary="the toplevel is fullscreen" />
<entry name="sticky" value="4" summary="the toplevel is sticky" since="2" />
</enum>
<event name="state">
<description summary="the toplevel state changed">
This event is emitted once on creation of the
zcosmic_toplevel_handle_v1 and again whenever the state of the
toplevel changes.
</description>
<arg name="state" type="array"/>
</event>
<event name="geometry" since="2">
<description summary="the toplevel's position and/or size has changed">
Emitted when the geometry of a toplevel (it's position and/or size)
relative to the provided output has changed.
This event is emitted once on creation of the
zcosmic_toplevel_handle_v1 for every entered output and again
whenever the geometry of the toplevel changes relative to any output.
</description>
<arg name="output" type="object" interface="wl_output"/>
<arg name="x" type="int" summary="x coordinate of the upper-left corner"/>
<arg name="y" type="int" summary="y coordinate of the upper-left corner"/>
<arg name="width" type="int" summary="width of the toplevel"/>
<arg name="height" type="int" summary="height of the toplevel"/>
</event>
</interface>
</protocol>