Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python2.7 /
Demo /
tix /
Delete
Unzip
Name
Size
Permission
Date
Action
bitmaps
[ DIR ]
drwxr-xr-x
2025-12-21 17:06
samples
[ DIR ]
drwxr-xr-x
2025-12-21 17:06
INSTALL.txt
3.67
KB
-rw-r--r--
2020-04-19 21:13
README.txt
726
B
-rw-r--r--
2020-04-19 21:13
grid.py
550
B
-rw-r--r--
2020-04-19 21:13
grid.pyc
1.25
KB
-rw-r--r--
2024-04-10 04:58
grid.pyo
1.25
KB
-rw-r--r--
2024-04-10 04:58
tixwidgets.py
37.51
KB
-rw-r--r--
2020-04-19 21:13
tixwidgets.pyc
37.7
KB
-rw-r--r--
2024-04-10 04:58
tixwidgets.pyo
37.7
KB
-rw-r--r--
2024-04-10 04:58
Save
Rename
### import Tix as tk from pprint import pprint r= tk.Tk() r.title("test") l=tk.Label(r, name="a_label") l.pack() class MyGrid(tk.Grid): def __init__(self, *args, **kwargs): kwargs['editnotify']= self.editnotify tk.Grid.__init__(self, *args, **kwargs) def editnotify(self, x, y): return True g = MyGrid(r, name="a_grid", selectunit="cell") g.pack(fill=tk.BOTH) for x in xrange(5): for y in xrange(5): g.set(x,y,text=str((x,y))) c = tk.Button(r, text="Close", command=r.destroy) c.pack() tk.mainloop()