Home | History | Annotate | Download | only in samples

Lines Matching refs:ent

61         top.ent = Tix.LabelEntry(top, label="Installation Directory:",
70 top.ent.entry['font'] = font
74 top.ent.entry['textvariable'] = self.dlist_dir
75 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \
76 self.copy_name(dir,ent)
78 # top.ent.entry.insert(0,'tix'+repr(self))
79 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () )
84 top.ent.pack( expand=1, fill=X, anchor='s', padx=4, pady=4, side=LEFT)
96 def copy_name (self, dir, ent):
100 ent.entry.delete(0,'end')
101 ent.entry.insert(0, self.dlist_dir)