Home
last modified time | relevance | path

Searched refs:Scrollbar (Results 1 – 25 of 60) 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.py71 from tkinter.ttk import Scrollbar
351 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 AutoHiddenScrollbar(Scrollbar):
Dhelp.py32 from tkinter.ttk import Menubutton, Scrollbar
210 self.scroll = scroll = Scrollbar(self, command=text.yview)
Dtree.py20 from tkinter.ttk import Frame, 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 Frame, Button, Checkbutton, Entry, Label, Scrollbar
159 scroll_keys_final = Scrollbar(self.frame_controls_basic,
Dconfigdialog.py18 OptionMenu, Notebook, Radiobutton, Scrollbar, Style)
277 scroll = Scrollbar(frame, command=self.extension_list.yview)
548 scroll_font = Scrollbar(frame_font_name)
1439 scroll_target_y = Scrollbar(frame_target)
1440 scroll_target_x = Scrollbar(frame_target, orient=HORIZONTAL)
1946 scroll_helplist = Scrollbar(frame_helplist)
2271 vscrollbar = Scrollbar(self, 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)
Dkill.py78 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