Lines Matching refs:root
13 argument will be the root window. X must create a child Toplevel
56 kwds: augmented with {'parent':root} and passed to X as **kwds.
373 root = tk.Tk()
374 root.title('IDLE htest')
375 root.resizable(0, 0)
378 frameLabel = tk.Frame(root, padx=10)
381 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
403 test_name = tk.StringVar(root)
414 test_kwds['parent'] = root
430 root.destroy()
432 button = tk.Button(root, textvariable=test_name,
434 next_button = tk.Button(root, text="Next", command=next_test)
438 root.bind('<Key-Return>', run_test)
439 root.bind('<Key-Escape>', close)
442 root.mainloop()