symbian-qemu-0.9.1-12/python-2.6.1/Demo/tkinter/matt/entry-simple.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 from Tkinter import *
       
     2 import string
       
     3 
       
     4 # This program  shows how to use a simple type-in box
       
     5 
       
     6 class App(Frame):
       
     7     def __init__(self, master=None):
       
     8         Frame.__init__(self, master)
       
     9         self.pack()
       
    10 
       
    11         self.entrythingy = Entry()
       
    12         self.entrythingy.pack()
       
    13 
       
    14         # and here we get a callback when the user hits return. we could
       
    15         # make the key that triggers the callback anything we wanted to.
       
    16         # other typical options might be <Key-Tab> or <Key> (for anything)
       
    17         self.entrythingy.bind('<Key-Return>', self.print_contents)
       
    18 
       
    19     def print_contents(self, event):
       
    20         print "hi. contents of entry is now ---->", self.entrythingy.get()
       
    21 
       
    22 root = App()
       
    23 root.master.title("Foo")
       
    24 root.mainloop()