/external/webkit/Source/WebCore/platform/gtk/ |
ScrollViewGtk.cpp | 65 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation) 67 // If this is an interior frame scrollbar, we want to create a totally fake 68 // scrollbar with no GtkAdjustment backing it. 70 return Scrollbar::createNativeScrollbar(this, orientation, RegularScrollbar); 72 // If this is the main frame, we want to create a Scrollbar that does no painting 112 int horizontalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1); 116 resetValues ? 0 : Scrollbar::pixelsPerLineStep(), 151 int verticalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1) [all...] |
MainFrameScrollbarGtk.cpp | 39 // scrollbar has an m_adjustment, it belongs to the container (a GtkWidget such 46 : Scrollbar(scrollableArea, orientation, RegularScrollbar) 85 // reset the values so that the surrounding scrollbar gets updated, or 86 // e.g. for a GtkScrolledWindow the scrollbar gets hidden. 115 // scrollbar. If this is the case, deactivate this signal handler. WebCore will 116 // create a fresh MainFrameScrollbar when the scrollbar reappears.
|
MainFrameScrollbarGtk.h | 24 #include "Scrollbar.h" 31 class MainFrameScrollbarGtk : public Scrollbar {
|
/external/webkit/Source/WebKit/chromium/src/ |
WebScrollbarImpl.h | 40 class Scrollbar; 62 virtual int scrollPosition(WebCore::Scrollbar*) const; 64 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&); 70 virtual WebCore::Scrollbar* horizontalScrollbar() const; 71 virtual WebCore::Scrollbar* verticalScrollbar() const; 84 RefPtr<WebCore::Scrollbar> m_scrollbar;
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/ |
webkit | 41 -webkit-scrollbar 42 -webkit-scrollbar-button 43 -webkit-scrollbar-corner 44 -webkit-scrollbar-thumb 45 -webkit-scrollbar-track 46 -webkit-scrollbar-track-piece
|
/external/webkit/Source/WebCore/platform/efl/ |
ScrollbarEfl.h | 32 #include "Scrollbar.h" 37 class ScrollbarEfl : public Scrollbar { 39 friend class Scrollbar;
|
PlatformWheelEventEfl.cpp | 34 #include "Scrollbar.h" 68 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep()); 69 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/ |
scrollbar.edc | 21 name: "scrollbar.vertical"; 28 image: "widget/scrollbar/scrollbar_v.png" COMP; 29 image: "widget/scrollbar/scrollbar_knob_v.png" COMP; 110 name: "img.scrollbar"; 120 normal: "widget/scrollbar/scrollbar_v.png"; 159 normal: "widget/scrollbar/scrollbar_knob_v.png"; 198 name: "scrollbar.horizontal"; 205 image: "widget/scrollbar/scrollbar_h.png" COMP; 206 image: "widget/scrollbar/scrollbar_knob_h.png" COMP; 287 name: "img.scrollbar"; [all...] |
/external/webkit/Source/WebCore/manual-tests/ |
autoscroll-over-scrollbar.html | 4 <p>Click down somewhere in this text, then move the pointer over the scrollbar at the bottom of the window, stop there, holding the mouse button down.</p>
|
user-drag-with-decorations.html | 1 This tests that we don't include overflow decorations from our ancestor nodes in the drag image for -webkit-user-drag: element. To perform this test drag the green square below. The drag image should not contain any parts of the scrollbar graphics visible on the page.
|
/external/webkit/Source/WebCore/platform/chromium/ |
FramelessScrollView.cpp | 46 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect) 50 dirtyRect.move(scrollbar->x(), scrollbar->y());
|
/external/webkit/Source/WebCore/rendering/ |
RenderListBox.h | 103 virtual int scrollPosition(Scrollbar*) const; 105 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&); 110 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const; 111 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const; 112 virtual IntPoint convertFromScrollbarToContainingView(const Scrollbar*, const IntPoint&) const; 113 virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint&) const; 114 virtual Scrollbar* verticalScrollbar() const { return m_vBar.get(); } 127 PassRefPtr<Scrollbar> createScrollbar(); 146 RefPtr<Scrollbar> m_vBar;
|
RenderScrollbar.cpp | 37 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, RenderBox* renderer, Frame* owningFrame) 43 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme()) 47 // FIXME: We need to do this because RenderScrollbar::styleChanged is called as soon as the scrollbar is created. 49 // Update the scrollbar size. 81 Scrollbar::setParent(parent); 83 // Destroy all of the scrollbar's RenderBoxes. 91 Scrollbar::setEnabled(e); 107 Scrollbar::paint(context, damageRect); 128 Scrollbar::setPressedPart(part); 163 // This is because WebKit assumes scrollbar to be always painted and missing backgroun [all...] |
/external/webkit/Source/WebCore/platform/wx/ |
ScrollViewWx.cpp | 33 #include "Scrollbar.h" 87 pos.x += Scrollbar::pixelsPerLineStep(); 89 pos.y += Scrollbar::pixelsPerLineStep(); 93 pos.x -= Scrollbar::pixelsPerLineStep(); 95 pos.y -= Scrollbar::pixelsPerLineStep(); 99 pos.x -= max<int>(m_scrollView->visibleWidth() * Scrollbar::minFractionToStepWhenPaging(), m_scrollView->visibleWidth() - Scrollbar::maxOverlapBetweenPages()); 101 pos.y -= max<int>(m_scrollView->visibleHeight() * Scrollbar::minFractionToStepWhenPaging(), m_scrollView->visibleHeight() - Scrollbar::maxOverlapBetweenPages()); 105 pos.x += max<int>(m_scrollView->visibleWidth() * Scrollbar::minFractionToStepWhenPaging(), m_scrollView->visibleWidth() - Scrollbar::maxOverlapBetweenPages() (…) [all...] |
/external/webkit/Source/WebCore/platform/ |
ScrollView.cpp | 43 #include "Scrollbar.h" 137 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation) 139 return Scrollbar::createNativeScrollbar(this, orientation, RegularScrollbar); 365 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local 366 return scrollbar ? (scrollbar->totalSize() - scrollbar->visibleSize()) : 0; 427 int ScrollView::scrollPosition(Scrollbar* scrollbar) cons [all...] |
ScrollAnimator.cpp | 86 Scrollbar* horizontalScrollbar = m_scrollableArea->horizontalScrollbar(); 87 Scrollbar* verticalScrollbar = m_scrollableArea->verticalScrollbar(); 89 // Accept the event if we have a scrollbar in that direction and can still 104 deltaY = max(max(static_cast<float>(m_scrollableArea->visibleHeight()) * Scrollbar::minFractionToStepWhenPaging(), static_cast<float>(m_scrollableArea->visibleHeight() - Scrollbar::maxOverlapBetweenPages())), 1.0f);
|
/external/webkit/Source/WebCore/platform/mac/ |
ScrollAnimatorMac.h | 52 class Scrollbar; 112 virtual void didAddVerticalScrollbar(Scrollbar*); 113 virtual void willRemoveVerticalScrollbar(Scrollbar*); 114 virtual void didAddHorizontalScrollbar(Scrollbar*); 115 virtual void willRemoveHorizontalScrollbar(Scrollbar*);
|
WheelEventMac.mm | 30 #import "Scrollbar.h" 108 m_wheelTicksX = m_deltaX / static_cast<float>(Scrollbar::pixelsPerLineStep()); 109 m_wheelTicksY = m_deltaY / static_cast<float>(Scrollbar::pixelsPerLineStep()); 114 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep()); 115 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
|
ScrollAnimatorMac.mm | 209 WebCore::Scrollbar* scrollbar = 0; 211 scrollbar = _animator->scrollableArea()->horizontalScrollbar(); 213 scrollbar = _animator->scrollableArea()->verticalScrollbar(); 215 // It is possible to have a null scrollbar here since it is possible for this delegate 216 // method to be called between the moment when a scrollbar has been set to 0 and the 220 if (!scrollbar) 223 return scrollbar->convertFromContainingView(WebCore::IntPoint(pointInContentArea)); 242 WebCore::Scrollbar* verticalScrollbar = _animator->scrollableArea()->verticalScrollbar(); 250 // The different scrollbar styles have different thicknesses, so we must re-set the [all...] |
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityScrollView.cpp | 49 AccessibilityObject* AccessibilityScrollView::scrollBar(AccessibilityOrientation orientation) const 98 void AccessibilityScrollView::removeChildScrollbar(AccessibilityObject* scrollbar) 100 size_t pos = m_children.find(scrollbar); 105 AccessibilityScrollbar* AccessibilityScrollView::addChildScrollbar(Scrollbar* scrollbar) 107 if (!scrollbar) 110 AccessibilityScrollbar* scrollBarObject = static_cast<AccessibilityScrollbar*>(axObjectCache()->getOrCreate(scrollbar));
|
AccessibilityScrollView.h | 34 class Scrollbar; 52 virtual AccessibilityObject* scrollBar(AccessibilityOrientation) const; 64 AccessibilityScrollbar* addChildScrollbar(Scrollbar*);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
helpScreen.css | 53 scrollbar-width: 11px; 57 .help-content::-webkit-scrollbar { 61 .help-content::-webkit-scrollbar-corner, 66 .help-content::-webkit-scrollbar-thumb:vertical { 72 .help-content::-webkit-scrollbar-thumb:vertical:hover, 73 .help-content::-webkit-scrollbar-thumb:vertical:active { 77 .help-content::-webkit-scrollbar-track:vertical {
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebPopupMenuProxyWin.h | 32 #include <WebCore/Scrollbar.h> 61 WebCore::Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebKit::WebPopupMenuProxyWin 65 virtual int scrollPosition(WebCore::Scrollbar*) const; 67 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&); 72 virtual WebCore::Scrollbar* verticalScrollbar() const { return m_scrollbar.get(); } 126 RefPtr<WebCore::Scrollbar> m_scrollbar;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasTransform.java | 22 import org.eclipse.swt.widgets.ScrollBar; 58 /** Scrollbar widget. */ 59 private ScrollBar mScrollbar; 61 public CanvasTransform(LayoutCanvas layoutCanvas, ScrollBar scrollbar) { 63 mScrollbar = scrollbar; 89 /** Recomputes the scrollbar and view port settings */
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
native_tab_contents_view_win.h | 50 HWND scrollbar) OVERRIDE; 59 HWND scrollbar) OVERRIDE; 69 HWND scrollbar);
|