summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/server.py
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit90825e2392b2d70e43c7a25b8a3752299a933894 (patch)
treee33aa27f02b74604afbfd0ea4f1cfca8833d882a /dcoppython/test/server.py
downloadtdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz
tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.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/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'dcoppython/test/server.py')
-rw-r--r--dcoppython/test/server.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/dcoppython/test/server.py b/dcoppython/test/server.py
new file mode 100644
index 00000000..479b0236
--- /dev/null
+++ b/dcoppython/test/server.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+
+# This is an example of a DCOP serving application written in Python, using
+# the dcoppython KDE bindings.
+
+# something goes wrong if you don't import pcop first.
+# Have to do this till I find out why...
+import pcop
+import pydcop
+
+class ParrotObject(pydcop.DCOPServerObject):
+ """DCOP server object"""
+
+ def __init__(self, id='parrot'):
+ pydcop.DCOPServerObject.__init__(self, id)
+
+ # DCOP needs types, so we need to initialise the object with the methods that
+ # it's going to provide.
+ self.setMethods( [
+ ('int age()', self.get_age),
+ ('void setAge(int)', self.set_age),
+ ('QString squawk(QString)', self.squawk),
+ ])
+
+ # set up object variables
+ self.parrot_age = 7
+
+ def get_age(self):
+ return self.parrot_age
+
+ def set_age(self,age):
+ self.parrot_age = age
+
+ def squawk(self, what_to_squawk):
+ return "This parrot, %i months old, squawks: %s" % (self.parrot_age, what_to_squawk)
+
+
+appid = pydcop.registerAs('petshop')
+print "Server: %s starting" % appid
+
+parrot = ParrotObject()
+another_parrot = ParrotObject('polly')
+
+# Enter event loop
+while 1:
+ pydcop.processEvents()
+
+