view finch/libgnt/pygnt/test.py @ 17827:43961a41237a

When right-clicking on an image in a GtkIMHtml to save it, if the file extension is not recognized then make sure we strip off the user-entered file format and tack on a ".png" Fixes bug #914
author Mark Doliner <mark@kingant.net>
date Sun, 10 Jun 2007 21:58: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()