HomeSort by relevance Sort by last modified time
    Searched refs:Scrollbar (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/python/cpython2/Demo/tkinter/ttk/
listbox_scrollcmd.py 5 grid [ttk::scrollbar .s -command ".l yview" -orient vertical] -column 1 -row 0 -sticky ns
21 s = ttk.Scrollbar(command=l.yview, orient='vertical')
treeview_multicolumn.py 64 vsb = ttk.Scrollbar(orient="vertical", command=self.tree.yview)
65 hsb = ttk.Scrollbar(orient="horizontal", command=self.tree.xview)
dirbrowser.py 58 """Hide and show scrollbar as needed."""
68 vsb = ttk.Scrollbar(orient="vertical")
69 hsb = ttk.Scrollbar(orient="horizontal")
  /external/python/cpython2/Demo/tkinter/matt/
canvas-with-scrollbars.py 28 self.draw.scrollX = Scrollbar(self, orient=HORIZONTAL)
29 self.draw.scrollY = Scrollbar(self, orient=VERTICAL)
  /external/python/cpython2/Lib/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
FileDialog.py 69 self.filesbar = Scrollbar(self.midframe)
80 self.dirsbar = Scrollbar(self.midframe)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
FileDialog.py 69 self.filesbar = Scrollbar(self.midframe)
80 self.dirsbar = Scrollbar(self.midframe)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
FileDialog.py 69 self.filesbar = Scrollbar(self.midframe)
80 self.dirsbar = Scrollbar(self.midframe)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
FileDialog.py 69 self.filesbar = Scrollbar(self.midframe)
80 self.dirsbar = Scrollbar(self.midframe)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
tktools.py 90 vbar = Scrollbar(frame, takefocus=takefocus)
95 vbar = Scrollbar(frame, name="vbar", takefocus=takefocus)
105 hbar = Scrollbar(frame, orient=HORIZONTAL, name="hbar",
  /external/python/cpython2/Tools/webchecker/
tktools.py 90 vbar = Scrollbar(frame, takefocus=takefocus)
95 vbar = Scrollbar(frame, name="vbar", takefocus=takefocus)
105 hbar = Scrollbar(frame, orient=HORIZONTAL, name="hbar",
  /external/python/cpython2/Demo/tkinter/guido/
rmt.py 18 # text widget, scrollbar on right.
27 s = Scrollbar(f, relief=FLAT)
mbox.py 57 folderbar = Scrollbar(right, {'relief': 'sunken', 'bd': 2})
83 scanbar = Scrollbar(left, {'relief': 'sunken', 'bd': 2})
  /external/python/cpython2/Lib/idlelib/
textView.py 52 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
help.py 18 HelpFrame - Contain text, scrollbar, and table-of-contents.
30 from Tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton
201 "Display html text, scrollbar, and toc."
206 scroll = Scrollbar(self, command=text.yview)
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
textView.py 46 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
textView.py 46 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
textView.py 46 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
textView.py 46 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
  /system/extras/simpleperf/scripts/
report.py 217 yscrollbar = Scrollbar(report_frame)
219 xscrollbar = Scrollbar(report_frame, orient=HORIZONTAL)
  /external/python/cpython2/Demo/turtle/
turtleDemo.py 115 self.vbar = vbar = Scrollbar(text_frame, name='vbar')
118 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)

Completed in 347 milliseconds

1 2 3 4