/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebwindowfeatures.cpp | 36 * scrollbar, statusbar, locationbar should be visible to the user, 211 * WebKitWebWindowFeatures:scrollbar-visible: 220 "scrollbar-visible", 221 "Scrollbar Visible", 440 "scrollbar-visible", features.scrollbarsVisible,
|
/external/webkit/Source/WebCore/platform/chromium/ |
PopupMenuChromium.cpp | 246 // Our suggested width, not including scrollbar. 258 // The scrollbar which has mouse capture. Mouse events go straight to this 260 RefPtr<Scrollbar> m_capturingScrollbar; 262 // The last scrollbar that the mouse was over. Used for mouseover highlights. 263 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; 613 Scrollbar* scrollbar = scrollbarAtPoint(event.pos()); local 614 if (scrollbar) { 615 m_capturingScrollbar = scrollbar; 633 Scrollbar* scrollbar = scrollbarAtPoint(event.pos()) local [all...] |
FramelessScrollView.h | 65 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&);
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_theme_service.cc | 437 "scrollbar-slider-prelight-color", &theme_thumb_active, 438 "scrollbar-slider-normal-color", &theme_thumb_inactive, 439 "scrollbar-trough-color", &theme_trough_color, 442 // Ask the theme if the theme specifies all the scrollbar colors and short 451 // Create window containing scrollbar elements 454 GtkWidget* scrollbar = gtk_hscrollbar_new(NULL); local 456 gtk_container_add(GTK_CONTAINER(fixed), scrollbar); local 458 gtk_widget_realize(scrollbar); 460 // Draw scrollbar thumb part and track into offscreen image 463 GtkStyle* style = gtk_rc_get_style(scrollbar); [all...] |
/external/webkit/Source/WebCore/platform/ |
ScrollAnimatorWin.cpp | 97 // on a scrollbar part (where the request rate can be obtained from the 98 // scrollbar theme) feel smooth, responsive, and similar. 100 // When autoscrolling, the scrollbar's autoscroll timer will call us to 168 // scroll in the same time period as single presses of scrollbar elements; 169 // holding the mouse down on a scrollbar part will scroll as fast as 171 // scroll with the same time lag as holding down the mouse on a scrollbar
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/ |
ImageCanvas.java | 39 import org.eclipse.swt.widgets.ScrollBar; 48 private ScrollBar mHorizontalScrollBar; 49 private ScrollBar mVerticalScrollBar;
|
/developers/samples/android/ui/lists/CustomChoiceList/res/layout/ |
activity_main.xml | 43 you should set the android:scrollbarStyle such that the scrollbar
|
/external/webkit/Source/WebCore/css/ |
CSSSelector.cpp | 146 return SCROLLBAR; 291 DEFINE_STATIC_LOCAL(AtomicString, scrollbar, ("-webkit-scrollbar")); 292 DEFINE_STATIC_LOCAL(AtomicString, scrollbarButton, ("-webkit-scrollbar-button")); 293 DEFINE_STATIC_LOCAL(AtomicString, scrollbarCorner, ("-webkit-scrollbar-corner")); 294 DEFINE_STATIC_LOCAL(AtomicString, scrollbarThumb, ("-webkit-scrollbar-thumb")); 295 DEFINE_STATIC_LOCAL(AtomicString, scrollbarTrack, ("-webkit-scrollbar-track")); 296 DEFINE_STATIC_LOCAL(AtomicString, scrollbarTrackPiece, ("-webkit-scrollbar-track-piece")); 389 nameToPseudoType->set(scrollbar.impl(), CSSSelector::PseudoScrollbar);
|
/external/webkit/Source/WebCore/platform/android/ |
WidgetAndroid.cpp | 94 // platformWidget() is 0 when called from Scrollbar
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDynamicScrollBarsViewInternal.h | 60 // scrollbar.
|
WebFramePrivate.h | 133 // Sets if the scrollbar is always hidden, regardless of other scrollbar visibility settings.
|
/sdk/eclipse/ |
dictionary.txt | 263 scrollbar
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-completion39.txt | 96 android:scrollbarStyle : Controls the scrollbar style and position. [enum] 99 android:scrollbarFadeDuration : Defines the delay in milliseconds that a scrollbar takes to fade out. [integer] 100 android:scrollbarDefaultDelayBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integer] 102 android:scrollbarThumbHorizontal : Defines the horizontal scrollbar thumb drawable. [reference] 103 android:scrollbarThumbVertical : Defines the vertical scrollbar thumb drawable. [reference] 104 android:scrollbarTrackHorizontal : Defines the horizontal scrollbar track drawable. [reference] 105 android:scrollbarTrackVertical : Defines the vertical scrollbar track drawable. [reference] 106 android:scrollbarAlwaysDrawHorizontalTrack : Defines whether the horizontal scrollbar track should always be drawn. [boolean] 107 android:scrollbarAlwaysDrawVerticalTrack : Defines whether the vertical scrollbar track should always be drawn. [boolean]
|
completion5-expected-completion40.txt | 96 android:scrollbarStyle : Controls the scrollbar style and position. [enum] 99 android:scrollbarFadeDuration : Defines the delay in milliseconds that a scrollbar takes to fade out. [integer] 100 android:scrollbarDefaultDelayBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integer] 102 android:scrollbarThumbHorizontal : Defines the horizontal scrollbar thumb drawable. [reference] 103 android:scrollbarThumbVertical : Defines the vertical scrollbar thumb drawable. [reference] 104 android:scrollbarTrackHorizontal : Defines the horizontal scrollbar track drawable. [reference] 105 android:scrollbarTrackVertical : Defines the vertical scrollbar track drawable. [reference] 106 android:scrollbarAlwaysDrawHorizontalTrack : Defines whether the horizontal scrollbar track should always be drawn. [boolean] 107 android:scrollbarAlwaysDrawVerticalTrack : Defines whether the vertical scrollbar track should always be drawn. [boolean]
|
/external/webkit/Source/WebCore/page/ |
FrameView.cpp | 306 Scrollbar* horizontalBar = horizontalScrollbar(); 310 Scrollbar* verticalBar = verticalScrollbar(); 430 PassRefPtr<Scrollbar> FrameView::createScrollbar(ScrollbarOrientation orientation) 432 // FIXME: We need to update the scrollbar dynamically as documents change (or as doc elements and bodies get discovered that have custom styles). 435 // Try the <body> element first as a scrollbar source. 437 if (body && body->renderer() && body->renderer()->style()->hasPseudoStyle(SCROLLBAR)) 442 if (docElement && docElement->renderer() && docElement->renderer()->style()->hasPseudoStyle(SCROLLBAR)) 445 // If we have an owning iframe/frame element, then it can set the custom scrollbar also. 447 if (frameRenderer && frameRenderer->style()->hasPseudoStyle(SCROLLBAR)) 450 // Nobody set a custom style, so we just use a native scrollbar 2297 Scrollbar* scrollbar = static_cast<Scrollbar*>(widget); local [all...] |
/external/webkit/Source/WebKit/qt/Api/ |
qwebframe.cpp | 75 #include "Scrollbar.h" 267 WebCore::Scrollbar* QWebFramePrivate::horizontalScrollBar() const 274 WebCore::Scrollbar* QWebFramePrivate::verticalScrollBar() const 1040 Returns the scrollbar policy for the scrollbar defined by \a orientation. [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/ |
table_header.js | 38 * vertical scrollbar. 41 // Header should not span over the vertical scrollbar of the list.
|
/external/webkit/Source/WebCore/platform/qt/ |
ScrollbarQt.cpp | 29 #include "Scrollbar.h" 50 bool Scrollbar::contextMenu(const PlatformMouseEvent& event)
|
/external/webkit/Source/WebCore/platform/wx/wxcode/win/ |
scrollbar_render.cpp | 126 HTHEME hTheme = (HTHEME)engine->OpenThemeData(0, L"SCROLLBAR"); 155 // Unlike Mac, on MSW you draw the scrollbar piece by piece.
|
/external/webkit/Source/WebKit2/Shared/gtk/ |
WebEventFactory.cpp | 33 #include "Scrollbar.h" 161 float step = static_cast<float>(Scrollbar::pixelsPerLineStep());
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
WebThemeEngineDRTMac.mm | 133 trackInfo.trackInfo.scrollbar.viewsize = scrollbarInfo.visibleSize; 140 trackInfo.trackInfo.scrollbar.pressState =
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
HoverOverlay.java | 48 /** Vertical scaling & scrollbar information. */ 51 /** Horizontal scaling & scrollbar information. */
|
/external/webkit/Source/WebCore/rendering/ |
HitTestResult.cpp | 36 #include "Scrollbar.h" 96 , m_scrollbar(other.scrollbar()) 123 m_scrollbar = other.scrollbar(); 166 void HitTestResult::setScrollbar(Scrollbar* s) 605 m_scrollbar = other.scrollbar();
|
/external/webkit/Source/WebKit/wx/ |
WebView.cpp | 55 #include "Scrollbar.h" 941 frame->view()->scrollBy(WebCore::IntSize(-WebCore::Scrollbar::pixelsPerLineStep(), 0)); 945 frame->view()->scrollBy(WebCore::IntSize(0, -WebCore::Scrollbar::pixelsPerLineStep())); 949 frame->view()->scrollBy(WebCore::IntSize(WebCore::Scrollbar::pixelsPerLineStep(), 0)); 953 frame->view()->scrollBy(WebCore::IntSize(0, WebCore::Scrollbar::pixelsPerLineStep())); 965 frame->view()->scrollBy(WebCore::IntSize(0, -frame->view()->visibleHeight() * WebCore::Scrollbar::minFractionToStepWhenPaging())); 969 frame->view()->scrollBy(WebCore::IntSize(0, frame->view()->visibleHeight() * WebCore::Scrollbar::minFractionToStepWhenPaging()));
|
/frameworks/base/core/java/android/view/ |
View.java | [all...] |