Home
last modified time | relevance | path

Searched refs:row_bounds (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/ui/views/window/
Ddialog_client_view.cc38 void LayoutButton(LabelButton* button, gfx::Rect* row_bounds) { in LayoutButton() argument
43 row_bounds->set_width(row_bounds->width() - size.width()); in LayoutButton()
44 button->SetBounds(row_bounds->right(), row_bounds->y(), in LayoutButton()
45 size.width(), row_bounds->height()); in LayoutButton()
46 row_bounds->set_width(row_bounds->width() - kRelatedButtonHSpacing); in LayoutButton()
232 gfx::Rect row_bounds(bounds.x(), bounds.bottom() - height, in Layout() local
235 LayoutButton(cancel_button_, &row_bounds); in Layout()
236 LayoutButton(ok_button_, &row_bounds); in Layout()
238 LayoutButton(ok_button_, &row_bounds); in Layout()
239 LayoutButton(cancel_button_, &row_bounds); in Layout()
[all …]
/external/chromium_org/ui/views/controls/tree/
Dtree_view.cc725 gfx::Rect row_bounds = GetBoundsForNode(selected_node_); in LayoutEditor() local
726 row_bounds.set_x( in LayoutEditor()
727 GetMirroredXWithWidthInView(row_bounds.x(), row_bounds.width())); in LayoutEditor()
728 row_bounds.set_x(row_bounds.x() + text_offset_); in LayoutEditor()
729 row_bounds.set_width(row_bounds.width() - text_offset_); in LayoutEditor()
730 row_bounds.Inset(kTextHorizontalPadding, kTextVerticalPadding); in LayoutEditor()
731 row_bounds.Inset(-empty_editor_size_.width() / 2, in LayoutEditor()
734 row_bounds.set_width(row_bounds.width() + 50); in LayoutEditor()
735 editor_->SetBoundsRect(row_bounds); in LayoutEditor()
/external/chromium_org/ui/views/controls/table/
Dtable_view_row_background_painter.h23 const gfx::Rect& row_bounds,