Lines Matching defs:rect

213 	BRect rect(0, 0, 16, 16);
214 rect.OffsetTo(Bounds().right - rect.Width(),
215 Bounds().bottom - rect.Height());
218 AddChild(new BDragger(rect, this,
529 BRect rect(x1 * fFontWidth, _LineOffset(y1),
531 //debug_printf("Invalidate((%f, %f) - (%f, %f))\n", rect.left, rect.top,
532 //rect.right, rect.bottom);
533 Invalidate(rect);
614 BRect rect(0, 0, fColumns * fFontWidth, fRows * fFontHeight);
630 return rect;
635 TermView::SetTermSize(BRect rect, bool notifyShell)
640 GetTermSizeFromRect(rect, &rows, &columns);
646 TermView::GetTermSizeFromRect(const BRect &rect, int *_rows,
649 int columns = int((rect.IntegerWidth() + 1) / fFontWidth);
650 int rows = int((rect.IntegerHeight() + 1) / fFontHeight);
1166 BRect rect(fFontWidth * fCursor.x, _LineOffset(fCursor.y), 0, 0);
1167 rect.right = rect.left + fFontWidth - 1;
1168 rect.bottom = rect.top + fFontHeight - 1;
1179 rect.top = rect.bottom - 2;
1182 rect.right = rect.left + 1;
1201 _DrawLinePart(fCursor.x * fFontWidth, (int32)rect.top, attr, buffer,
1225 rect.right += fFontWidth;
1227 FillRect(rect);
1375 BRect rect(clearLeft, updateRect.top, updateRect.right,
1378 FillRect(rect);
1386 BRect rect(updateRect.left, clearTop, updateRect.right,
1389 FillRect(rect);
1423 BRect rect(fFontWidth * i, _LineOffset(j),
1425 rect.bottom = rect.top + fFontHeight - 1;
1436 rect.right = rect.left + fFontWidth * count - 1;
1446 FillRect(rect);
2964 BRect rect;
2966 rect.Set(start.x, start.y, end.x + fFontWidth, end.y + fFontHeight);
2968 rect.Set(0, start.y, fColumns * fFontWidth, end.y + fFontHeight);
2970 rect = rect & Bounds();
2972 DragMessage(&message, rect);