blob: 4463548c927f7f147b12fd13de7558dd59fe297e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// Copyright 2013 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 UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
#define UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
#include "base/macros.h"
#include "ui/gfx/animation/slide_animation.h"
#include "ui/views/controls/scrollbar/base_scroll_bar.h"
namespace views {
// The transparent scrollbar which overlays its contents.
class VIEWS_EXPORT OverlayScrollBar : public BaseScrollBar {
public:
explicit OverlayScrollBar(bool horizontal);
~OverlayScrollBar() override;
protected:
// BaseScrollBar overrides:
gfx::Rect GetTrackBounds() const override;
void OnGestureEvent(ui::GestureEvent* event) override;
// ScrollBar overrides:
int GetLayoutSize() const override;
int GetContentOverlapSize() const override;
void OnMouseEnteredScrollView(const ui::MouseEvent& event) override;
void OnMouseExitedScrollView(const ui::MouseEvent& event) override;
// View overrides:
gfx::Size GetPreferredSize() const override;
void Layout() override;
void OnPaint(gfx::Canvas* canvas) override;
private:
gfx::SlideAnimation animation_;
DISALLOW_COPY_AND_ASSIGN(OverlayScrollBar);
};
} // namespace views
#endif // UI_VIEWS_CONTROLS_SCROLLBAR_OVERLAY_SCROLL_BAR_H_
|