/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_multicall.py | 40 # (it depends on yview to not be overridden) 42 self.assertIs(mc.yview, Text.yview) 44 self.assertIs(mctext.yview.__func__, Text.yview)
|
H A D | test_codecontext.py | 79 self.text.yview(0) 164 cc.text.yview(11) 234 cc.text.yview(1) 241 cc.text.yview(2) 248 cc.text.yview(3) 255 cc.text.yview(4) 265 cc.text.yview(11) 293 cc.text.yview(5) 311 cc.text.yview('2.0') 319 cc.text.yview('12. [all...] |
H A D | test_tree.py | 35 # Fake widget class containing `yview` only. 39 def yview(widget, *args): member in TestScrollEvent.test_wheel_event._Widget
|
H A D | htest.py | 382 scrollbar = Scrollbar(frameLabel, command=text.yview)
|
H A D | test_config_key.py | 167 yview = Func() variable in KeySelectionTest.Basic.__init__.list_keys_final
|
/third_party/python/Lib/tkinter/ |
H A D | scrolledtext.py | 29 self.vbar['command'] = self.yview
|
H A D | __init__.py | 1980 def yview(self, *args): member in YView 1982 res = self.tk.call(self._w, 'yview', *args) 1989 self.tk.call(self._w, 'yview', 'moveto', fraction) 1994 self.tk.call(self._w, 'yview', 'scroll', number, what) 3999 self.tk.call((self._w, 'yview', '-pickplace') + what)
|
/third_party/python/Lib/idlelib/ |
H A D | help.py | 219 self.scroll = scroll = Scrollbar(self, command=text.yview) 233 drop.add_command(label=lbl, command=lambda dex=dex:text.yview(dex))
|
H A D | config_key.py | 128 command=self.list_keys_final.yview) 220 self.list_keys_final.yview('moveto', '0.0')
|
H A D | codecontext.py | 237 self.text.yview(f'{newtop}.0')
|
H A D | scrolledlist.py | 24 vbar["command"] = listbox.yview
|
H A D | textview.py | 57 command=text.yview)
|
H A D | tree.py | 73 This function depends on widget.yview to not be overridden by 80 widget.yview(SCROLL, lines, 'units') 455 self.vbar['command'] = self.canvas.yview
|
H A D | configdialog.py | 354 scroll_font.config(command=self.fontlist.yview) 1234 scroll_target_y['command'] = self.bindingslist.yview 1939 scroll = Scrollbar(frame_ext, command=self.extension_list.yview) 2122 scroll_helplist['command'] = self.helplist.yview 2382 vscrollbar.config(command=canvas.yview)
|
H A D | iomenu.py | 178 self.text.yview("insert")
|
H A D | debugger.py | 482 vbar["command"] = canvas.yview
|
H A D | autocomplete_w.py | 201 scrollbar.config(command=listbox.yview)
|
H A D | editor.py | 547 self.text.yview(event, *args) 1087 text.yview(float(newtop))
|
/third_party/python/Lib/turtledemo/ |
H A D | __main__.py | 218 vbar['command'] = text.yview
|
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 353 listScroll = tk.Scrollbar(listFrame, command=self.errorListbox.yview)
|
/third_party/python/Lib/ |
H A D | turtle.py | 348 self.vscroll = TK.Scrollbar(master, command=self._canvas.yview)
|