Lines Matching refs:offset

667 	\param offset BPoint containing the offsets
670 Decorator::MoveBy(BPoint offset)
675 fFootprint.OffsetBy(offset.x, offset.y);
677 _MoveBy(offset);
678 _MoveOutlineBy(offset);
689 \param x x offset
690 \param y y offset
700 Decorator::ResizeBy(BPoint offset, BRegion* dirty)
704 _ResizeBy(offset, dirty);
705 _ResizeOutlineBy(offset, dirty);
1102 Decorator::_MoveBy(BPoint offset)
1107 tab->zoomRect.OffsetBy(offset);
1108 tab->closeRect.OffsetBy(offset);
1109 tab->minimizeRect.OffsetBy(offset);
1110 tab->tabRect.OffsetBy(offset);
1112 fTitleBarRect.OffsetBy(offset);
1113 fFrame.OffsetBy(offset);
1114 fResizeRect.OffsetBy(offset);
1115 fBorderRect.OffsetBy(offset);
1120 Decorator::_MoveOutlineBy(BPoint offset)
1122 fOutlineBorderRect.OffsetBy(offset);
1124 fLeftOutlineBorder.OffsetBy(offset);
1125 fRightOutlineBorder.OffsetBy(offset);
1126 fTopOutlineBorder.OffsetBy(offset);
1127 fBottomOutlineBorder.OffsetBy(offset);
1132 Decorator::_ResizeOutlineBy(BPoint offset, BRegion* dirty)
1134 fOutlineBorderRect.right += offset.x;
1135 fOutlineBorderRect.bottom += offset.y;
1137 fLeftOutlineBorder.bottom += offset.y;
1138 fTopOutlineBorder.right += offset.x;
1140 fRightOutlineBorder.OffsetBy(offset.x, 0.0);
1141 fRightOutlineBorder.bottom += offset.y;
1143 fBottomOutlineBorder.OffsetBy(0.0, offset.y);
1144 fBottomOutlineBorder.right += offset.x;
1151 BPoint offset = delta - fOutlinesDelta;
1159 fOutlineBorderRect.right += offset.x;
1160 fOutlineBorderRect.bottom += offset.y;
1162 fLeftOutlineBorder.bottom += offset.y;
1163 fTopOutlineBorder.right += offset.x;
1165 fRightOutlineBorder.OffsetBy(offset.x, 0.0);
1166 fRightOutlineBorder.bottom += offset.y;
1168 fBottomOutlineBorder.OffsetBy(0.0, offset.y);
1169 fBottomOutlineBorder.right += offset.x;