mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-31 08:50:12 +01:00
* qt/examples: Add QtDBus example programs: - hello: Hello, World - ping: Simple method-calling program - pong: Simple object-exporting program (not using adaptors) - complexping: Interactive method-calling program (also gets and sets properties). - complexpong: Sample program exporting methods, signals and properties, using adaptors. - dbus: Simple implementation of a generic method-calling program, similar to 'dbus-send', but with semantics similar to 'dcop'. - chat: Simplistic chat program, implemented using signals and the system bus. Looks like IRC.
15 lines
514 B
XML
15 lines
514 B
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="com.trolltech.ChatInterface">
|
|
<signal name="message">
|
|
<arg name="nickname" type="s" direction="out"/>
|
|
<arg name="text" type="s" direction="out"/>
|
|
</signal>
|
|
<signal name="action">
|
|
<arg name="nickname" type="s" direction="out"/>
|
|
<arg name="text" type="s" direction="out"/>
|
|
</signal>
|
|
</interface>
|
|
</node>
|
|
|