Lines Matching refs:where

393 TReplicantTray::MouseDown(BPoint where)
404 ShowReplicantMenu(where);
406 BPoint save = where;
414 if (fabs(where.x - save.x) > 4 || fabs(where.y - save.y) > 4)
419 ShowReplicantMenu(where);
424 GetMouse(&where, &buttons);
427 BView::MouseDown(where);
445 BPoint where = ConvertToScreen(point);
446 menu->Go(where, true, true, BRect(where - BPoint(4, 4),
447 where + BPoint(4, 4)), true);
626 // If there is a team running where the add-on comes from,
1141 /** Shelf will call to determine where and if
1177 * calculate where the left point should be for this
1472 BPoint where;
1473 where.x = floorf((dragRegion.left + dragRegion.right) / 2 + 0.5) - 1;
1474 where.y = dragRegion.top + 2;
1476 while (where.y + 1 <= dragRegion.bottom - 2) {
1477 AddLine(where, where, vdark);
1478 AddLine(where + BPoint(1, 1), where + BPoint(1, 1), light);
1480 where.y += 3;
1517 TDragRegion::MouseDown(BPoint where)
1526 if (!dragRegion.Contains(where))
1535 fPreviousPosition = where;
1549 TDragRegion::MouseUp(BPoint where)
1555 BControl::MouseUp(where);
1560 TDragRegion::SwitchModeForRegion(BPoint where, BRegion region,
1563 if (!region.Contains(where)) {
1696 TDragRegion::MouseMoved(BPoint where, uint32 transit,
1699 if (!IsTracking() || where == fPreviousPosition)
1700 return BControl::MouseMoved(where, transit, dragMessage);
1702 fPreviousPosition = where;
1704 // TODO: can't trust the passed in where param, get screen_where from
1710 whereScreen = ConvertToScreen(where);
1830 BPoint where;
1831 where.x = floorf((dragRegion.left + dragRegion.right) / 2 + 0.5) - 1;
1832 where.y = dragRegion.top + 2;
1834 while (where.y + 1 <= dragRegion.bottom) {
1835 AddLine(where, where, vdark);
1836 AddLine(where + BPoint(1, 1), where + BPoint(1, 1), light);
1838 where.y += 3;
1845 TResizeControl::MouseDown(BPoint where)
1869 TResizeControl::MouseUp(BPoint where)
1875 BControl::MouseUp(where);
1880 TResizeControl::MouseMoved(BPoint where, uint32 code,
1884 return BControl::MouseMoved(where, code, dragMessage);
1888 BPoint whereScreen = ConvertToScreen(where);
1912 BControl::MouseMoved(where, code, dragMessage);