receive selected/layout/title

This commit is contained in:
Raphael Robatsch
2021-10-25 21:54:14 +02:00
parent 629e8f6e1c
commit 8a5c52d2db
6 changed files with 59 additions and 15 deletions

View File

@@ -49,6 +49,12 @@
</description>
<arg name="name" type="string"/>
</event>
<event name="layout">
<description summary="announces the presence of a layout">
</description>
<arg name="name" type="string"/>
</event>
</interface>
<interface name="znet_tapesoftware_dwl_wm_monitor_v1" version="1">
@@ -66,8 +72,14 @@
</description>
</request>
<event name="selected">
<description summary="updates the selected state of the monitor">
</description>
<arg name="selected" type="int"/>
</event>
<event name="tag">
<description summary="sent every time a tag state gets updated">
<description summary="updates the state of one tag">
</description>
<arg name="tag" type="int"/>
<arg name="state" type="uint" enum="tag_state"/>
@@ -75,6 +87,18 @@
<arg name="focused_client" type="int" summary="-1 if there is no focused client"/>
</event>
<event name="layout">
<description summary="updates the selected layout">
</description>
<arg name="layout" type="int"/>
</event>
<event name="title">
<description summary="updates the focused client">
</description>
<arg name="title" type="string"/>
</event>
<event name="frame">
<description summary="sent after all other events have been sent. allows for atomic updates.">
</description>