Lines Matching refs:where

404 PathManipulator::MouseDown(BPoint where)
410 fTransformBox->MouseDown(where);
426 fCanvasView->FilterMouse(&where);
428 BPoint canvasWhere = where;
526 fCanvasView->BeginRectTracking(BRect(where, where),
536 fLastCanvasPos = where;
553 PathManipulator::MouseMoved(BPoint where)
555 fCanvasView->FilterMouse(&where);
558 BPoint canvasWhere = where;
571 fTransformBox->MouseMoved(where);
712 PathManipulator::MouseOver(BPoint where)
716 return fTransformBox->MouseOver(where);
721 BPoint canvasWhere = where;
734 fCanvasView->ConvertToCanvas(&where);
735 _SetModeForMousePos(where);
743 PathManipulator::DoubleClicked(BPoint where)
750 PathManipulator::ShowContextMenu(BPoint where)
800 where = fCanvasView->ConvertToScreen(where);
801 BRect mouseRect(where, where);
803 where += BPoint(5.0, 5.0);
804 menu->Go(where, true, false, mouseRect, true);
1226 PathManipulator::_AddPoint(BPoint where)
1228 if (fPath->AddPoint(where)) {
1250 PathManipulator::_InsertPoint(BPoint where, int32 index)
1263 if (fPath->FindBezierScale(index - 1, where, &scale)
1272 where = scale_point(previousOut, nextIn, scale);
1276 pointIn = scale_point(previousOut, where, scale);
1277 pointOut = scale_point(nextIn, where, 1 - scale);
1578 PathManipulator::_SetModeForMousePos(BPoint where)
1592 float distM = point_point_distance(point, where) * zoomLevel;
1593 float distIn = point_point_distance(pointIn, where) * zoomLevel;
1594 float distOut = point_point_distance(pointOut, where) * zoomLevel;
1638 if (fPath->GetDistance(where, &distance, &index)) {