source: python/vendor/Python-2.6.5/Demo/tix/grid.py

Last change on this file was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 550 bytes
Line 
1###
2import Tix as tk
3from pprint import pprint
4
5r= tk.Tk()
6r.title("test")
7
8l=tk.Label(r, name="a_label")
9l.pack()
10
11class MyGrid(tk.Grid):
12 def __init__(self, *args, **kwargs):
13 kwargs['editnotify']= self.editnotify
14 tk.Grid.__init__(self, *args, **kwargs)
15 def editnotify(self, x, y):
16 return True
17
18g = MyGrid(r, name="a_grid",
19selectunit="cell")
20g.pack(fill=tk.BOTH)
21for x in xrange(5):
22 for y in xrange(5):
23 g.set(x,y,text=str((x,y)))
24
25c = tk.Button(r, text="Close", command=r.destroy)
26c.pack()
27
28tk.mainloop()
Note: See TracBrowser for help on using the repository browser.