forked from linuxdeepin/qt5platform-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
添加虚拟键盘服务监视连接, 防止虚拟键盘服务在应用程序后启动, 无法Hook虚拟键盘函数 Log: 防止虚拟键盘在程序后启动虚拟键盘无法显示 Change-Id: I671ab9fdd73fb08ef0ac1e230cff12cfa4d79add
- Loading branch information
Wang Peng
committed
Aug 10, 2021
1 parent
e762179
commit 692ea66
Showing
4 changed files
with
128 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<interface name="org.freedesktop.DBus"> | ||
<method name="Hello"> | ||
<arg direction="out" type="s"/> | ||
</method> | ||
<method name="RequestName"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="in" type="u"/> | ||
<arg direction="out" type="u"/> | ||
</method> | ||
<method name="ReleaseName"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="u"/> | ||
</method> | ||
<method name="StartServiceByName"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="in" type="u"/> | ||
<arg direction="out" type="u"/> | ||
</method> | ||
<!--method name="UpdateActivationEnvironment"> | ||
<arg direction="in" type="a{ss}"/> | ||
</method--> | ||
<method name="NameHasOwner"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="b"/> | ||
</method> | ||
<method name="ListNames"> | ||
<arg direction="out" type="as"/> | ||
</method> | ||
<method name="ListActivatableNames"> | ||
<arg direction="out" type="as"/> | ||
</method> | ||
<method name="AddMatch"> | ||
<arg direction="in" type="s"/> | ||
</method> | ||
<method name="RemoveMatch"> | ||
<arg direction="in" type="s"/> | ||
</method> | ||
<method name="GetNameOwner"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="s"/> | ||
</method> | ||
<method name="ListQueuedOwners"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="as"/> | ||
</method> | ||
<method name="GetConnectionUnixUser"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="u"/> | ||
</method> | ||
<method name="GetConnectionUnixProcessID"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="u"/> | ||
</method> | ||
<method name="GetAdtAuditSessionData"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="ay"/> | ||
</method> | ||
<method name="GetConnectionSELinuxSecurityContext"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="ay"/> | ||
</method> | ||
<method name="ReloadConfig"> | ||
</method> | ||
<method name="GetId"> | ||
<arg direction="out" type="s"/> | ||
</method> | ||
<!--method name="GetConnectionCredentials"> | ||
<arg direction="in" type="s"/> | ||
<arg direction="out" type="a{sv}"/> | ||
</method--> | ||
<signal name="NameOwnerChanged"> | ||
<arg type="s"/> | ||
<arg type="s"/> | ||
<arg type="s"/> | ||
</signal> | ||
<signal name="NameLost"> | ||
<arg type="s"/> | ||
</signal> | ||
<signal name="NameAcquired"> | ||
<arg type="s"/> | ||
</signal> | ||
</interface> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters