Searched refs:scroll (Results 1 - 25 of 175) sorted by relevance

1234567

/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dscrollbox.rb15 #scroll = Tk::Scrollbar.new(@frame)
17 scroll = TkScrollbar.new(@frame)
21 list.configure 'yscroll', scroll.path+" set"
23 scroll.configure 'command', list.path+" yview"
24 scroll.pack 'side'=>'right','fill'=>'y'
26 list.yscrollbar(scroll)
28 scroll.pack('side'=>'right','fill'=>'y')
32 delegate('background', list, scroll)
H A Dscrollbar.rb134 def scroll(*args) method in class:Tk
135 tk_send_without_enc('scroll', *args)
140 scroll(num, 'units')
145 scroll(num, 'pages')
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsolePrompt.css35 .console-prompt > .CodeMirror-scroll {
H A DTimelineOverview.css26 .timeline-overview > .scroll-container {
37 .timeline-overview:hover > .scroll-container {
41 .timeline-overview > .scroll-container:hover {
74 .timeline-overview > .scroll-container > .scroll-width-sizer {
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/gtk/
H A DWebPageGtk.cpp84 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
102 scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
105 scroll(m_page.get(), ScrollLeft, ScrollByLine);
108 scroll(m_page.get(), ScrollRight, ScrollByLine);
111 scroll(m_page.get(), ScrollUp, ScrollByLine);
114 scroll(m_page.get(), ScrollDown, ScrollByLine);
117 scroll(m_page.get(), ScrollUp, ScrollByDocument);
120 scroll(m_page.get(), ScrollDown, ScrollByDocument);
123 scroll(m_page.get(), ScrollUp, ScrollByPage);
126 scroll(m_pag
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/efl/
H A DWebPageEfl.cpp79 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
97 scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
100 scroll(m_page.get(), ScrollLeft, ScrollByLine);
103 scroll(m_page.get(), ScrollRight, ScrollByLine);
106 scroll(m_page.get(), ScrollUp, ScrollByLine);
109 scroll(m_page.get(), ScrollDown, ScrollByLine);
112 scroll(m_page.get(), ScrollUp, ScrollByDocument);
115 scroll(m_page.get(), ScrollDown, ScrollByDocument);
118 scroll(m_page.get(), ScrollUp, ScrollByPage);
121 scroll(m_pag
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/ttk/
H A Dutils.tcl329 bind TtkScrollable <ButtonPress-4> { %W yview scroll -5 units }
330 bind TtkScrollable <ButtonPress-5> { %W yview scroll 5 units }
331 bind TtkScrollable <Shift-ButtonPress-4> { %W xview scroll -5 units }
332 bind TtkScrollable <Shift-ButtonPress-5> { %W xview scroll 5 units }
336 { %W yview scroll [expr {-(%D/120)}] units }
338 { %W xview scroll [expr {-(%D/120)}] units }
342 { %W yview scroll [expr {-(%D)}] units }
344 { %W xview scroll [expr {-(%D)}] units }
346 { %W yview scroll [expr {-10*(%D)}] units }
348 { %W xview scroll [exp
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32console.c85 the console with a large scroll-back buffer. */
176 SMALL_RECT scroll; local
183 scroll.Top = vpos - n;
184 scroll.Bottom = FRAME_LINES (f);
189 scroll.Top = vpos;
190 scroll.Bottom = FRAME_LINES (f) - n;
193 scroll.Left = 0;
194 scroll.Right = FRAME_COLS (f);
201 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill);
203 /* Here we have to deal with a w32 console flake: If the scroll
249 SMALL_RECT scroll; local
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/
H A Dlistbox.tcl87 %W xview scroll -1 units
90 %W xview scroll -1 pages
93 %W xview scroll 1 units
96 %W xview scroll 1 pages
99 %W yview scroll -1 pages
103 %W yview scroll 1 pages
107 %W xview scroll -1 pages
110 %W xview scroll 1 pages
184 %W yview scroll [expr {- (%D)}] units
187 %W yview scroll [exp
[all...]
H A Dtext.tcl152 %W xview scroll -1 page
155 %W xview scroll 1 page
449 %W yview scroll [expr {-15 * (%D)}] pixels
452 %W yview scroll [expr {-150 * (%D)}] pixels
455 %W xview scroll [expr {-15 * (%D)}] pixels
458 %W xview scroll [expr {-150 * (%D)}] pixels
469 %W yview scroll [expr {-%D/3}] pixels
471 %W yview scroll [expr {(2-%D)/3}] pixels
480 # http://www.inria.fr/koala/colas/mouse-wheel-scroll/
483 %W yview scroll
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/
H A Dlistbox.tcl87 %W xview scroll -1 units
90 %W xview scroll -1 pages
93 %W xview scroll 1 units
96 %W xview scroll 1 pages
99 %W yview scroll -1 pages
103 %W yview scroll 1 pages
107 %W xview scroll -1 pages
110 %W xview scroll 1 pages
183 %W yview scroll [expr {- (%D)}] units
186 %W yview scroll [exp
[all...]
H A Dtext.tcl151 %W xview scroll -1 page
154 %W xview scroll 1 page
459 %W yview scroll [expr {- (%D)}] units
462 %W yview scroll [expr {-10 * (%D)}] units
465 %W xview scroll [expr {- (%D)}] units
468 %W xview scroll [expr {-10 * (%D)}] units
472 %W yview scroll [expr {- (%D / 120) * 4}] units
480 # http://www.inria.fr/koala/colas/mouse-wheel-scroll/
483 %W yview scroll -5 units
488 %W yview scroll
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dbrowse17 scrollbar .scroll -command ".list yview"
18 pack .scroll -side right -fill y
19 listbox .list -yscroll ".scroll set" -relief sunken -width 20 -height 20 \
H A Dstates.tcl31 scrollbar $w.frame.scroll -command "$w.frame.list yview"
32 listbox $w.frame.list -yscroll "$w.frame.scroll set" -setgrid 1 -height 12
33 pack $w.frame.scroll -side right -fill y
H A Dcscroll.tcl65 %W yview scroll [expr {- (%D)}] units
68 %W yview scroll [expr {-10 * (%D)}] units
71 %W xview scroll [expr {- (%D)}] units
74 %W xview scroll [expr {-10 * (%D)}] units
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dbrowse15 scrollbar .scroll -command ".list yview"
16 pack .scroll -side right -fill y
17 listbox .list -yscroll ".scroll set" -relief sunken -width 20 -height 20 \
H A Dcscroll.tcl65 %W yview scroll [expr {- (%D)}] units
68 %W yview scroll [expr {-10 * (%D)}] units
71 %W xview scroll [expr {- (%D)}] units
74 %W xview scroll [expr {-10 * (%D)}] units
H A Dstates.tcl31 scrollbar $w.frame.scroll -command "$w.frame.list yview"
32 listbox $w.frame.list -yscroll "$w.frame.scroll set" -setgrid 1 -height 12
33 pack $w.frame.scroll -side right -fill y
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A DAsync.tcl37 set scroll [scrollbar ${mainFrame}.s -command "$viewer yview"]
38 pack $scroll -side right -fill y
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/cairo/
H A DBackingStoreCairo.cpp81 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
95 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) function in class:WebKit::BackingStore
101 m_backingStore->scroll(scrollRect, scrollOffset);
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtkfrom.rb64 list = scroll = nil
68 scroll.set *idx
77 scroll = TkScrollbar.new(f) {
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDPointingDevice.h48 static IOHIDPointingDevice * newPointingDeviceAndStart(IOService * owner, UInt8 numButtons = 8, UInt32 resolution = 100, bool scroll = false, UInt32 location = 0);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DBackingStore.h63 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.css8 .CodeMirror-scroll {
119 .CodeMirror-scroll {
148 overflow-y: scroll;
153 overflow-x: scroll;
224 .CodeMirror-wrap .CodeMirror-scroll {
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.css8 .CodeMirror-scroll {
119 .CodeMirror-scroll {
148 overflow-y: scroll;
153 overflow-x: scroll;
224 .CodeMirror-wrap .CodeMirror-scroll {

Completed in 147 milliseconds

1234567