Searched refs:prefsize (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc62 gfx::Size prefsize = button.GetPreferredSize(); local
63 button.SetBounds(0, 0, prefsize.width(), prefsize.height());
69 press_point = gfx::Vector2d(prefsize.width() / 2, prefsize.height() / 2);
73 views::GetCanvasForDragImage(widget, prefsize));
H A Dview.cc382 gfx::Size prefsize = GetPreferredSize(); local
383 if ((prefsize.width() != width()) || (prefsize.height() != height()))
384 SetBounds(x(), y(), prefsize.width(), prefsize.height());
/external/chromium_org/chrome/browser/ui/views/
H A Dfind_bar_host.cc270 gfx::Size prefsize = view()->GetPreferredSize();
273 if (widget_bounds.width() < prefsize.width())
274 prefsize.set_width(widget_bounds.width());
277 if (widget_bounds.height() < prefsize.height())
285 x += widget_bounds.width() - prefsize.width();
287 view_location.SetRect(x, y, prefsize.width(), prefsize.height());
H A Dfind_bar_view.cc348 gfx::Size prefsize = find_text_->GetPreferredSize(); local
349 prefsize.set_height(preferred_height_);
352 prefsize.Enlarge(kMarginLeftOfCloseButton + kMarginRightOfCloseButton +
356 prefsize.Enlarge(find_previous_button_->GetPreferredSize().width(), 0);
357 prefsize.Enlarge(find_next_button_->GetPreferredSize().width(), 0);
358 prefsize.Enlarge(close_button_->GetPreferredSize().width(), 0);
359 return prefsize;
/external/chromium_org/ui/views/controls/scrollbar/
H A Dbase_scroll_bar_thumb.cc32 gfx::Size prefsize = GetPreferredSize(); local
33 size = std::max(size, scroll_bar_->IsHorizontal() ? prefsize.width() :
34 prefsize.height());
/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_shelf_view.cc173 gfx::Size prefsize(kRightPadding + kLeftPadding + kCloseAndLinkPadding, 0);
174 AdjustSize(close_button_, &prefsize);
175 AdjustSize(show_all_view_, &prefsize);
178 AdjustSize(*download_views_.begin(), &prefsize);
179 prefsize.Enlarge(kDownloadPadding, 0);
181 prefsize.Enlarge(0, kTopBottomPadding + kTopBottomPadding);
183 prefsize.set_height(static_cast<int>(
184 static_cast<double>(prefsize.height()) *
187 return prefsize;
/external/chromium_org/ui/views/controls/button/
H A Dmenu_button.cc159 gfx::Size prefsize = LabelButton::GetPreferredSize(); local
161 prefsize.Enlarge(menu_marker_->width() + kMenuMarkerPaddingLeft +
165 return prefsize;
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_scroll_view_container.cc247 gfx::Size prefsize = scroll_view_->GetContents()->GetPreferredSize(); local
249 prefsize.Enlarge(insets.width(), insets.height());
250 return prefsize;
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view.cc718 gfx::Size prefsize; local
720 prefsize.set_height(
726 prefsize.set_height(static_cast<int>(chrome::kBookmarkBarHeight *
729 return prefsize;

Completed in 7486 milliseconds