Home | History | Annotate | Download | only in test_ttk

Lines Matching refs:ttk

3 import ttk
13 """Tests methods available in every ttk widget."""
17 self.widget = ttk.Button(width=0, text="Text")
79 btn = ttk.Button(command=lambda: success.append(1))
92 cbtn = ttk.Checkbutton(command=cb_test)
93 # the variable automatically created by ttk.Checkbutton is actually
117 self.combo = ttk.Combobox()
206 combo2 = ttk.Combobox(values=[1, 2, ''])
215 self.entry = ttk.Entry()
319 self.paned = ttk.Panedwindow()
328 label = ttk.Label(self.paned)
329 child = ttk.Label(label)
334 label = ttk.Label()
335 child = ttk.Label(label)
340 good_child = ttk.Label()
345 other_child = ttk.Label(self.paned)
358 self.paned.add(ttk.Label())
368 child = ttk.Label()
369 child2 = ttk.Label()
370 child3 = ttk.Label()
401 child = ttk.Label()
418 child = ttk.Label(self.paned, text='a')
421 child2 = ttk.Label(self.paned, text='b')
443 cbtn = ttk.Radiobutton(command=cb_test, variable=myvar, value=0)
444 cbtn2 = ttk.Radiobutton(command=cb_test, variable=myvar, value=1)
469 self.scale = ttk.Scale()
545 self.nb = ttk.Notebook(padding=0)
546 self.child1 = ttk.Label()
547 self.child2 = ttk.Label()
594 self.assertRaises(Tkinter.TclError, self.nb.add, ttk.Label(),
602 child = ttk.Label()
660 child3 = ttk.Label()
752 self.tv = ttk.Treeview(padding=0)
948 # XXX skipping for now; should be fixed to work with newer ttk