/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/ |
test_functions.py | 4 import ttk namespace 36 self.assertFalse(ttk._format_optdict({})) 40 ttk._format_optdict({'fg': 'blue', 'padding': [1, 2, 3, 4]}), 45 ttk._format_optdict({'test': (1, 2, '', 0)}), 50 ttk._format_optdict({'test': {'left': 'as is'}}), 55 ttk._format_optdict( 68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False}) 74 ttk._format_optdict( 78 ttk._format_optdict( 84 ttk._format_optdict [all...] |
test_extensions.py | 4 import ttk namespace 22 x = ttk.LabeledScale() 30 x = ttk.LabeledScale(variable=myvar) 39 x = ttk.LabeledScale(variable=myvar) 46 ttk.LabeledScale(variable=myvar) 53 x = ttk.LabeledScale() 57 x = ttk.LabeledScale(master) 65 x = ttk.LabeledScale(from_=pair[0]) 68 x = ttk.LabeledScale(from_='2.5') 71 x = ttk.LabeledScale(from_=None [all...] |
test_style.py | 3 import ttk namespace 13 self.style = ttk.Style()
|
test_widgets.py | 3 import ttk namespace 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( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/ |
test_functions.py | 4 import ttk namespace 36 self.assertFalse(ttk._format_optdict({})) 40 ttk._format_optdict({'fg': 'blue', 'padding': [1, 2, 3, 4]}), 45 ttk._format_optdict({'test': (1, 2, '', 0)}), 50 ttk._format_optdict({'test': {'left': 'as is'}}), 55 ttk._format_optdict( 68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False}) 74 ttk._format_optdict( 78 ttk._format_optdict( 84 ttk._format_optdict [all...] |
test_extensions.py | 4 import ttk namespace 22 x = ttk.LabeledScale() 30 x = ttk.LabeledScale(variable=myvar) 39 x = ttk.LabeledScale(variable=myvar) 46 ttk.LabeledScale(variable=myvar) 53 x = ttk.LabeledScale() 57 x = ttk.LabeledScale(master) 65 x = ttk.LabeledScale(from_=pair[0]) 68 x = ttk.LabeledScale(from_='2.5') 71 x = ttk.LabeledScale(from_=None [all...] |
test_style.py | 3 import ttk namespace 13 self.style = ttk.Style()
|
test_widgets.py | 3 import ttk namespace 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( [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ttk_guionly.py | 18 import ttk namespace 22 ttk.Button() 24 # assuming ttk is not available 25 raise unittest.SkipTest("ttk not available: %s" % msg)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ttk_guionly.py | 18 import ttk namespace 22 ttk.Button() 24 # assuming ttk is not available 25 raise unittest.SkipTest("ttk not available: %s" % msg)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/ |
test_text.py | 4 from ttk import setup_master
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/ |
test_text.py | 4 from ttk import setup_master
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 0 """Ttk wrapper. 5 Ttk is based on a revised and enhanced version of 155 """Formats a layout list so we can pass the result to ttk::style 156 layout and ttk::style settings. Note that the layout doesn't has to 214 script.append("ttk::style configure %s %s;" % (name, s)) 218 script.append("ttk::style map %s %s;" % (name, s)) 225 script.append("ttk::style layout %s {\n%s\n}" % (name, s)) 240 script.append("ttk::style element create %s %s %s %s" % ( 278 """Construct a list from the tuple returned by ttk::layout, this is 367 _name = "ttk::style [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 0 """Ttk wrapper. 5 Ttk is based on a revised and enhanced version of 155 """Formats a layout list so we can pass the result to ttk::style 156 layout and ttk::style settings. Note that the layout doesn't has to 214 script.append("ttk::style configure %s %s;" % (name, s)) 218 script.append("ttk::style map %s %s;" % (name, s)) 225 script.append("ttk::style layout %s {\n%s\n}" % (name, s)) 240 script.append("ttk::style element create %s %s %s %s" % ( 278 """Construct a list from the tuple returned by ttk::layout, this is 367 _name = "ttk::style [all...] |