blob: e3a016b43a2cf91c516bd225c4881243a00de5c5 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCROLL_SCROLLBAR_LAYER_DELEGATE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCROLL_SCROLLBAR_LAYER_DELEGATE_H_
#include <memory>
#include "base/macros.h"
#include "cc/input/scrollbar.h"
#include "cc/paint/paint_canvas.h"
#include "third_party/blink/public/platform/web_scrollbar_theme_painter.h"
#include "third_party/blink/renderer/platform/platform_export.h"
namespace blink {
class WebScrollbar;
class WebScrollbarThemeGeometry;
// Implementation of cc::Scrollbar, providing a delegate to query about
// scrollbar state and to paint the image in the scrollbar.
class PLATFORM_EXPORT ScrollbarLayerDelegate : public cc::Scrollbar {
public:
ScrollbarLayerDelegate(std::unique_ptr<WebScrollbar> scrollbar,
WebScrollbarThemePainter painter,
std::unique_ptr<WebScrollbarThemeGeometry> geometry);
~ScrollbarLayerDelegate() override;
// cc::Scrollbar implementation.
cc::ScrollbarOrientation Orientation() const override;
bool IsLeftSideVerticalScrollbar() const override;
bool HasThumb() const override;
bool IsOverlay() const override;
gfx::Point Location() const override;
int ThumbThickness() const override;
int ThumbLength() const override;
gfx::Rect TrackRect() const override;
float ThumbOpacity() const override;
bool NeedsPaintPart(cc::ScrollbarPart part) const override;
bool HasTickmarks() const override;
void PaintPart(cc::PaintCanvas* canvas,
cc::ScrollbarPart part,
const gfx::Rect& content_rect) override;
bool UsesNinePatchThumbResource() const override;
gfx::Size NinePatchThumbCanvasSize() const override;
gfx::Rect NinePatchThumbAperture() const override;
private:
std::unique_ptr<WebScrollbar> scrollbar_;
WebScrollbarThemePainter painter_;
std::unique_ptr<WebScrollbarThemeGeometry> geometry_;
DISALLOW_COPY_AND_ASSIGN(ScrollbarLayerDelegate);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCROLL_SCROLLBAR_LAYER_DELEGATE_H_