mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-05-29 04:46:10 +00:00

1. taskmanager used to identify which entry should map to window in x11 environmrnt, listen to xevent in anohter thread, and handle those event when window create, destory, changed. use some way to identify which entry(desktopfile) should mapped to changed window. in wayland, connected plsamawindow signal(window created destoried. 2. use taskmanager instead of dbus in old dock code log: as title
32 lines
1016 B
XML
32 lines
1016 B
XML
<interface name="org.deepin.dde.KWayland1.WindowManager">
|
|
<signal name="InterfaceAboutToBeReleased"/>
|
|
<signal name="InterfaceAboutToBeDestroyed"/>
|
|
<signal name="ShowingDesktopChanged">
|
|
<arg type="b" direction="out"/>
|
|
</signal>
|
|
<signal name="WindowCreated">
|
|
<arg name="dbus" type="s" direction="out"/>
|
|
</signal>
|
|
<signal name="WindowRemove">
|
|
<arg name="dbus" type="s" direction="out"/>
|
|
</signal>
|
|
<signal name="ActiveWindowChanged"/>
|
|
<method name="IsValid">
|
|
<arg type="b" direction="out"/>
|
|
</method>
|
|
<method name="IsShowingDesktop">
|
|
<arg type="b" direction="out"/>
|
|
</method>
|
|
<method name="SetShowingDesktop">
|
|
<arg name="show" type="b" direction="in"/>
|
|
</method>
|
|
<method name="ShowDesktop"/>
|
|
<method name="HideDesktop"/>
|
|
<method name="Windows">
|
|
<arg type="av" direction="out"/>
|
|
</method>
|
|
<method name="ActiveWindow">
|
|
<arg type="u" direction="out"/>
|
|
</method>
|
|
</interface>
|