Home
last modified time | relevance | path

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

123

/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/cpython3/Lib/tkinter/
Dscrolledtext.py16 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
Dfiledialog.py74 self.filesbar = Scrollbar(self.midframe)
85 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.py70 from tkinter.ttk import Scrollbar
358 scrollbar = Scrollbar(frameLabel, command=text.yview)
/external/python/cpython3/Lib/idlelib/
Dtextview.py5 from tkinter.ttk import Scrollbar
52 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
Dscrolledlist.py2 from tkinter.ttk import Scrollbar
16 self.vbar = vbar = Scrollbar(frame, name="vbar")
Dhelp.py32 from tkinter.ttk import Menubutton, Scrollbar
203 self.scroll = scroll = Scrollbar(self, command=text.yview)
Dtree.py20 from tkinter.ttk import Scrollbar
422 self.vbar = Scrollbar(self.frame, name="vbar")
424 self.hbar = Scrollbar(self.frame, name="hbar", orient="horizontal")
Dconfig_key.py5 from tkinter.ttk import Scrollbar
110 scrollKeysFinal=Scrollbar(self.frameControlsBasic,orient=VERTICAL,
Dconfigdialog.py13 from tkinter.ttk import Scrollbar
139 scrollFont = Scrollbar(frameFontName)
313 scrollTargetY = Scrollbar(frameTarget)
314 scrollTargetX = Scrollbar(frameTarget, orient=HORIZONTAL)
421 scrollHelpList = Scrollbar(frameHelpList)
1253 scroll = Scrollbar(frame, command=self.extension_list.yview)
1430 vscrollbar = Scrollbar(self, orient=VERTICAL)
Dautocomplete_w.py5 from tkinter.ttk import Scrollbar
187 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
/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)
/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.py52 self.scrollbarView = Scrollbar(frameText, orient=VERTICAL,
DScrolledList.py13 self.vbar = vbar = Scrollbar(frame, name="vbar")
/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)
/external/python/cpython2/Lib/idlelib/idle_test/
Dhtest.py347 scrollbar = tk.Scrollbar(frameLabel, command=text.yview)

123