view finch/libgnt/pygnt/test.py @ 16659:a6854e3043a4

Don't try to base64 encode and then append an empty string
author Mark Doliner <mark@kingant.net>
date Sun, 29 Apr 2007 17:14:45 +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()