Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Side by Side Diff: views/controls/scroll_view.cc

Issue 347010: Fixed view example. It was failing because some of view classes requires WidgetGTK in (Closed)
Patch Set: revert unintentional change Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | views/examples/button_example.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "views/controls/scroll_view.h" 5 #include "views/controls/scroll_view.h"
6 6
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "views/controls/scrollbar/native_scroll_bar.h" 9 #include "views/controls/scrollbar/native_scroll_bar.h"
10 #include "views/widget/root_view.h" 10 #include "views/widget/root_view.h"
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 } 183 }
184 bool resize_corner_required = resize_corner_ && horiz_sb_required && 184 bool resize_corner_required = resize_corner_ && horiz_sb_required &&
185 vert_sb_required; 185 vert_sb_required;
186 // Take action. 186 // Take action.
187 SetControlVisibility(horiz_sb_, horiz_sb_required); 187 SetControlVisibility(horiz_sb_, horiz_sb_required);
188 SetControlVisibility(vert_sb_, vert_sb_required); 188 SetControlVisibility(vert_sb_, vert_sb_required);
189 SetControlVisibility(resize_corner_, resize_corner_required); 189 SetControlVisibility(resize_corner_, resize_corner_required);
190 190
191 // Non-default. 191 // Non-default.
192 if (horiz_sb_required) { 192 if (horiz_sb_required) {
193 viewport_bounds.set_height(viewport_bounds.height() - horiz_sb_height); 193 viewport_bounds.set_height(
194 std::max(0, viewport_bounds.height() - horiz_sb_height));
194 should_layout_contents = true; 195 should_layout_contents = true;
195 } 196 }
196 // Default. 197 // Default.
197 if (!vert_sb_required) { 198 if (!vert_sb_required) {
198 viewport_bounds.set_width(viewport_bounds.width() + vert_sb_width); 199 viewport_bounds.set_width(viewport_bounds.width() + vert_sb_width);
199 should_layout_contents = true; 200 should_layout_contents = true;
200 } 201 }
201 202
202 if (horiz_sb_required) { 203 if (horiz_sb_required) {
203 horiz_sb_->SetBounds(0, 204 horiz_sb_->SetBounds(0,
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 508
508 VariableRowHeightScrollHelper::RowInfo 509 VariableRowHeightScrollHelper::RowInfo
509 FixedRowHeightScrollHelper::GetRowInfo(int y) { 510 FixedRowHeightScrollHelper::GetRowInfo(int y) {
510 if (y < top_margin_) 511 if (y < top_margin_)
511 return RowInfo(0, top_margin_); 512 return RowInfo(0, top_margin_);
512 return RowInfo((y - top_margin_) / row_height_ * row_height_ + top_margin_, 513 return RowInfo((y - top_margin_) / row_height_ * row_height_ + top_margin_,
513 row_height_); 514 row_height_);
514 } 515 }
515 516
516 } // namespace views 517 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | views/examples/button_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698