Searched refs:Scrollbar (Results 1 – 25 of 35) sorted by relevance
12
/third_party/python/Lib/tkinter/ |
D | scrolledtext.py | 14 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place 23 self.vbar = Scrollbar(self.frame)
|
D | filedialog.py | 23 Toplevel, RIGHT, Y, END, Listbox, BOTH, Scrollbar, 82 self.filesbar = Scrollbar(self.midframe) 93 self.dirsbar = Scrollbar(self.midframe)
|
D | ttk.py | 1099 class Scrollbar(Widget, tkinter.Scrollbar): class
|
D | tix.py | 1636 class _dummyScrollbar(Scrollbar, TixSubWidget):
|
/third_party/python/Lib/idlelib/idle_test/ |
D | htest.py | 72 from tkinter.ttk import Scrollbar 382 scrollbar = Scrollbar(frameLabel, command=text.yview)
|
D | test_sidebar.py | 55 cls.editwin.vbar = tk.Scrollbar(cls.text_frame)
|
/third_party/python/Lib/idlelib/ |
D | scrolledlist.py | 2 from tkinter.ttk import Frame, Scrollbar 16 self.vbar = vbar = Scrollbar(frame, name="vbar")
|
D | textview.py | 6 from tkinter.ttk import Frame, Scrollbar, Button 12 class AutoHideScrollbar(Scrollbar):
|
D | tree.py | 20 from tkinter.ttk import Frame, Scrollbar 450 self.vbar = Scrollbar(self.frame, name="vbar") 452 self.hbar = Scrollbar(self.frame, name="hbar", orient="horizontal")
|
D | help.py | 32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style 219 self.scroll = scroll = Scrollbar(self, command=text.yview)
|
D | config_key.py | 5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar 161 scroll_keys_final = Scrollbar(self.frame_controls_basic,
|
D | configdialog.py | 20 OptionMenu, Notebook, Radiobutton, Scrollbar, Style, 353 scroll_font = Scrollbar(frame_font_name) 1228 scroll_target_y = Scrollbar(frame_target) 1229 scroll_target_x = Scrollbar(frame_target, orient=HORIZONTAL) 1939 scroll = Scrollbar(frame_ext, command=self.extension_list.yview) 2121 scroll_helplist = Scrollbar(frame_helplist) 2377 vscrollbar = Scrollbar(self, orient=VERTICAL)
|
D | autocomplete_w.py | 7 from tkinter.ttk import Scrollbar 199 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
|
D | debugger.py | 5 from tkinter.ttk import Frame, Scrollbar 475 self.vbar = vbar = Scrollbar(frame, name="vbar")
|
D | sidebar.py | 534 editwin.vbar = tk.Scrollbar(text_frame)
|
D | editor.py | 14 from tkinter.ttk import Scrollbar 124 self.vbar = vbar = Scrollbar(text_frame, name='vbar')
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 217 self.vbar = vbar = Scrollbar(text_frame, name='vbar') 220 self.hbar = hbar = Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
|
/third_party/python/Tools/pynche/ |
D | ListViewer.py | 45 self.__scrollbar = Scrollbar(frame)
|
D | PyncheWidget.py | 233 scrollbar = Scrollbar(root)
|
/third_party/python/Tools/unittestgui/ |
D | unittestgui.py | 353 listScroll = tk.Scrollbar(listFrame, command=self.errorListbox.yview)
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 1135 - Scrollbar: Fixed an issue where scrollbars wouldn't display on the frame following a frame where 1288 - Scrollbar: Avoid overlapping the opposite side when window (often a child window) is forcibly too… 1375 - Scrollbar: Minor bounding box adjustment to cope with various border size. 1376 - Scrollbar, Style: Changed default style.ScrollbarSize from 16 to 14. 1480 - Combo, Slider, Scrollbar: Improve rendering in situation when there's only a few pixels available… 1627 - Scrollbar: Fade out and disable interaction when too small, in order to facilitate using the resi… 2196 - Scrollbar: Fixed ScrollbarY enable test after ScrollbarX has been enabled being a little off (sma… 2197 - Scrollbar: Fixed ScrollbarX enable test subtracting WindowPadding.x (this has been there since th… 2353 - Scrollbar: Fixed issues with vertical scrollbar flickering/appearing, typically when manually res… 2354 - Scrollbar: Minor graphical fix for when scrollbar don't have enough visible space to display the … [all …]
|
/third_party/python/Doc/library/ |
D | tkinter.ttk.rst | 48 :class:`Radiobutton`, :class:`Scale` and :class:`Scrollbar`) to 72 :class:`Radiobutton`, :class:`Scale`, :class:`Scrollbar`, and :class:`Spinbox`. 155 | | :meth:`Scrollbar.set` of some scrollbar. This will cause|
|
/third_party/python/Lib/ |
D | turtle.py | 345 self.hscroll = TK.Scrollbar(master, command=self._canvas.xview, 347 self.vscroll = TK.Scrollbar(master, command=self._canvas.yview)
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 1000 return tkinter.Scrollbar(self.root, **kwargs)
|
/third_party/mesa3d/src/imgui/ |
D | imgui_internal.h | 1466 IMGUI_API void Scrollbar(ImGuiLayoutType direction);
|
12