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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
// Copyright 2008, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CHROME_VIEWS_SCROLL_VIEW_H__
#define CHROME_VIEWS_SCROLL_VIEW_H__
#include "chrome/views/scroll_bar.h"
namespace ChromeViews {
/////////////////////////////////////////////////////////////////////////////
//
// ScrollView class
//
// A ScrollView is used to make any View scrollable. The view is added to
// a viewport which takes care of clipping.
//
// In this current implementation both horizontal and vertical scrollbars are
// added as needed.
//
// The scrollview supports keyboard UI and mousewheel.
//
/////////////////////////////////////////////////////////////////////////////
class ScrollView : public View,
public ScrollBarController {
public:
static const char* const ScrollView::kViewClassName;
ScrollView();
// Initialize with specific views. resize_corner is optional.
ScrollView(ScrollBar* horizontal_scrollbar,
ScrollBar* vertical_scrollbar,
View* resize_corner);
virtual ~ScrollView();
// Set the contents. Any previous contents will be deleted. The contents
// is the view that needs to scroll.
void SetContents(View* a_view);
View* GetContents() const;
// Overridden to layout the viewport and scrollbars.
virtual void Layout();
virtual void DidChangeBounds(const CRect& previous, const CRect& current);
// Returns the visible region of the content View.
gfx::Rect GetVisibleRect() const;
// Scrolls the minimum amount necessary to make the specified rectangle
// visible, in the coordinates of the contents view. The specified rectangle
// is constrained by the bounds of the contents view. This has no effect if
// the contents have not been set.
//
// Client code should use ScrollRectToVisible, which invokes this
// appropriately.
void ScrollContentsRegionToBeVisible(int x, int y, int width, int height);
// ScrollBarController.
// NOTE: this is intended to be invoked by the ScrollBar, and NOT general
// client code.
// See also ScrollRectToVisible.
virtual void ScrollToPosition(ScrollBar* source, int position);
// Returns the amount to scroll relative to the visible bounds. This invokes
// either GetPageScrollIncrement or GetLineScrollIncrement to determine the
// amount to scroll. If the view returns 0 (or a negative value) a default
// value is used.
virtual int GetScrollIncrement(ScrollBar* source,
bool is_page,
bool is_positive);
// Overridden to setup keyboard ui when the view hierarchy changes
virtual void ViewHierarchyChanged(bool is_add, View *parent, View *child);
// Keyboard events
virtual bool OnKeyPressed(const KeyEvent& event);
virtual bool OnMouseWheel(const MouseWheelEvent& e);
virtual std::string GetClassName() const;
// Retrieves the vertical scrollbar width.
int GetScrollBarWidth() const;
// Retrieves the horizontal scrollbar height.
int GetScrollBarHeight() const;
// Computes the visibility of both scrollbars, taking in account the view port
// and content sizes.
void ComputeScrollBarsVisibility(const CSize& viewport_size,
const CSize& content_size,
bool* horiz_is_shown,
bool* vert_is_shown) const;
ScrollBar* horizontal_scroll_bar() const { return horiz_sb_; }
ScrollBar* vertical_scroll_bar() const { return vert_sb_; }
private:
// Initialize the ScrollView. resize_corner is optional.
void Init(ScrollBar* horizontal_scrollbar,
ScrollBar* vertical_scrollbar,
View* resize_corner);
// Shows or hides the scrollbar/resize_corner based on the value of
// |should_show|.
void SetControlVisibility(View* control, bool should_show);
// Update the scrollbars positions given viewport and content sizes.
void UpdateScrollBarPositions();
// Make sure the content is not scrolled out of bounds
void CheckScrollBounds();
// Make sure the content is not scrolled out of bounds in one dimension
int CheckScrollBounds(int viewport_size, int content_size, int current_pos);
// The clipping viewport. Content is added to that view.
View* viewport_;
// The current contents
View* contents_;
// Horizontal scrollbar.
ScrollBar* horiz_sb_;
// Vertical scrollbar.
ScrollBar* vert_sb_;
// Resize corner.
View* resize_corner_;
DISALLOW_EVIL_CONSTRUCTORS(ScrollView);
};
// VariableRowHeightScrollHelper is intended for views that contain rows of
// varying height. To use a VariableRowHeightScrollHelper create one supplying
// a Controller and delegate GetPageScrollIncrement and GetLineScrollIncrement
// to the helper. VariableRowHeightScrollHelper calls back to the
// Controller to determine row boundaries.
class VariableRowHeightScrollHelper {
public:
// The origin and height of a row.
struct RowInfo {
RowInfo(int origin, int height) : origin(origin), height(height) {}
// Origin of the row.
int origin;
// Height of the row.
int height;
};
// Used to determine row boundaries.
class Controller {
public:
// Returns the origin and size of the row at the specified location.
virtual VariableRowHeightScrollHelper::RowInfo GetRowInfo(int y) = 0;
};
// Creates a new VariableRowHeightScrollHelper. Controller is
// NOT deleted by this VariableRowHeightScrollHelper.
explicit VariableRowHeightScrollHelper(Controller* controller);
virtual ~VariableRowHeightScrollHelper();
// Delegate the View methods of the same name to these. The scroll amount is
// determined by querying the Controller for the appropriate row to scroll
// to.
int GetPageScrollIncrement(ScrollView* scroll_view,
bool is_horizontal, bool is_positive);
int GetLineScrollIncrement(ScrollView* scroll_view,
bool is_horizontal, bool is_positive);
protected:
// Returns the row information for the row at the specified location. This
// calls through to the method of the same name on the controller.
virtual RowInfo GetRowInfo(int y);
private:
Controller* controller_;
DISALLOW_EVIL_CONSTRUCTORS(VariableRowHeightScrollHelper);
};
// FixedRowHeightScrollHelper is intended for views that contain fixed height
// height rows. To use a FixedRowHeightScrollHelper delegate
// GetPageScrollIncrement and GetLineScrollIncrement to it.
class FixedRowHeightScrollHelper : public VariableRowHeightScrollHelper {
public:
// Creates a FixedRowHeightScrollHelper. top_margin gives the distance from
// the top of the view to the first row, and may be 0. row_height gives the
// height of each row.
FixedRowHeightScrollHelper(int top_margin, int row_height);
protected:
// Calculates the bounds of the row from the top margin and row height.
virtual RowInfo GetRowInfo(int y);
private:
int top_margin_;
int row_height_;
DISALLOW_EVIL_CONSTRUCTORS(FixedRowHeightScrollHelper);
};
}
#endif // CHROME_VIEWS_SCROLL_VIEW_H__
|