Reviewed by Adam.
Add another method we'll need for scrollbar dodging
* platform/ScrollView.h:
* platform/win/TemporaryLinkStubs.cpp:
(ScrollView::resizerOverlapsContent):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16862
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-06 Steve Falkenburg <sfalken@apple.com>
+
+ Reviewed by Adam.
+
+ Add another method we'll need for scrollbar dodging
+
+ * platform/ScrollView.h:
+ * platform/win/TemporaryLinkStubs.cpp:
+ (ScrollView::resizerOverlapsContent):
+
2006-10-06 Sam Weinig <sam.weinig@gmail.com>
Reviewed by Tim H.
virtual void scrolled() const;
virtual void setFrameGeometry(const IntRect&);
- virtual IntRect windowResizerRect();
+ IntRect windowResizerRect();
+ bool resizerOverlapsContent() const;
private:
void updateScrollbars(const IntSize& desiredOffset);
PlatformScrollbar* ScrollView::scrollbarUnderMouse(const PlatformMouseEvent& mouseEvent) { return 0; }
void ScrollView::setFrameGeometry(const IntRect& r) { Widget::setFrameGeometry(r); }
IntRect ScrollView::windowResizerRect() { return IntRect(); }
+bool ScrollView::resizerOverlapsContent() const { return false; }
void GraphicsContext::setShadow(IntSize const&,int,Color const&) { }
void GraphicsContext::clearShadow() { }