Home | History | Annotate | Download | only in samples

Lines Matching refs:ent

61         top.ent = Tix.LabelEntry(top, label="Installation Directory:",
69 top.ent.entry['textvariable'] = self.dlist_dir
70 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \
71 self.copy_name(dir,ent)
73 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () )
78 top.ent.pack( expand=1, fill=X, anchor='s', padx=4, pady=4, side=LEFT)
90 def copy_name (self, dir, ent):
94 ent.entry.delete(0,'end')
95 ent.entry.insert(0, self.dlist_dir)