1 /*
2  * Copyright (C) 2004, 2006, 2007, 2008 Apple Inc. All rights reserved.
3  * Copyright (C) 2009 Holger Hans Peter Freyther
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #ifndef ScrollView_h
28 #define ScrollView_h
29 
30 #include "IntRect.h"
31 #include "Scrollbar.h"
32 #include "ScrollableArea.h"
33 #include "ScrollTypes.h"
34 #include "Widget.h"
35 
36 #include <wtf/HashSet.h>
37 
38 #if PLATFORM(MAC) && defined __OBJC__
39 @protocol WebCoreFrameScrollView;
40 #endif
41 
42 #if PLATFORM(GTK)
43 #include "GRefPtrGtk.h"
44 typedef struct _GtkAdjustment GtkAdjustment;
45 #endif
46 
47 #if PLATFORM(WX)
48 class wxScrollWinEvent;
49 #endif
50 
51 namespace WebCore {
52 
53 class HostWindow;
54 class Scrollbar;
55 
56 class ScrollView : public Widget, public ScrollableArea {
57 public:
58     ~ScrollView();
59 
60     // ScrollableArea functions.  FrameView overrides the others.
61     virtual int scrollSize(ScrollbarOrientation orientation) const;
62     virtual int scrollPosition(Scrollbar*) const;
63     virtual void setScrollOffset(const IntPoint&);
64     virtual void didCompleteRubberBand(const IntSize&) const;
65     virtual void notifyPageThatContentAreaWillPaint() const;
66     virtual bool isScrollCornerVisible() const;
67 
68     // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
69     virtual void scrollTo(const IntSize& newOffset);
70 
71     // The window thats hosts the ScrollView. The ScrollView will communicate scrolls and repaints to the
72     // host window in the window's coordinate space.
73     virtual HostWindow* hostWindow() const = 0;
74 
75     // Returns a clip rect in host window coordinates. Used to clip the blit on a scroll.
76     virtual IntRect windowClipRect(bool clipToContents = true) const = 0;
77 
78     // Functions for child manipulation and inspection.
children()79     const HashSet<RefPtr<Widget> >* children() const { return &m_children; }
80     void addChild(PassRefPtr<Widget>);
81     void removeChild(Widget*);
82 
83     // If the scroll view does not use a native widget, then it will have cross-platform Scrollbars. These functions
84     // can be used to obtain those scrollbars.
horizontalScrollbar()85     virtual Scrollbar* horizontalScrollbar() const { return m_horizontalScrollbar.get(); }
verticalScrollbar()86     virtual Scrollbar* verticalScrollbar() const { return m_verticalScrollbar.get(); }
isScrollViewScrollbar(const Widget * child)87     bool isScrollViewScrollbar(const Widget* child) const { return horizontalScrollbar() == child || verticalScrollbar() == child; }
88 
89     void positionScrollbarLayers();
90 
91     // Functions for setting and retrieving the scrolling mode in each axis (horizontal/vertical). The mode has values of
92     // AlwaysOff, AlwaysOn, and Auto. AlwaysOff means never show a scrollbar, AlwaysOn means always show a scrollbar.
93     // Auto means show a scrollbar only when one is needed.
94     // Note that for platforms with native widgets, these modes are considered advisory. In other words the underlying native
95     // widget may choose not to honor the requested modes.
96     void setScrollbarModes(ScrollbarMode horizontalMode, ScrollbarMode verticalMode, bool horizontalLock = false, bool verticalLock = false);
97     void setHorizontalScrollbarMode(ScrollbarMode mode, bool lock = false) { setScrollbarModes(mode, verticalScrollbarMode(), lock, verticalScrollbarLock()); }
98     void setVerticalScrollbarMode(ScrollbarMode mode, bool lock = false) { setScrollbarModes(horizontalScrollbarMode(), mode, horizontalScrollbarLock(), lock); };
99     void scrollbarModes(ScrollbarMode& horizontalMode, ScrollbarMode& verticalMode) const;
horizontalScrollbarMode()100     ScrollbarMode horizontalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return horizontal; }
verticalScrollbarMode()101     ScrollbarMode verticalScrollbarMode() const { ScrollbarMode horizontal, vertical; scrollbarModes(horizontal, vertical); return vertical; }
102 
103     void setHorizontalScrollbarLock(bool lock = true) { m_horizontalScrollbarLock = lock; }
horizontalScrollbarLock()104     bool horizontalScrollbarLock() const { return m_horizontalScrollbarLock; }
105     void setVerticalScrollbarLock(bool lock = true) { m_verticalScrollbarLock = lock; }
verticalScrollbarLock()106     bool verticalScrollbarLock() const { return m_verticalScrollbarLock; }
107 
108     void setScrollingModesLock(bool lock = true) { m_horizontalScrollbarLock = m_verticalScrollbarLock = lock; }
109 
110     virtual void setCanHaveScrollbars(bool);
canHaveScrollbars()111     bool canHaveScrollbars() const { return horizontalScrollbarMode() != ScrollbarAlwaysOff || verticalScrollbarMode() != ScrollbarAlwaysOff; }
112 
avoidScrollbarCreation()113     virtual bool avoidScrollbarCreation() const { return false; }
114 
115     // By default you only receive paint events for the area that is visible. In the case of using a
116     // tiled backing store, this function can be set, so that the view paints the entire contents.
paintsEntireContents()117     bool paintsEntireContents() const { return m_paintsEntireContents; }
118     void setPaintsEntireContents(bool);
119 
120     // By default, paint events are clipped to the visible area.  If set to
121     // false, paint events are no longer clipped.  paintsEntireContents() implies !clipsRepaints().
clipsRepaints()122     bool clipsRepaints() const { return m_clipsRepaints; }
123     void setClipsRepaints(bool);
124 
125     // By default programmatic scrolling is handled by WebCore and not by the UI application.
126     // In the case of using a tiled backing store, this mode can be set, so that the scroll requests
127     // are delegated to the UI application.
delegatesScrolling()128     bool delegatesScrolling() const { return m_delegatesScrolling; }
129     void setDelegatesScrolling(bool);
130 
131     // Overridden by FrameView to create custom CSS scrollbars if applicable.
132     virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation);
133 
134     // If the prohibits scrolling flag is set, then all scrolling in the view (even programmatic scrolling) is turned off.
setProhibitsScrolling(bool b)135     void setProhibitsScrolling(bool b) { m_prohibitsScrolling = b; }
prohibitsScrolling()136     bool prohibitsScrolling() const { return m_prohibitsScrolling; }
137 
138     // Whether or not a scroll view will blit visible contents when it is scrolled. Blitting is disabled in situations
139     // where it would cause rendering glitches (such as with fixed backgrounds or when the view is partially transparent).
140     void setCanBlitOnScroll(bool);
141     bool canBlitOnScroll() const;
142 
143     // The visible content rect has a location that is the scrolled offset of the document. The width and height are the viewport width
144     // and height. By default the scrollbars themselves are excluded from this rectangle, but an optional boolean argument allows them to be
145     // included.
146     // In the situation the client is responsible for the scrolling (ie. with a tiled backing store) it is possible to use
147     // the actualVisibleContentRect instead, though this must be updated manually, e.g after panning ends.
148     IntRect visibleContentRect(bool includeScrollbars = false) const;
actualVisibleContentRect()149     IntRect actualVisibleContentRect() const { return m_actualVisibleContentRect.isEmpty() ? visibleContentRect() : m_actualVisibleContentRect; }
setActualVisibleContentRect(const IntRect & actualVisibleContentRect)150     void setActualVisibleContentRect(const IntRect& actualVisibleContentRect) { m_actualVisibleContentRect = actualVisibleContentRect; }
visibleWidth()151     int visibleWidth() const { return visibleContentRect().width(); }
visibleHeight()152     int visibleHeight() const { return visibleContentRect().height(); }
153 
154     // Functions for getting/setting the size webkit should use to layout the contents. By default this is the same as the visible
155     // content size. Explicitly setting a layout size value will cause webkit to layout the contents using this size instead.
156     int layoutWidth() const;
157     int layoutHeight() const;
158     IntSize fixedLayoutSize() const;
159     void setFixedLayoutSize(const IntSize&);
160     bool useFixedLayout() const;
161     void setUseFixedLayout(bool enable);
162 
163     // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height
164     // values).
165     IntSize contentsSize() const; // Always at least as big as the visibleWidth()/visibleHeight().
contentsWidth()166     int contentsWidth() const { return contentsSize().width(); }
contentsHeight()167     int contentsHeight() const { return contentsSize().height(); }
168     virtual void setContentsSize(const IntSize&);
169 
170     // Functions for querying the current scrolled position (both as a point, a size, or as individual X and Y values).
scrollPosition()171     IntPoint scrollPosition() const { return visibleContentRect().location(); }
scrollOffset()172     IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes.
173     IntPoint maximumScrollPosition() const; // The maximum position we can be scrolled to.
174     IntPoint minimumScrollPosition() const; // The minimum position we can be scrolled to.
175     // Adjust the passed in scroll position to keep it between the minimum and maximum positions.
176     IntPoint adjustScrollPositionWithinRange(const IntPoint&) const;
scrollX()177     int scrollX() const { return scrollPosition().x(); }
scrollY()178     int scrollY() const { return scrollPosition().y(); }
179 
180     IntSize overhangAmount() const;
181 
cacheCurrentScrollPosition()182     void cacheCurrentScrollPosition() { m_cachedScrollPosition = scrollPosition(); }
cachedScrollPosition()183     IntPoint cachedScrollPosition() const { return m_cachedScrollPosition; }
184 
185     // Functions for scrolling the view.
186     void setScrollPosition(const IntPoint&);
scrollBy(const IntSize & s)187     void scrollBy(const IntSize& s) { return setScrollPosition(scrollPosition() + s); }
188 
189     // This function scrolls by lines, pages or pixels.
190     bool scroll(ScrollDirection, ScrollGranularity);
191 
192     // A logical scroll that just ends up calling the corresponding physical scroll() based off the document's writing mode.
193     bool logicalScroll(ScrollLogicalDirection, ScrollGranularity);
194 
195     // Scroll the actual contents of the view (either blitting or invalidating as needed).
196     void scrollContents(const IntSize& scrollDelta);
197 
198     // This gives us a means of blocking painting on our scrollbars until the first layout has occurred.
199     void setScrollbarsSuppressed(bool suppressed, bool repaintOnUnsuppress = false);
scrollbarsSuppressed()200     bool scrollbarsSuppressed() const { return m_scrollbarsSuppressed; }
201 
202     // Event coordinates are assumed to be in the coordinate space of a window that contains
203     // the entire widget hierarchy. It is up to the platform to decide what the precise definition
204     // of containing window is. (For example on Mac it is the containing NSWindow.)
205     IntPoint windowToContents(const IntPoint&) const;
206     IntPoint contentsToWindow(const IntPoint&) const;
207     IntRect windowToContents(const IntRect&) const;
208     IntRect contentsToWindow(const IntRect&) const;
209 
210     // Functions for converting to and from screen coordinates.
211     IntRect contentsToScreen(const IntRect&) const;
212     IntPoint screenToContents(const IntPoint&) const;
213 
214     // The purpose of this function is to answer whether or not the scroll view is currently visible. Animations and painting updates can be suspended if
215     // we know that we are either not in a window right now or if that window is not visible.
216     bool isOffscreen() const;
217 
218     // These functions are used to enable scrollbars to avoid window resizer controls that overlap the scroll view. This happens on Mac
219     // for example.
windowResizerRect()220     virtual IntRect windowResizerRect() const { return IntRect(); }
221     bool containsScrollbarsAvoidingResizer() const;
222     void adjustScrollbarsAvoidingResizerCount(int overlapDelta);
223     void windowResizerRectChanged();
224 
225     virtual void setParent(ScrollView*); // Overridden to update the overlapping scrollbar count.
226 
227     // Called when our frame rect changes (or the rect/scroll position of an ancestor changes).
228     virtual void frameRectsChanged();
229 
230     // Widget override to update our scrollbars and notify our contents of the resize.
231     virtual void setFrameRect(const IntRect&);
232     virtual void setBoundsSize(const IntSize&);
233 
234     // For platforms that need to hit test scrollbars from within the engine's event handlers (like Win32).
235     Scrollbar* scrollbarAtPoint(const IntPoint& windowPoint);
236 
237     // This function exists for scrollviews that need to handle wheel events manually.
238     // On Mac the underlying NSScrollView just does the scrolling, but on other platforms
239     // (like Windows), we need this function in order to do the scroll ourselves.
240     void wheelEvent(PlatformWheelEvent&);
241 #if ENABLE(GESTURE_EVENTS)
242     void gestureEvent(const PlatformGestureEvent&);
243 #endif
244 
convertChildToSelf(const Widget * child,const IntPoint & point)245     IntPoint convertChildToSelf(const Widget* child, const IntPoint& point) const
246     {
247         IntPoint newPoint = point;
248         if (!isScrollViewScrollbar(child))
249             newPoint = point - scrollOffset();
250         newPoint.move(child->x(), child->y());
251         return newPoint;
252     }
253 
convertSelfToChild(const Widget * child,const IntPoint & point)254     IntPoint convertSelfToChild(const Widget* child, const IntPoint& point) const
255     {
256         IntPoint newPoint = point;
257         if (!isScrollViewScrollbar(child))
258             newPoint = point + scrollOffset();
259         newPoint.move(-child->x(), -child->y());
260         return newPoint;
261     }
262 
263     // Widget override. Handles painting of the contents of the view as well as the scrollbars.
264     virtual void paint(GraphicsContext*, const IntRect&);
265     void paintScrollbars(GraphicsContext*, const IntRect&);
266 
267     // Widget overrides to ensure that our children's visibility status is kept up to date when we get shown and hidden.
268     virtual void show();
269     virtual void hide();
270     virtual void setParentVisible(bool);
271 
272     // Pan scrolling.
273     static const int noPanScrollRadius = 15;
274     void addPanScrollIcon(const IntPoint&);
275     void removePanScrollIcon();
276     void paintPanScrollIcon(GraphicsContext*);
277 
278     virtual bool isPointInScrollbarCorner(const IntPoint&);
279     virtual bool scrollbarCornerPresent() const;
280     virtual IntRect scrollCornerRect() const;
281     virtual void paintScrollCorner(GraphicsContext*, const IntRect& cornerRect);
282 
283     virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const;
284     virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const;
285     virtual IntPoint convertFromScrollbarToContainingView(const Scrollbar*, const IntPoint&) const;
286     virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint&) const;
287 
containsScrollableAreaWithOverlayScrollbars()288     bool containsScrollableAreaWithOverlayScrollbars() const { return m_containsScrollableAreaWithOverlayScrollbars; }
setContainsScrollableAreaWithOverlayScrollbars(bool contains)289     void setContainsScrollableAreaWithOverlayScrollbars(bool contains) { m_containsScrollableAreaWithOverlayScrollbars = contains; }
290 
291 protected:
292     ScrollView();
293 
294     virtual void repaintContentRectangle(const IntRect&, bool now = false);
295     virtual void paintContents(GraphicsContext*, const IntRect& damageRect) = 0;
296 
297     void calculateOverhangAreasForPainting(IntRect& horizontalOverhangRect, IntRect& verticalOverhangRect);
298     virtual void paintOverhangAreas(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect);
299 
300     virtual void contentsResized() = 0;
301     virtual void visibleContentsResized() = 0;
302 
boundsSize()303     IntSize boundsSize() const { return m_boundsSize; }
304     void setInitialBoundsSize(const IntSize&);
305 
306     // These functions are used to create/destroy scrollbars.
307     void setHasHorizontalScrollbar(bool);
308     void setHasVerticalScrollbar(bool);
309 
310     virtual void updateScrollCorner();
311     virtual void invalidateScrollCornerRect(const IntRect&);
312 
313     // Scroll the content by blitting the pixels.
314     virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
315     // Scroll the content by invalidating everything.
316     virtual void scrollContentsSlowPath(const IntRect& updateRect);
317 
318     void setScrollOrigin(const IntPoint&, bool updatePositionAtAll, bool updatePositionSynchronously);
scrollOrigin()319     IntPoint scrollOrigin() const { return m_scrollOrigin; }
320 
321     // Subclassed by FrameView to check the writing-mode of the document.
isVerticalDocument()322     virtual bool isVerticalDocument() const { return true; }
isFlippedDocument()323     virtual bool isFlippedDocument() const { return false; }
324 
325 private:
326     RefPtr<Scrollbar> m_horizontalScrollbar;
327     RefPtr<Scrollbar> m_verticalScrollbar;
328     ScrollbarMode m_horizontalScrollbarMode;
329     ScrollbarMode m_verticalScrollbarMode;
330 
331     bool m_horizontalScrollbarLock;
332     bool m_verticalScrollbarLock;
333 
334     bool m_prohibitsScrolling;
335 
336     HashSet<RefPtr<Widget> > m_children;
337 
338     // This bool is unused on Mac OS because we directly ask the platform widget
339     // whether it is safe to blit on scroll.
340     bool m_canBlitOnScroll;
341 
342     IntRect m_actualVisibleContentRect;
343     IntSize m_scrollOffset; // FIXME: Would rather store this as a position, but we will wait to make this change until more code is shared.
344     IntPoint m_cachedScrollPosition;
345     IntSize m_fixedLayoutSize;
346     IntSize m_contentsSize;
347 
348     int m_scrollbarsAvoidingResizer;
349     bool m_scrollbarsSuppressed;
350 
351     bool m_inUpdateScrollbars;
352     unsigned m_updateScrollbarsPass;
353 
354     IntPoint m_panScrollIconPoint;
355     bool m_drawPanScrollIcon;
356     bool m_useFixedLayout;
357 
358     bool m_paintsEntireContents;
359     bool m_clipsRepaints;
360     bool m_delegatesScrolling;
361 
362     bool m_containsScrollableAreaWithOverlayScrollbars;
363 
364     IntSize m_boundsSize;
365 
366     void init();
367     void destroy();
368 
369     // Called to update the scrollbars to accurately reflect the state of the view.
370     void updateScrollbars(const IntSize& desiredOffset);
371     IntRect rectToCopyOnScroll() const;
372 
373     // Called when the scroll position within this view changes.  FrameView overrides this to generate repaint invalidations.
repaintFixedElementsAfterScrolling()374     virtual void repaintFixedElementsAfterScrolling() {}
375 
376     void platformInit();
377     void platformDestroy();
378     void platformAddChild(Widget*);
379     void platformRemoveChild(Widget*);
380     void platformSetScrollbarModes();
381     void platformScrollbarModes(ScrollbarMode& horizontal, ScrollbarMode& vertical) const;
382     void platformSetCanBlitOnScroll(bool);
383     bool platformCanBlitOnScroll() const;
384     IntRect platformVisibleContentRect(bool includeScrollbars) const;
385     IntSize platformContentsSize() const;
386     void platformSetContentsSize();
387     IntRect platformContentsToScreen(const IntRect&) const;
388     IntPoint platformScreenToContents(const IntPoint&) const;
389     void platformSetScrollPosition(const IntPoint&);
390     bool platformScroll(ScrollDirection, ScrollGranularity);
391     void platformSetScrollbarsSuppressed(bool repaintOnUnsuppress);
392     void platformRepaintContentRectangle(const IntRect&, bool now);
393     bool platformIsOffscreen() const;
394 
395     void platformSetScrollOrigin(const IntPoint&, bool updatePositionAtAll, bool updatePositionSynchronously);
396 
397 #if PLATFORM(MAC) && defined __OBJC__
398 public:
399     NSView* documentView() const;
400 
401 private:
402     NSScrollView<WebCoreFrameScrollView>* scrollView() const;
403 #endif
404 
405 #if PLATFORM(GTK)
406 public:
407     void setGtkAdjustments(GtkAdjustment* hadj, GtkAdjustment* vadj, bool resetValues = true);
408     void setHorizontalAdjustment(GtkAdjustment* hadj, bool resetValues = true);
409     void setVerticalAdjustment(GtkAdjustment* vadj, bool resetValues = true);
setScrollOffset(const IntSize & offset)410     void setScrollOffset(const IntSize& offset) { m_scrollOffset = offset; }
411 
412 private:
413     GRefPtr<GtkAdjustment> m_horizontalAdjustment;
414     GRefPtr<GtkAdjustment> m_verticalAdjustment;
415 #endif
416 
417 #if PLATFORM(WX)
418 public:
419     virtual void setPlatformWidget(wxWindow*);
420     void adjustScrollbars(int x = -1, int y = -1, bool refresh = true);
421 private:
422     class ScrollViewPrivate;
423     ScrollViewPrivate* m_data;
424 #endif
425 
426 }; // class ScrollView
427 
428 } // namespace WebCore
429 
430 #endif // ScrollView_h
431