Searched refs:scroll (Results 101 - 125 of 241) sorted by relevance

12345678910

/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Dsnamp.tcl63 scrollbar .frame.scroll -command ".frame.list yview"
64 listbox .frame.list -yscroll ".frame.scroll set" -setgrid 1 -selectmode single -exportselection false -height 16
65 pack .frame.scroll -side right -fill y
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A Dmwutil.tcl481 # Parses a list of arguments of the form "moveto <fraction>" or "scroll
496 } elseif {[string first $opt "scroll"] == 0} {
498 wrongNumArgs "scroll number units|pages"
504 return [list scroll $number units]
506 return [list scroll $number pages]
511 return -code error "unknown option \"$opt\": must be moveto or scroll"
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dtreeview.tcl40 bind Treeview <KeyPress-Prior> { %W yview scroll -1 pages }
41 bind Treeview <KeyPress-Next> { %W yview scroll 1 pages }
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dtwind.tcl27 text $t -yscrollcommand "$w.scroll set" -setgrid true -font $font -width 70 \
30 scrollbar $w.scroll -command "$t yview"
31 pack $w.scroll -side right -fill y
/macosx-10.9.5/ncurses-42/ncurses/c++/
H A Dcursesw.h608 #ifdef scroll
609 inline int UNDEF(scroll)(WINDOW *win) { return scroll(win); } function
610 #undef scroll macro
611 #define scroll UNDEF(scroll) macro
1208 int scroll(int amount=1) { return ::wscrl(w, amount); } function in class:NCursesWindow
1209 // Scroll amount lines. If amount is positive, scroll up, otherwise
1210 // scroll down.
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dprogress.vim82 syn keyword ProgressReserved scroll sdbname search seek select self session set setuser[id] share[-lock] shared show-stat[s] skip some space status stream
162 syn keyword ProgressOperator name native ne new-row next-col[umn] next-sibling next-tab-ite[m] next-value no-apply no-assign no-bind-where no-box no-column-scroll[ing] no-convert no-current-value
171 syn keyword ProgressOperator screen-val[ue] scroll-bars scroll-delta scroll-horiz-value scroll-offset scroll-to-current-row scroll-to-i[tem] scroll-to-selected-row scroll
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderEmbeddedObject.cpp571 bool RenderEmbeddedObject::scroll(ScrollDirection direction, ScrollGranularity granularity, float, Node**) function in class:WebCore::RenderEmbeddedObject
576 return toPluginViewBase(widget())->scroll(direction, granularity);
582 return scroll(logicalToPhysical(direction, true, false), granularity, multiplier, stopNode);
/macosx-10.9.5/WebCore-7537.78.1/Resources/blackberry/
H A DtimeControlBlackBerry.js198 _scrollListener = scroll.bind(this);
206 function scroll(evt) { function
H A DcolorControlBlackBerry.css179 overflow-y: scroll;
186 overflow-y: scroll;
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DChrome.cpp97 void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) function in class:WebCore::Chrome
99 m_client->scroll(scrollDelta, rectToScroll, clipRect);
H A DDOMWindow.h250 void scroll(int x, int y) const { scrollTo(x, y); } function in class:WebCore::DOMWindow
338 DEFINE_ATTRIBUTE_EVENT_LISTENER(scroll);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollbar.cpp224 if (m_scrollableArea && m_scrollableArea->scroll(pressedPartScrollDirection(), pressedPartScrollGranularity()))
242 // We can't scroll if we've hit the beginning or end.
378 handled = m_scrollableArea && m_scrollableArea->scroll(pressedPartScrollDirection(), pressedPartScrollGranularity());
H A DScrollableArea.h46 bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1);
50 // Should be called when the scroll position changes externally, for example if the scroll layer position
54 // Allows subclasses to handle scroll position updates themselves. If this member function
55 // returns true, the scrollable area won't actually update the scroll position and instead
61 // Functions for controlling if you can scroll past the end of the document.
165 // Returns the bounding box of this scrollable area, in the coordinate system of the enclosing scroll view.
179 // Let subclasses provide a way of asking for and servicing scroll
221 // scroll of the content.
/macosx-10.9.5/emacs-92/emacs/etc/
H A Drefcard.tex305 \key{scroll help window}{C-M-v}
354 \key{scroll to next screen}{C-v}
355 \key{scroll to previous screen}{M-v}
356 \key{scroll left}{C-x <}
357 \key{scroll right}{C-x >}
358 \key{scroll current line to center of screen}{C-u C-l}
420 \key{scroll other window}{C-M-v}
584 \key{scroll forward}{SPC}
585 \key{scroll reverse}{DEL}
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dspinbox.tcl543 # "after" command so that the window continues to scroll until the
554 $w xview scroll 2 units
557 $w xview scroll -2 units
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dspinbox.tcl537 # "after" command so that the window continues to scroll until the
548 $w xview scroll 2 units
551 $w xview scroll -2 units
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DEventNames.h112 macro(scroll) \
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGElementInstance.h141 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), scroll); member in class:WebCore::SVGElementInstance
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DBackingStore_p.h126 // The functions repaint(), slowScroll(), scroll(), scrollingStartedHelper() are
132 void scroll(const Platform::IntSize& delta, const Platform::IntRect& scrollViewRect, const Platform::IntRect& clipRect);
225 // This is called during scroll and by the render queue.
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DChromeClientBlackBerry.h75 virtual void scroll(const IntSize&, const IntRect&, const IntRect&);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DChromeClientEfl.h170 virtual void scroll(const IntSize&, const IntRect&, const IntRect&);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DChromeClientQt.h123 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
/macosx-10.9.5/WebKit-7537.78.2/qt/WidgetApi/
H A Dqwebframe.h164 void scroll(int, int);
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebChromeClient.h99 virtual void scroll(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect& clipRect);
/macosx-10.9.5/WebKit-7537.78.2/wince/WebCoreSupport/
H A DChromeClientWinCE.cpp248 void ChromeClientWinCE::scroll(const IntSize&, const IntRect& rectToScroll, const IntRect&) function in class:WebKit::ChromeClientWinCE

Completed in 242 milliseconds

12345678910