1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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()
|