view finch/libgnt/pygnt/test.py @ 15929:8fd5ab3f9716

python bindings for libgnt. dbus-gnt is a gnt-ui (sort of) for gaim over dbus. It allows continuing with the currently opened conversations. pygnt/README.txt explains what to do. Use at your own risk.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 26 Mar 2007 04:19:35 +0000
parents
children 5e1412f4e67a
line wrap: on
line source

#!/usr/bin/python
import gnt

def button_activate(button, entry):
	entry.set_text("clicked!!!")

gnt.gnt_init()

win = gnt.Window()

entry = gnt.Entry("")

win.add_widget(entry)
win.set_title("Entry")

button = gnt.Button("Click!")
win.add_widget(button)

button.connect("activate", button_activate, entry)

win.show()

gnt.gnt_main()

gnt.gnt_quit()