Searched refs:ExpandingButton (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_squeezer.py | 11 from idlelib.squeezer import count_lines_with_wrapping, ExpandingButton, \ 196 """Test that the auto-squeezing creates an ExpandingButton properly.""" 305 """Tests for the ExpandingButton class.""" 322 """Test the simplest creation of an ExpandingButton.""" 326 expandingbutton = ExpandingButton('TEXT', 'TAGS', 50, squeezer) 352 expandingbutton = ExpandingButton('TEXT', 'TAGS', 50, squeezer) 380 expandingbutton = ExpandingButton(text, 'TAGS', 50, squeezer) 417 expandingbutton = ExpandingButton('TEXT', 'TAGS', 50, squeezer) 434 expandingbutton = ExpandingButton('TEXT', 'TAGS', 50, squeezer) 451 expandingbutton = ExpandingButton('TEX 12 Squeezer global() namespace [all...] |
/third_party/python/Lib/idlelib/ |
H A D | squeezer.py | 84 class ExpandingButton(tk.Button): class 244 # which inserts an ExpandingButton instead of a long text. 261 # Create an ExpandingButton instance. 262 expandingbutton = ExpandingButton(s, tags, numoflines, self) 264 # Insert the ExpandingButton into the Text widget. 272 # Add the ExpandingButton to the Squeezer's list. 318 # Prepare an ExpandingButton. 320 expandingbutton = ExpandingButton(s, tag_name, numoflines, self) 322 # insert the ExpandingButton to the Text 326 # Insert the ExpandingButton t [all...] |
Completed in 3 milliseconds