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

/external/chromium_org/ui/views/
H A Dbutton_drag_utils.cc52 gfx::Size prefsize = button.GetPreferredSize(); local
53 button.SetBounds(0, 0, prefsize.width(), prefsize.height());
59 press_point = gfx::Vector2d(prefsize.width() / 2, prefsize.height() / 2);
63 views::GetCanvasForDragImage(widget, prefsize));
H A Dview.cc387 gfx::Size prefsize = GetPreferredSize(); local
388 if ((prefsize.width() != width()) || (prefsize.height() != height()))
389 SetBounds(x(), y(), prefsize.width(), prefsize.height());
/external/chromium_org/ui/views/controls/button/
H A Dtext_button.cc285 gfx::Size prefsize(std::max(max_text_size_.width(),
291 prefsize.set_width(std::min(max_width_, prefsize.width()));
293 prefsize.set_width(std::max(prefsize.width(), min_width_));
294 prefsize.set_height(std::max(prefsize.height(), min_height_));
296 return prefsize;
602 gfx::Size prefsize(TextButtonBase::GetPreferredSize());
603 prefsize
[all...]
H A Dmenu_button.cc151 gfx::Size prefsize = LabelButton::GetPreferredSize(); local
153 prefsize.Enlarge(menu_marker_->width() + kMenuMarkerPaddingLeft +
157 return prefsize;
/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.cc342 gfx::Size prefsize = find_text_->GetPreferredSize(); local
343 prefsize.set_height(preferred_height_);
346 prefsize.Enlarge(kMarginLeftOfCloseButton + kMarginRightOfCloseButton +
349 prefsize.Enlarge(find_previous_button_->GetPreferredSize().width(), 0);
350 prefsize.Enlarge(find_next_button_->GetPreferredSize().width(), 0);
351 prefsize.Enlarge(close_button_->GetPreferredSize().width(), 0);
352 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/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.cc710 gfx::Size prefsize; local
712 prefsize.set_height(
718 prefsize.set_height(static_cast<int>(chrome::kBookmarkBarHeight *
721 return prefsize;

Completed in 203 milliseconds