mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-12 08:40:19 +00:00
add xchat r1489
This commit is contained in:
28
src/common/dbus/example.py
Normal file
28
src/common/dbus/example.py
Normal file
@@ -0,0 +1,28 @@
|
||||
#! /usr/bin/python
|
||||
|
||||
import dbus
|
||||
|
||||
bus = dbus.SessionBus()
|
||||
proxy = bus.get_object('org.xchat.service', '/org/xchat/Remote')
|
||||
remote = dbus.Interface(proxy, 'org.xchat.connection')
|
||||
path = remote.Connect ("example.py",
|
||||
"Python example",
|
||||
"Example of a D-Bus client written in python",
|
||||
"1.0")
|
||||
proxy = bus.get_object('org.xchat.service', path)
|
||||
xchat = dbus.Interface(proxy, 'org.xchat.plugin')
|
||||
|
||||
channels = xchat.ListGet ("channels")
|
||||
while xchat.ListNext (channels):
|
||||
name = xchat.ListStr (channels, "channel")
|
||||
print "------- " + name + " -------"
|
||||
xchat.SetContext (xchat.ListInt (channels, "context"))
|
||||
xchat.EmitPrint ("Channel Message", ["John", "Hi there", "@"])
|
||||
users = xchat.ListGet ("users")
|
||||
while xchat.ListNext (users):
|
||||
print "Nick: " + xchat.ListStr (users, "nick")
|
||||
xchat.ListFree (users)
|
||||
xchat.ListFree (channels)
|
||||
|
||||
print xchat.Strip ("\00312Blue\003 \002Bold!\002", -1, 1|2)
|
||||
|
||||
Reference in New Issue
Block a user