view finch/libgnt/pygnt/test.py @ 18684:5c1ed6296b56

propagate from branch 'im.pidgin.pidgin' (head b195e262642015df66e36d33e9dd16ecae5df9d5) to branch 'im.pidgin.soc.2007.xmpp' (head 06f9dbd73b69e26dc9f56873a9ce106146bb1b18)
author Andreas Monitzer <pidgin@monitzer.com>
date Wed, 11 Jul 2007 22:27:44 +0000
parents 8fd5ab3f9716
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()