Lines Matching refs:width

242 	float width = owner->StringWidth(Label());
249 owner->StrokeLine(BPoint((frame.left + frame.right - width) / 2.0,
251 BPoint((frame.left + frame.right + width) / 2.0,
255 owner->StrokeLine(BPoint((frame.left + frame.right - width) / 2.0,
257 BPoint((frame.left + frame.right + width) / 2.0,
262 (frame.top + frame.bottom - width) / 2.0),
264 (frame.top + frame.bottom + width) / 2.0));
268 (frame.top + frame.bottom - width) / 2.0),
270 (frame.top + frame.bottom + width) / 2.0));
405 BTabView::BTabView(const char* name, button_width width, uint32 flags)
409 _InitObject(true, width);
413 BTabView::BTabView(BRect frame, const char* name, button_width width,
418 _InitObject(false, width);
440 int16 width;
441 if (archive->FindInt16("_but_width", &width) == B_OK)
442 fTabWidthSetting = (button_width)width;
1000 float width = padding * 5.0f;
1031 width = 0.0;
1034 if (tabWidth > width)
1035 width = tabWidth;
1043 return BRect(offset + index * width, 0.0f,
1044 offset + index * width + width, height);
1046 return BRect(offset + index * width, bounds.bottom - height,
1047 offset + index * width + width, bounds.bottom);
1049 return BRect(0.0f, offset + index * width, height,
1050 offset + index * width + width);
1052 return BRect(bounds.right - height, offset + index * width,
1053 bounds.right, offset + index * width + width);
1101 containerSize.width += 2 * _BorderWidth();
1103 if (containerSize.width > size.width)
1104 size.width = containerSize.width;
1120 containerSize.width += 2 * _BorderWidth();
1122 if (containerSize.width > size.width)
1123 size.width = containerSize.width;
1139 containerSize.width += 2 * _BorderWidth();
1141 if (containerSize.width > size.width)
1142 size.width = containerSize.width;
1255 BTabView::SetTabWidth(button_width width)
1257 fTabWidthSetting = width;
1368 BTabView::_InitObject(bool layouted, button_width width)
1372 fTabWidthSetting = width;
1432 size.width += frame.Width();