| /external/webkit/Source/WebCore/page/ |
| MouseEventWithHitTestResults.cpp | 41 Scrollbar* MouseEventWithHitTestResults::scrollbar() const function in class:WebCore::MouseEventWithHitTestResults 43 return m_hitTestResult.scrollbar();
|
| EventHandler.cpp | 73 #include "Scrollbar.h" 949 Scrollbar* eventScrollbar = view->scrollbarAtPoint(point); 1456 Scrollbar* scrollbar = mev.scrollbar(); local 1473 Scrollbar* scrollbar = view ? view->scrollbarAtPoint(mouseEvent.pos()) : 0; local 1613 Scrollbar* scrollbar = 0; local [all...] |
| FrameView.cpp | 311 Scrollbar* horizontalBar = horizontalScrollbar(); 315 Scrollbar* verticalBar = verticalScrollbar(); 435 PassRefPtr<Scrollbar> FrameView::createScrollbar(ScrollbarOrientation orientation) 437 // FIXME: We need to update the scrollbar dynamically as documents change (or as doc elements and bodies get discovered that have custom styles). 440 // Try the <body> element first as a scrollbar source. 442 if (body && body->renderer() && body->renderer()->style()->hasPseudoStyle(SCROLLBAR)) 447 if (docElement && docElement->renderer() && docElement->renderer()->style()->hasPseudoStyle(SCROLLBAR)) 450 // If we have an owning iframe/frame element, then it can set the custom scrollbar also. 452 if (frameRenderer && frameRenderer->style()->hasPseudoStyle(SCROLLBAR)) 455 // Nobody set a custom style, so we just use a native scrollbar 2311 Scrollbar* scrollbar = static_cast<Scrollbar*>(widget); local [all...] |
| /external/webkit/Source/WebCore/accessibility/ |
| AccessibilityScrollbar.h | 36 class Scrollbar; 40 static PassRefPtr<AccessibilityScrollbar> create(Scrollbar*); 42 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebCore::AccessibilityScrollbar 46 AccessibilityScrollbar(Scrollbar*); 65 RefPtr<Scrollbar> m_scrollbar;
|
| /external/webkit/Source/WebCore/platform/ |
| ScrollableArea.cpp | 61 Scrollbar* scrollbar; local 64 scrollbar = verticalScrollbar(); 67 scrollbar = horizontalScrollbar(); 70 if (!scrollbar) 76 step = scrollbar->lineStep(); 79 step = scrollbar->pageStep(); 82 step = scrollbar->totalSize(); 85 step = scrollbar->pixelStep(); 135 Scrollbar* verticalScrollbar = this->verticalScrollbar() [all...] |
| ScrollView.cpp | 36 #include "Scrollbar.h" 130 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation) 132 return Scrollbar::createNativeScrollbar(this, orientation, RegularScrollbar); 354 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local 355 return scrollbar ? (scrollbar->totalSize() - scrollbar->visibleSize()) : 0; 396 int ScrollView::scrollPosition(Scrollbar* scrollbar) cons [all...] |
| /external/webkit/Source/WebCore/platform/gtk/ |
| ScrollbarThemeGtk.cpp | 32 #include "Scrollbar.h" 36 static HashSet<Scrollbar*>* gScrollbars; 48 void ScrollbarThemeGtk::registerScrollbar(Scrollbar* scrollbar) 51 gScrollbars = new HashSet<Scrollbar*>; 52 gScrollbars->add(scrollbar); 55 void ScrollbarThemeGtk::unregisterScrollbar(Scrollbar* scrollbar) 57 gScrollbars->remove(scrollbar); 69 // Update the thickness of every interior frame scrollbar widget. Th 74 Scrollbar* scrollbar = (*it); local [all...] |
| ScrollbarThemeGtk2.cpp | 35 #include "Scrollbar.h" 55 GtkWidget* scrollbar = static_cast<RenderThemeGtk*>(RenderTheme::defaultTheme().get())->gtkHScrollbar(); local 56 gtk_widget_style_get(scrollbar, 63 m_minThumbLength = gtk_range_get_min_slider_size(GTK_RANGE(scrollbar)); 67 static GtkWidget* getWidgetForScrollbar(Scrollbar* scrollbar) 70 return scrollbar->orientation() == VerticalScrollbar ? theme->gtkVScrollbar() : theme->gtkHScrollbar(); 73 void ScrollbarThemeGtk::paintTrackBackground(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect) 76 // should be the full size of the scrollbar, but if is false, it should only be th [all...] |
| /external/webkit/Source/WebCore/platform/win/ |
| PopupMenuWin.h | 28 #include "Scrollbar.h" 40 class Scrollbar; 57 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebCore::PopupMenuWin 95 virtual int scrollPosition(Scrollbar*) const; 97 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&); 102 virtual Scrollbar* verticalScrollbar() const { return m_scrollbar.get(); } 115 RefPtr<Scrollbar> m_scrollbar;
|
| /external/webkit/Source/WebCore/rendering/ |
| HitTestResult.h | 44 class Scrollbar; 63 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebCore::HitTestResult 73 void setScrollbar(Scrollbar*); 138 RefPtr<Scrollbar> m_scrollbar;
|
| RenderLayer.cpp | 84 #include "Scrollbar.h" 1681 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_hBar : m_vBar).get(); local 1915 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar; local [all...] |
| /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;
|
| /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/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...] |
| /external/webkit/Source/WebCore/css/ |
| CSSStyleSelector.cpp | 2956 RenderScrollbar* scrollbar = RenderScrollbar::scrollbarForStyleResolve(); local [all...] |
| /prebuilt/common/eclipse/ |
| org.eclipse.jface_3.4.2.M20090107-0800.jar | |
| /prebuilt/darwin-x86/swt/ |
| swt.jar | |