Home | History | Annotate | Download | only in platform

Lines Matching refs:IntSize

68     virtual void didCompleteRubberBand(const IntSize&) const;
73 virtual void scrollTo(const IntSize& newOffset);
162 IntSize fixedLayoutSize() const;
163 void setFixedLayoutSize(const IntSize&);
167 // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height
169 IntSize contentsSize() const; // Always at least as big as the visibleWidth()/visibleHeight().
172 virtual void setContentsSize(const IntSize&);
184 IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes.
192 IntSize overhangAmount() const;
199 void scrollBy(const IntSize& s) { return setScrollPosition(scrollPosition() + s); }
208 void scrollContents(const IntSize& scrollDelta);
244 virtual void setBoundsSize(const IntSize&);
315 IntSize
316 void setInitialBoundsSize(const IntSize&);
326 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
355 IntSize m_scrollOffset; // FIXME: Would rather store this as a position, but we will wait to make this change until more code is shared.
357 IntSize m_fixedLayoutSize;
358 IntSize m_contentsSize;
376 IntSize m_boundsSize;
382 void updateScrollbars(const IntSize& desiredOffset);
396 IntSize platformContentsSize() const;
428 void setScrollOffset(const IntSize& offset) { m_scrollOffset = offset; }