Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
daemon: Use gdbus-codegen for the org.mate.atril.Daemon interface
- Loading branch information
Showing
3 changed files
with
185 additions
and
164 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
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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Introspection 0.1//EN" | ||
"http://www.freedesktop.org/software/dbus/introspection.dtd"> | ||
<node> | ||
<interface name="org.mate.atril.Daemon"> | ||
<method name="RegisterDocument"> | ||
<arg type="s" name="uri" direction="in"/> | ||
<arg type="s" name="owner" direction="out"/> | ||
</method> | ||
<method name="UnregisterDocument"> | ||
<arg type="s" name="uri" direction="in"/> | ||
</method> | ||
<method name="FindDocument"> | ||
<arg type="s" name="uri" direction="in"/> | ||
<arg type="b" name="spawn" direction="in"/> | ||
<arg type="s" name="owner" direction="out"/> | ||
</method> | ||
</interface> | ||
</node> |
Oops, something went wrong.