Home
last modified time | relevance | path

Searched refs:Scrollbar (Results 1 – 25 of 66) sorted by relevance

123

/external/python/cpython3/Lib/tkinter/
Dscrolledtext.py14 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
23 self.vbar = Scrollbar(self.frame)
Dfiledialog.py23 Toplevel, RIGHT, Y, END, Listbox, BOTH, Scrollbar,
80 self.filesbar = Scrollbar(self.midframe)
91 self.dirsbar = Scrollbar(self.midframe)
/external/python/cpython2/Lib/lib-tk/
DScrolledText.py16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
DFileDialog.py69 self.filesbar = Scrollbar(self.midframe)
80 self.dirsbar = Scrollbar(self.midframe)
/external/python/cpython2/Demo/tkinter/matt/
Dcanvas-with-scrollbars.py28 self.draw.scrollX = Scrollbar(self, orient=HORIZONTAL)
29 self.draw.scrollY = Scrollbar(self, orient=VERTICAL)
/external/python/cpython2/Demo/tkinter/ttk/
Dtreeview_multicolumn.py64 vsb = ttk.Scrollbar(orient="vertical", command=self.tree.yview)
65 hsb = ttk.Scrollbar(orient="horizontal", command=self.tree.xview)
Ddirbrowser.py68 vsb = ttk.Scrollbar(orient="vertical")
69 hsb = ttk.Scrollbar(orient="horizontal")
Dlistbox_scrollcmd.py21 s = ttk.Scrollbar(command=l.yview, orient='vertical')
/external/python/cpython3/Lib/idlelib/idle_test/
Dhtest.py72 from tkinter.ttk import Scrollbar
382 scrollbar = Scrollbar(frameLabel, command=text.yview)
/external/python/cpython3/Lib/idlelib/
Dscrolledlist.py2 from tkinter.ttk import Frame, Scrollbar
16 self.vbar = vbar = Scrollbar(frame, name="vbar")
Dtextview.py6 from tkinter.ttk import Frame, Scrollbar, Button
12 class AutoHideScrollbar(Scrollbar):
Dhelp.py32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style
219 self.scroll = scroll = Scrollbar(self, command=text.yview)
Dtree.py20 from tkinter.ttk import Frame, Scrollbar
450 self.vbar = Scrollbar(self.frame, name="vbar")
452 self.hbar = Scrollbar(self.frame, name="hbar", orient="horizontal")
Dconfig_key.py5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar
159 scroll_keys_final = Scrollbar(self.frame_controls_basic,
/external/python/cpython2/Tools/webchecker/
Dtktools.py90 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/
Dmbox.py57 folderbar = Scrollbar(right, {'relief': 'sunken', 'bd': 2})
83 scanbar = Scrollbar(left, {'relief': 'sunken', 'bd': 2})
Drmt.py27 s = Scrollbar(f, relief=FLAT)
Dkill.py78 self.frame.vscroll = Scrollbar(self.frame, orient=VERTICAL)
Dsvkill.py103 self.frame.vscroll = Scrollbar(self.frame, orient=VERTICAL)
/external/python/cpython2/Lib/idlelib/
Dhelp.py30 from Tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton
206 scroll = Scrollbar(self, command=text.yview)
DtextView.py53 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
DScrolledList.py13 self.vbar = vbar = Scrollbar(frame, name="vbar")
/external/python/cpython2/Lib/idlelib/idle_test/
Dhtest.py347 scrollbar = tk.Scrollbar(frameLabel, command=text.yview)
/external/python/cpython2/Demo/turtle/
DturtleDemo.py115 self.vbar = vbar = Scrollbar(text_frame, name='vbar')
118 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
/external/python/cpython3/Lib/turtledemo/
D__main__.py210 self.vbar = vbar = Scrollbar(text_frame, name='vbar')
213 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)

123