Lines Matching refs:where

86 _DrawOutline(BView* view, BRect where)
88 where.right++;
89 where.bottom--;
93 view->StrokeRect(where);
284 BTitleView::MouseDown(BPoint where)
299 BColumnTitle* title = FindColumnTitle(where);
300 BColumnTitle* resizedTitle = InColumnResizeArea(where);
303 GetMouse(&where, &buttons);
315 menu->Go(ConvertToScreen(where), true, false);
346 fTrackingState = new ColumnResizeState(this, resizedTitle, where,
349 fTrackingState = new ColumnDragState(this, title, where,
356 BTitleView::MouseUp(BPoint where)
361 fTrackingState->MouseUp(where);
369 BTitleView::MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage)
379 fTrackingState->MouseMoved(where, buttons);
385 if (InColumnResizeArea(where) && window->IsActive())
396 _inherited::MouseMoved(where, code, dragMessage);
401 BTitleView::InColumnResizeArea(BPoint where) const
406 if (title->InColumnResizeArea(where))
415 BTitleView::FindColumnTitle(BPoint where) const
420 if (title->Bounds().Contains(where))
454 BColumnTitle::InColumnResizeArea(BPoint where) const
460 return edge.Contains(where);
567 BPoint where, bigtime_t pastClickTime)
571 fFirstClickPoint(where),
579 ColumnTrackState::MouseUp(BPoint where)
584 Clicked(where);
586 Done(where);
591 ColumnTrackState::MouseMoved(BPoint where, uint32 buttons)
597 if (moveMargin.Contains(where))
601 Moved(where, buttons);
610 BPoint where, bigtime_t pastClickTime)
612 ColumnTrackState(view, title, where, pastClickTime),
615 - where.x)
622 ColumnResizeState::ValueChanged(BPoint where)
624 float newWidth = where.x + fInitialTrackOffset
634 ColumnResizeState::Moved(BPoint where, uint32)
636 float newWidth = where.x + fInitialTrackOffset
658 ColumnResizeState::Done(BPoint /*where*/)
665 ColumnResizeState::Clicked(BPoint /*where*/)
706 BPoint where, bigtime_t pastClickTime)
708 ColumnTrackState(view, columnTitle, where, pastClickTime),
709 fInitialMouseTrackOffset(where.x),
724 ColumnDragState::Moved(BPoint where, uint32)
726 // figure out where we are with the mouse
728 bool overTitleView = titleBounds.Contains(where);
730 ? fTitleView->FindColumnTitle(where) : 0;
734 || titleBoundsWithMargin.Contains(where);
763 rect.OffsetBy(where.x - fInitialMouseTrackOffset, where.y - 5);
778 || where.x < overTitle->Bounds().left
797 DrawOutline(where.x - fInitialMouseTrackOffset);
804 ColumnDragState::Done(BPoint /*where*/)
813 ColumnDragState::Clicked(BPoint /*where*/)