HomeSort by relevance Sort by last modified time
    Searched defs:ScrollView (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/ui/views/controls/
scroll_view.h 17 // ScrollView class
19 // A ScrollView is used to make any View scrollable. The view is added to
25 // The scrollview supports keyboard UI and mousewheel.
29 class VIEWS_EXPORT ScrollView : public View, public ScrollBarController {
33 ScrollView();
34 virtual ~ScrollView();
36 // Creates a ScrollView with a theme specific border.
37 static ScrollView* CreateScrollViewWithBorder();
64 // Customize the scrollbar design. ScrollView takes the ownership of the
134 DISALLOW_COPY_AND_ASSIGN(ScrollView);
    [all...]
scroll_view.cc 16 const char ScrollView::kViewClassName[] = "ScrollView";
20 // Subclass of ScrollView that resets the border when the theme changes.
21 class ScrollViewWithBorder : public views::ScrollView {
81 // Viewport contains the contents View of the ScrollView.
82 class ScrollView::Viewport : public View {
88 return "ScrollView::Viewport";
98 static_cast<ScrollView*>(parent())->ScrollContentsRegionToBeVisible(
111 ScrollView::ScrollView()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
calendarPicker.js 1299 function ScrollView() {
1300 View.call(this, createElement("div", ScrollView.ClassNameScrollView));
1305 this.contentElement = createElement("div", ScrollView.ClassNameScrollViewContent);
1364 ScrollView.prototype = Object.create(View.prototype);
1366 ScrollView.PartitionHeight = 100000;
1367 ScrollView.ClassNameScrollView = "scroll-view";
1368 ScrollView.ClassNameScrollViewContent = "scroll-view-content";
1373 ScrollView.prototype.onTouchStart = function(event) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollView.cpp 27 #include "core/platform/ScrollView.h"
41 ScrollView::ScrollView()
58 ScrollView::~ScrollView()
62 void ScrollView::addChild(PassRefPtr<Widget> prpChild)
70 void ScrollView::removeChild(Widget* child)
77 void ScrollView::setHasHorizontalScrollbar(bool hasBar)
94 void ScrollView::setHasVerticalScrollbar(bool hasBar)
111 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation
    [all...]
ScrollView.h 43 class ScrollView : public Widget, public ScrollableArea {
45 ~ScrollView();
59 // The window thats hosts the ScrollView. The ScrollView will communicate scrolls and repaints to the
142 // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height
206 virtual void setParent(ScrollView*); // Overridden to update the overlapping scrollbar count.
269 ScrollView();
344 }; // class ScrollView
346 inline ScrollView* toScrollView(Widget* widget)
349 return static_cast<ScrollView*>(widget)
    [all...]
  /frameworks/base/core/java/android/widget/
ScrollView.java 50 * allowing it to be larger than the physical display. A ScrollView
56 * <p>You should never use a ScrollView with a {@link ListView}, because
60 * list of items to fill up the infinite container supplied by ScrollView.
62 * takes care of its own scrolling, so does not require a ScrollView, but
66 * <p>ScrollView only supports vertical scrolling. For horizontal scrolling,
71 public class ScrollView extends FrameLayout {
76 private static final String TAG = "ScrollView";
104 * True if the user is currently dragging this ScrollView around. This is
157 public ScrollView(Context context) {
161 public ScrollView(Context context, AttributeSet attrs)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 38 import android.widget.ScrollView;
42 * Test {@link ScrollView}.
87 new ScrollView(mActivity);
89 new ScrollView(mActivity, attrs);
91 new ScrollView(mActivity, attrs, 0);
96 ScrollView scrollView = new ScrollView(mActivity);
97 scrollView.layout(0, 0, 100, 200);
98 assertEquals((200 - 0) / 2, scrollView.getMaxScrollAmount())
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 339 milliseconds