15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2011 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#ifndef ScrollbarGroup_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#define ScrollbarGroup_h
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
29a854de003a23bf3c7f95ec0f8154ada64092ff5cTorne (Richard Coles)#include "platform/scroll/ScrollableArea.h"
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
31591b958dee2cf159d33a0b931e6231072eaf38d5Ben Murdoch#include "wtf/RefPtr.h"
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
33c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
35e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)class FrameView;
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class WebPluginScrollbarImpl;
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
38e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)class ScrollbarGroup FINAL : public ScrollableArea {
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
40e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    ScrollbarGroup(FrameView*, const IntRect& frameRect);
4109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual ~ScrollbarGroup();
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void scrollbarCreated(WebPluginScrollbarImpl*);
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void scrollbarDestroyed(WebPluginScrollbarImpl*);
45e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    void setLastMousePosition(const IntPoint&);
46e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    void setFrameRect(const IntRect&);
475c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
48e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    // ScrollableArea methods
49e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
50e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual void setScrollOffset(const IntPoint&) OVERRIDE;
51e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
52e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual void invalidateScrollCornerRect(const IntRect&) OVERRIDE;
535c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual bool isActive() const OVERRIDE;
54e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntRect scrollCornerRect() const OVERRIDE { return IntRect(); }
555c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual bool isScrollCornerVisible() const OVERRIDE;
56e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual void getTickmarks(Vector<IntRect>&) const OVERRIDE;
57e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint& parentPoint) const OVERRIDE;
58e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual Scrollbar* horizontalScrollbar() const OVERRIDE;
59e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual Scrollbar* verticalScrollbar() const OVERRIDE;
60e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntPoint scrollPosition() const OVERRIDE;
61e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntPoint minimumScrollPosition() const OVERRIDE;
62e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntPoint maximumScrollPosition() const OVERRIDE;
635c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual int visibleHeight() const OVERRIDE;
645c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual int visibleWidth() const OVERRIDE;
65e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntSize contentsSize() const OVERRIDE;
66e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntSize overhangAmount() const OVERRIDE;
67e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntPoint lastKnownMousePosition() const OVERRIDE;
685c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual bool shouldSuspendScrollAnimations() const OVERRIDE;
6910f88d5669dbd969c059d61ba09fa37dd72ac559Ben Murdoch    virtual void scrollbarStyleChanged() OVERRIDE;
705c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual bool scrollbarsCanBeActive() const OVERRIDE;
71e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual IntRect scrollableAreaBoundingBox() const OVERRIDE;
72e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual bool userInputScrollable(ScrollbarOrientation) const OVERRIDE;
738abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    virtual bool shouldPlaceVerticalScrollbarOnLeft() const OVERRIDE;
74e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual int pageStep(ScrollbarOrientation) const OVERRIDE;
755c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
765c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
77e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    FrameView* m_frameView;
78e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    IntPoint m_lastMousePosition;
79e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    IntRect m_frameRect;
805c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    WebPluginScrollbarImpl* m_horizontalScrollbar;
815c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    WebPluginScrollbarImpl* m_verticalScrollbar;
825c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
835c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
8451b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)} // namespace blink
855c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
865c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif
87