mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 20:33:46 +01:00
7e2c0f2e1e
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<!DOCTYPE node PUBLIC '-//freedesktop//DTD D-BUS Object Introspection 1.0//EN'
|
|
'http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd'>
|
|
<node>
|
|
<interface name='org.pwmt.zathura'>
|
|
<!-- Open a document in a running zathura instance. -->
|
|
<method name='OpenDocument'>
|
|
<arg type='s' name='path' direction='in' />
|
|
<arg type='s' name='password' direction='in' />
|
|
<arg type='i' name='page' direction='in' />
|
|
<arg type='b' name='return' direction='out' />
|
|
</method>
|
|
<!-- Close open document. -->
|
|
<method name='CloseDocument'>
|
|
<arg type='b' name='return' direction='out' />
|
|
</method>
|
|
<!-- Go to a specific page . -->
|
|
<method name='GotoPage'>
|
|
<arg type='i' name='page' direction='in' />
|
|
<arg type='b' name='return' direction='out' />
|
|
</method>
|
|
<!-- Go to a page and highlight rectangles there. -->
|
|
<method name='HighlightRects'>
|
|
<arg type='i' name='page' direction='in' />
|
|
<arg type='a(dddd)' name='rectangles' direction='out' />
|
|
<arg type='b' name='return' direction='out' />
|
|
</method>
|
|
<property type='s' name='filename' access='read' />
|
|
</interface>
|
|
</node>
|