HomeSort by relevance Sort by last modified time
    Searched full:scrollbar (Results 76 - 100 of 434) sorted by null

1 2 34 5 6 7 8 91011>>

  /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);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityScrollView.h 34 class Scrollbar;
60 virtual AccessibilityObject* scrollBar(AccessibilityOrientation) OVERRIDE;
75 AccessibilityScrollbar* addChildScrollbar(Scrollbar*);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebScrollbarImpl.h 31 class Scrollbar;
38 explicit WebScrollbarImpl(WebCore::Scrollbar*);
61 RefPtr<WebCore::Scrollbar> m_scrollbar;
WebScrollbarImpl.cpp 29 #include "core/platform/Scrollbar.h"
34 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar)
35 : m_scrollbar(scrollbar)
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMac.mm 141 void ScrollbarThemeMacCommon::registerScrollbar(ScrollbarThemeClient* scrollbar)
143 scrollbarMap()->add(scrollbar, scrollbar);
146 void ScrollbarThemeMacCommon::unregisterScrollbar(ScrollbarThemeClient* scrollbar)
148 scrollbarMap()->remove(scrollbar);
151 void ScrollbarThemeMacCommon::paintGivenTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect, const Vector<IntRect>& tickmarks)
153 if (scrollbar->orientation() != VerticalScrollbar)
169 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
305 void ScrollbarThemeMacCommon::paintTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect)
308 if (scrollbar->orientation() != VerticalScrollbar
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbar.h 37 class Scrollbar;
42 // A const accessor interface for a WebKit scrollbar
89 // Return true if this is an overlay scrollbar.
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 48 // Gets the thickness of the scrollbar in pixels.
51 // Sets the rectangle of the scrollbar.
56 // for the vertical scrollbar would have passed in a rectangle like:
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollView.h 32 #include "core/platform/Scrollbar.h"
41 class Scrollbar;
73 virtual Scrollbar* horizontalScrollbar() const OVERRIDE { return m_horizontalScrollbar.get(); }
74 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_verticalScrollbar.get(); }
80 // AlwaysOff, AlwaysOn, and Auto. AlwaysOff means never show a scrollbar, AlwaysOn means always show a scrollbar.
81 // Auto means show a scrollbar only when one is needed.
112 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation);
206 virtual void setParent(ScrollView*); // Overridden to update the overlapping scrollbar count.
218 Scrollbar* scrollbarAtPoint(const IntPoint& windowPoint)
    [all...]
ScrollView.cpp 31 #include "core/platform/Scrollbar.h"
111 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
113 return Scrollbar::createNativeScrollbar(this, orientation, RegularScrollbar);
195 if (Scrollbar* verticalBar = verticalScrollbar())
197 if (Scrollbar* horizontalBar = horizontalScrollbar())
284 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local
287 if (!scrollbar) {
293 return scrollbar->totalSize() - scrollbar->visibleSize()
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
find_bar_host_win.cc 12 #include "ui/views/controls/scrollbar/native_scroll_bar.h"
  /external/chromium_org/content/test/data/accessibility/
aria-valuemax.html 11 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div>
aria-valuemin.html 12 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div>
  /external/chromium_org/third_party/WebKit/ManualTests/
select-scroll.html 2 When you click the following &lt;select&gt;, you should see a scrollbar,
select_webkit_appearance_off_popup_alignment.html 8 No scrollbar in popup:<br>
28 Popup has scrollbar:<br>
stale-scrollbar-client-crash.html 14 Each scrollbar will disappear when clicked, along with the box containing it, but the browser will not crash as you continue to drag.
18 The scrollbar will disappear and Safari will crash as you continue dragging.
  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.h 54 virtual void invalidateScrollbarRect(WebCore::Scrollbar*, const WebCore::IntRect&) OVERRIDE;
61 virtual WebCore::IntPoint convertFromContainingViewToScrollbar(const WebCore::Scrollbar*, const WebCore::IntPoint& parentPoint) const OVERRIDE;
62 virtual WebCore::Scrollbar* horizontalScrollbar() const OVERRIDE;
63 virtual WebCore::Scrollbar* verticalScrollbar() const OVERRIDE;
WebPluginScrollbarImpl.h 36 class Scrollbar;
58 WebCore::Scrollbar* scrollbar() { return m_scrollbar.get(); } function in class:WebKit::WebPluginScrollbarImpl
100 RefPtr<WebCore::Scrollbar> m_scrollbar;
WebScrollbarThemePainter.cpp 30 #include "core/platform/Scrollbar.h"
119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* theme, WebCore::Scrollbar* scrollbar)
121 , m_scrollbar(scrollbar)
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.cc 5 #include "ui/views/controls/scrollbar/base_scroll_bar_thumb.h"
9 #include "ui/views/controls/scrollbar/base_scroll_bar.h"
13 // dragging before the scrollbar will snap back to its regular position.
85 // the bounds of the thumb, the scrollbar will snap the scroll back to the
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_scrollbar_layer_impl.h 25 WebKit::WebScrollbar* scrollbar,
  /external/chromium/chrome/browser/resources/
print_preview_animations.js 8 // Scrollbar will never get smaller than this
20 * Makes the scrollbars visible. If |el| has already a scrollbar timer, it
55 while (!el.classList.contains('scrollbar-inside') && el != document.body)
145 var insideEl = scrollableEl.querySelector('.scrollbar-inside');
150 // Determine the width/height of native scrollbar elements.
154 // Create scrollbar elements
156 insideEl.scrollHorEl.className = 'scrollbar hor';
160 insideEl.scrollVertEl.className = 'scrollbar vert';
  /external/chromium/webkit/glue/
webthemeengine_impl_mac.cc 43 trackInfo.trackInfo.scrollbar.viewsize = scrollbarInfo.visibleSize;
52 trackInfo.trackInfo.scrollbar.pressState =
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumOverlay.h 33 // This scrollbar theme is used to get overlay scrollbar for platforms other
  /external/chromium_org/ui/views/controls/
scroll_view_unittest.cc 63 // Size the contents such that vertical scrollbar is needed.
73 // Size the contents such that horizontal scrollbar is needed.
135 // Size the contents such that vertical scrollbar is needed.
152 // Size the contents such that horizontal scrollbar is needed.
202 // Scroll the horizontal scrollbar.
205 const_cast<ScrollBar*>(scroll_view.horizontal_scroll_bar()), 1);
209 // Scrolling the vertical scrollbar shouldn't effect the header.
212 const_cast<ScrollBar*>(scroll_view.vertical_scroll_bar()), 1);

Completed in 2292 milliseconds

1 2 34 5 6 7 8 91011>>