mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-26 05:10:08 +01:00
* python/dbus_bindings.pyx: Added. - Fixed some memleaks (patch from Sean Meiners <sean.meiners@linspireinc.com>) - Broke out the #include "dbus_h_wrapper.h" and put it in its own pxd file (Pyrex definition) - Broke out glib dependancies into its own pyx module * python/dbus_bindings.pdx: Added. - Defines C class Connection for exporting to other modules * python/dbus_glib_bindings.pyx: Added. - New module to handle lowlevel dbus-glib mainloop integration * python/glib.py: Added. - Registers the glib mainloop when you import this module * python/services.py: Removed (renamed to service.py) * python/service.py: Added. - (class Server): renamed Name * python/__init__.py: Bump ro version (0,41,0) - don't import the decorators or service module by default. These now reside in the dbus.service namespace * python/_dbus.py (Bus::__init__): Add code run the main loop setup function on creation * python/examples/example-service.py, python/examples/example-signal-emitter.py: update examples * python/examples/gconf-proxy-service.py, python/examples/gconf-proxy-service2.py: TODO fix these up * doc/TODO: Addition - Added a Python Bindings 1.0 section - added "Add match on args or match on details to match rules"
32 lines
861 B
Python
32 lines
861 B
Python
#!/usr/bin/env python
|
|
|
|
import dbus
|
|
import dbus.service
|
|
|
|
|
|
import dbus.glib
|
|
import pygtk
|
|
import gtk
|
|
|
|
class SomeObject(dbus.service.Object):
|
|
def __init__(self, name):
|
|
dbus.service.Object.__init__(self, "/SomeObject", name)
|
|
|
|
@dbus.service.method("org.designfu.SampleInterface")
|
|
def HelloWorld(self, hello_message):
|
|
print (str(hello_message))
|
|
return ["Hello", " from example-service.py"]
|
|
|
|
@dbus.service.method("org.designfu.SampleInterface")
|
|
def GetTuple(self):
|
|
return ("Hello Tuple", " from example-service.py")
|
|
|
|
@dbus.service.method("org.designfu.SampleInterface")
|
|
def GetDict(self):
|
|
return {"first": "Hello Dict", "second": " from example-service.py"}
|
|
|
|
session_bus = dbus.SessionBus()
|
|
name = dbus.service.Name("org.designfu.SampleService", bus=session_bus)
|
|
object = SomeObject(name)
|
|
|
|
gtk.main()
|