diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kded/test/test.cpp | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kded/test/test.cpp')
-rw-r--r-- | kded/test/test.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/kded/test/test.cpp b/kded/test/test.cpp new file mode 100644 index 000000000..3e130abf6 --- /dev/null +++ b/kded/test/test.cpp @@ -0,0 +1,43 @@ +#include "test.h" + +class TestObject : public KShared +{ +public: + TestObject(const QCString &_app) : app(_app) + { qWarning("Creating TestObject belonging to '%s'", app.data()); } + ~TestObject() + { qWarning("Destructing TestObject belonging to '%s'", app.data()); } +protected: + QCString app; +}; + +TestModule::TestModule(const QCString &obj) : KDEDModule(obj) +{ + // Do stuff here + setIdleTimeout(15); // 15 seconds idle timeout. +} + +QString TestModule::world() +{ + return "Hello World!"; +} + +void TestModule::idle() +{ + qWarning("TestModule is idle."); +} + +void TestModule::registerMe(const QCString &app) +{ + insert(app, "test", new TestObject(app)); + // When 'app' unregisters with DCOP, the TestObject will get deleted. +} + +extern "C" { + KDE_EXPORT KDEDModule *create_test(const QCString &obj) + { + return new TestModule(obj); + } +}; + +#include "test.moc" |