Lines Matching refs:root
20 global root
21 root = Tk()
22 root.withdraw()
25 global root
26 root.update_idletasks()
27 root.destroy()
28 del root
50 view = VW(root, 'Title', 'test text')
57 view = VW(root, 'Title', 'test text', modal=False)
64 view = VW(root, 'Title', 'test text', modal=False)
75 scroll = tv.AutoHideScrollbar(root)
84 cls.root = root = Tk()
85 root.withdraw()
89 cls.root.update_idletasks()
90 cls.root.destroy()
91 del cls.root
94 frame = tv.ScrollableTextFrame(self.root, wrap=wrap, **kwargs)
128 cls.root = root = Tk()
129 root.withdraw()
130 cls.frame = tv.ViewFrame(root, 'test text')
135 cls.root.update_idletasks()
136 cls.root.destroy()
137 del cls.root
158 view = tv.view_text(root, 'Title', 'test text', modal=False)
164 view = tv.view_file(root, 'Title', __file__, 'ascii', modal=False)
173 view = tv.view_file(root, 'Title', 'abc.xyz', 'ascii', modal=False)
180 view = tv.view_file(root, 'Title', fn, 'ascii', modal=False)
185 view = tv.view_text(root, 'Title', 'test', modal=False, wrap='none')
204 self.view = tv.view_text(root, 'TITLE_TEXT', 'COMMAND', _utest=True)
205 button = Button(root, text='BUTTON', command=_command)
217 self.view = tv.view_file(root, 'TITLE_FILE', __file__,
219 button = Button(root, text='BUTTON', command=_command)