* configure.in qt/Makefile.am: add qt/examples
authorThiago Macieira <thiago@kde.org>
Tue, 28 Mar 2006 19:16:35 +0000 (19:16 +0000)
committerThiago Macieira <thiago@kde.org>
Tue, 28 Mar 2006 19:16:35 +0000 (19:16 +0000)
commit68b0f5235909a25a7cc4f679592fc7765e845cbf
tree38c36ef242e25fd3ff7da5a366d4f7f34072cdf6
parent26106e12ecdd1a334a7a98a3f2b7205abc7d916d
* configure.in qt/Makefile.am: add qt/examples
* 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.
22 files changed:
ChangeLog
configure.in
qt/Makefile.am
qt/examples/.cvsignore [new file with mode: 0644]
qt/examples/Makefile.am [new file with mode: 0644]
qt/examples/chat.cpp [new file with mode: 0644]
qt/examples/chat.h [new file with mode: 0644]
qt/examples/chatadaptor.cpp [new file with mode: 0644]
qt/examples/chatadaptor.h [new file with mode: 0644]
qt/examples/chatmainwindow.ui [new file with mode: 0644]
qt/examples/chatsetnickname.ui [new file with mode: 0644]
qt/examples/com.trolltech.ChatInterface.xml [new file with mode: 0644]
qt/examples/complexping.cpp [new file with mode: 0644]
qt/examples/complexping.h [new file with mode: 0644]
qt/examples/complexpong.cpp [new file with mode: 0644]
qt/examples/complexpong.h [new file with mode: 0644]
qt/examples/dbus.cpp [new file with mode: 0644]
qt/examples/hello.cpp [new file with mode: 0644]
qt/examples/ping-common.h [new file with mode: 0644]
qt/examples/ping.cpp [new file with mode: 0644]
qt/examples/pong.cpp [new file with mode: 0644]
qt/examples/pong.h [new file with mode: 0644]