Home | History | Annotate | Download | only in idlelib

Lines Matching refs:parent

12     def __init__(self, parent, title, text, modal=True):
16 Toplevel.__init__(self, parent)
19 parent.winfo_rootx() + 10,
20 parent.winfo_rooty() + 10))
28 self.parent = parent
37 self.transient(parent)
62 def view_text(parent, title, text, modal=True):
63 return TextViewer(parent, title, text, modal)
65 def view_file(parent, title, filename, encoding=None, modal=True):
76 parent=parent)
78 return view_text(parent, title, textFile.read(), modal)