1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/layers/scrollbar_layer_impl_base.h"
8 #include "cc/trees/layer_tree_impl.h"
9 #include "ui/gfx/geometry/rect_conversions.h"
13 ScrollbarLayerImplBase::ScrollbarLayerImplBase(
14 LayerTreeImpl
* tree_impl
,
16 ScrollbarOrientation orientation
,
17 bool is_left_side_vertical_scrollbar
,
19 : LayerImpl(tree_impl
, id
),
20 scroll_layer_(nullptr),
22 is_overlay_scrollbar_(is_overlay
),
23 thumb_thickness_scale_factor_(1.f
),
26 orientation_(orientation
),
27 is_left_side_vertical_scrollbar_(is_left_side_vertical_scrollbar
),
28 vertical_adjust_(0.f
),
29 visible_to_total_length_ratio_(1.f
) {
32 ScrollbarLayerImplBase::~ScrollbarLayerImplBase() {}
34 void ScrollbarLayerImplBase::PushPropertiesTo(LayerImpl
* layer
) {
35 float active_opacity
= layer
->opacity();
36 bool active_hidden
= layer
->hide_layer_and_subtree();
37 LayerImpl::PushPropertiesTo(layer
);
38 layer
->SetOpacity(active_opacity
);
39 layer
->SetHideLayerAndSubtree(active_hidden
);
40 DCHECK(layer
->ToScrollbarLayer());
41 layer
->ToScrollbarLayer()->set_is_overlay_scrollbar(is_overlay_scrollbar_
);
42 PushScrollClipPropertiesTo(layer
);
45 void ScrollbarLayerImplBase::DidBecomeActive() {
46 LayerImpl::DidBecomeActive();
47 UpdatePropertyTreeOpacity();
50 void ScrollbarLayerImplBase::PushScrollClipPropertiesTo(LayerImpl
* layer
) {
51 DCHECK(layer
->ToScrollbarLayer());
52 layer
->ToScrollbarLayer()->SetScrollLayerAndClipLayerByIds(ScrollLayerId(),
56 ScrollbarLayerImplBase
* ScrollbarLayerImplBase::ToScrollbarLayer() {
62 typedef void (LayerImpl::*ScrollbarRegistrationOperation
)(
63 ScrollbarLayerImplBase
*);
65 void RegisterScrollbarWithLayers(ScrollbarLayerImplBase
* scrollbar
,
66 LayerImpl
* container_layer
,
67 LayerImpl
* scroll_layer
,
68 ScrollbarRegistrationOperation operation
) {
69 if (!container_layer
|| !scroll_layer
)
74 // Scrollbars must be notifed of changes to their scroll and container layers
75 // and all scrollable layers in between.
76 for (LayerImpl
* current_layer
= scroll_layer
;
77 current_layer
&& current_layer
!= container_layer
->parent();
78 current_layer
= current_layer
->parent()) {
79 (current_layer
->*operation
)(scrollbar
);
84 void ScrollbarLayerImplBase::SetScrollLayerAndClipLayerByIds(
87 LayerImpl
* scroll_layer
= layer_tree_impl()->LayerById(scroll_layer_id
);
88 LayerImpl
* clip_layer
= layer_tree_impl()->LayerById(clip_layer_id
);
89 if (scroll_layer_
== scroll_layer
&& clip_layer_
== clip_layer
)
92 RegisterScrollbarWithLayers(
93 this, clip_layer_
, scroll_layer_
, &LayerImpl::RemoveScrollbar
);
94 scroll_layer_
= scroll_layer
;
95 clip_layer_
= clip_layer
;
96 RegisterScrollbarWithLayers(
97 this, clip_layer_
, scroll_layer_
, &LayerImpl::AddScrollbar
);
99 ScrollbarParametersDidChange(false);
102 bool ScrollbarLayerImplBase::SetCurrentPos(float current_pos
) {
103 if (current_pos_
== current_pos
)
105 current_pos_
= current_pos
;
106 NoteLayerPropertyChanged();
110 bool ScrollbarLayerImplBase::SetMaximum(int maximum
) {
111 if (maximum_
== maximum
)
114 NoteLayerPropertyChanged();
118 bool ScrollbarLayerImplBase::CanScrollOrientation() const {
121 return scroll_layer_
->user_scrollable(orientation()) && (0 < maximum());
124 bool ScrollbarLayerImplBase::SetVerticalAdjust(float vertical_adjust
) {
125 if (vertical_adjust_
== vertical_adjust
)
127 vertical_adjust_
= vertical_adjust
;
128 NoteLayerPropertyChanged();
132 bool ScrollbarLayerImplBase::SetVisibleToTotalLengthRatio(float ratio
) {
133 if (!IsThumbResizable())
136 if (visible_to_total_length_ratio_
== ratio
)
138 visible_to_total_length_ratio_
= ratio
;
139 NoteLayerPropertyChanged();
143 bool ScrollbarLayerImplBase::SetThumbThicknessScaleFactor(float factor
) {
144 if (thumb_thickness_scale_factor_
== factor
)
146 thumb_thickness_scale_factor_
= factor
;
147 NoteLayerPropertyChanged();
151 gfx::Rect
ScrollbarLayerImplBase::ComputeThumbQuadRect() const {
152 // Thumb extent is the length of the thumb in the scrolling direction, thumb
153 // thickness is in the perpendicular direction. Here's an example of a
154 // horizontal scrollbar - inputs are above the scrollbar, computed values
157 // |<------------------- track_length_ ------------------->|
159 // |--| <-- start_offset
161 // +--+----------------------------+------------------+-------+--+
162 // |<|| |##################| ||>|
163 // +--+----------------------------+------------------+-------+--+
165 // |<- thumb_length ->|
167 // |<------- thumb_offset -------->|
169 // For painted, scrollbars, the length is fixed. For solid color scrollbars we
170 // have to compute it. The ratio of the thumb's length to the track's length
171 // is the same as that of the visible viewport to the total viewport, unless
172 // that would make the thumb's length less than its thickness.
174 // vertical_adjust_ is used when the layer geometry from the main thread is
175 // not in sync with what the user sees. For instance on Android scrolling the
176 // top bar controls out of view reveals more of the page content. We want the
177 // root layer scrollbars to reflect what the user sees even if we haven't
178 // received new layer geometry from the main thread. If the user has scrolled
179 // down by 50px and the initial viewport size was 950px the geometry would
180 // look something like this:
182 // vertical_adjust_ = 50, scroll position 0, visible ratios 99%
183 // Layer geometry: Desired thumb positions:
184 // +--------------------+-+ +----------------------+ <-- 0px
199 // +--------------------+-+ | #|
200 // | horizontal layer | | | #|
201 // +--------------------+-+ | #| <-- 950px
203 // | | |##################### |
204 // +----------------------+ +----------------------+ <-- 1000px
206 // The layer geometry is set up for a 950px tall viewport, but the user can
207 // actually see down to 1000px. Thus we have to move the quad for the
208 // horizontal scrollbar down by the vertical_adjust_ factor and lay the
209 // vertical thumb out on a track lengthed by the vertical_adjust_ factor. This
210 // means the quads may extend outside the layer's bounds.
212 // With the length known, we can compute the thumb's position.
213 float track_length
= TrackLength();
214 int thumb_length
= ThumbLength();
215 int thumb_thickness
= ThumbThickness();
217 // With the length known, we can compute the thumb's position.
218 float clamped_current_pos
=
219 std::min(std::max(current_pos_
, 0.f
), static_cast<float>(maximum_
));
221 int thumb_offset
= TrackStart();
223 float ratio
= clamped_current_pos
/ maximum_
;
224 float max_offset
= track_length
- thumb_length
;
225 thumb_offset
+= static_cast<int>(ratio
* max_offset
);
228 float thumb_thickness_adjustment
=
229 thumb_thickness
* (1.f
- thumb_thickness_scale_factor_
);
231 gfx::RectF thumb_rect
;
232 if (orientation_
== HORIZONTAL
) {
233 thumb_rect
= gfx::RectF(thumb_offset
,
234 vertical_adjust_
+ thumb_thickness_adjustment
,
236 thumb_thickness
- thumb_thickness_adjustment
);
238 thumb_rect
= gfx::RectF(
239 is_left_side_vertical_scrollbar_
240 ? bounds().width() - thumb_thickness
241 : thumb_thickness_adjustment
,
243 thumb_thickness
- thumb_thickness_adjustment
,
247 return gfx::ToEnclosingRect(thumb_rect
);
250 void ScrollbarLayerImplBase::ScrollbarParametersDidChange(bool on_resize
) {
251 if (!clip_layer_
|| !scroll_layer_
)
254 scroll_layer_
->SetScrollbarPosition(this, clip_layer_
, on_resize
);