Searched refs:where (Results 176 - 200 of 465) sorted by relevance

1234567891011>>

/haiku/headers/os/interface/
H A DMenuField.h46 virtual void MouseDown(BPoint where);
51 virtual void MouseUp(BPoint where);
52 virtual void MouseMoved(BPoint where, uint32 transit,
56 virtual void FrameMoved(BPoint where);
H A DPrintJob.h49 BPoint where);
88 BPoint& where);
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.h45 virtual bool MouseDown(BPoint where);
46 virtual void MouseMoved(BPoint where);
48 virtual bool MouseOver(BPoint where);
49 virtual bool DoubleClicked(BPoint where);
/haiku/src/apps/showimage/
H A DShowImageStatusView.h35 virtual void MouseDown(BPoint where);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.h62 virtual void MouseDown(BPoint where);
63 virtual void MouseMoved(BPoint where, uint32, const BMessage*);
64 virtual void MouseUp(BPoint where);
84 BPoint where);
H A DListViews.cpp202 BPoint where; local
204 GetMouse(&where, &buttons, false);
205 uint32 transit = Bounds().Contains(where) ? B_INSIDE_VIEW : B_OUTSIDE_VIEW;
206 MouseMoved(where, transit, &fDragMessageCopy);
232 DragSortableListView::MouseDown(BPoint where) argument
234 int32 index = IndexOf(where);
240 return BListView::MouseDown(where);
263 BListView::MouseDown(where);
268 DragSortableListView::MouseMoved(BPoint where, uint32 transit, const BMessage* msg) argument
283 SetDropTargetRect(msg, where);
310 MouseUp(BPoint where) argument
327 BPoint where; local
416 SetDropTargetRect(const BMessage* message, BPoint where) argument
802 InitiateDrag(BPoint where, int32 index, bool) argument
[all...]
/haiku/src/bin/desklink/
H A DDeskButton.cpp168 BPoint where = ConvertToScreen(point); local
188 menu->Go(where, true, true, BRect(where - BPoint(4, 4),
189 where + BPoint(4, 4)));
/haiku/src/tests/kits/interface/
H A DGetMouseTest.cpp15 MouseDown(BPoint where) argument
H A DClippingPlusRedraw.cpp14 virtual void MouseDown(BPoint where);
76 ClippingView::MouseDown(BPoint where) argument
/haiku/src/kits/tracker/
H A DIconMenuItem.cpp50 DimmedIconBlitter(BView* view, BPoint where, BBitmap* bitmap, void*) argument
57 view->DrawBitmap(bitmap, where);
61 view->DrawBitmap(bitmap, where);
84 // to be able to space item the same, no matter where they are. The
153 BPoint where(ContentLocation());
157 where.y += ceil(deltaHeight / 2);
160 where.x += 6;
167 IconCache::sIconCache->Draw(fModel.ResolveIfLink(), Menu(), where,
172 IconCache::sIconCache->SyncDraw(fModel.ResolveIfLink(), Menu(), where,
447 BPoint where(ContentLocatio
[all...]
H A DDraggableContainerIcon.cpp67 DraggableContainerIcon::MouseDown(BPoint where) argument
80 if (IconCache::sIconCache->IconHitTest(where, window->TargetModel(),
86 fClickPoint = where;
107 DraggableContainerIcon::MouseMoved(BPoint where, uint32, const BMessage*) argument
110 || (abs((int32)(where.x - fClickPoint.x)) <= kDragSlop
111 && abs((int32)(where.y - fClickPoint.y)) <= kDragSlop))
/haiku/src/bin/network/mount_nfs/
H A Dmount_nfs.cpp14 int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parameters, size_t len) argument
17 return fs_mount_volume(where, device, filesystem, flags, (const char *)parameters);
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DAlphaSlider.cpp96 AlphaSlider::MouseDown(BPoint where) argument
105 SetValue(_ValueFor(where));
112 AlphaSlider::MouseUp(BPoint where) argument
119 AlphaSlider::MouseMoved(BPoint where, uint32 transit, argument
125 SetValue(_ValueFor(where));
391 AlphaSlider::_ValueFor(BPoint where) const
397 value = (int32)(255 * (where.x - r.left) / r.Width() + 0.5);
399 value = (int32)(255 * (where.y - r.top) / r.Height() + 0.5);
H A DColorField.cpp189 ColorField::MouseDown(BPoint where) argument
194 PositionMarkerAt(where);
206 ColorField::MouseUp(BPoint where) argument
213 ColorField::MouseMoved(BPoint where, uint32 transit, argument
217 BView::MouseMoved(where, transit, dragMessage);
221 PositionMarkerAt(where);
352 ColorField::PositionMarkerAt(BPoint where) argument
355 where.ConstrainTo(rect);
356 where -= rect.LeftTop();
359 fMarkerPosition = where;
[all...]
/haiku/src/apps/haikudepot/ui_generic/
H A DLinkView.cpp33 LinkView::MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
48 LinkView::MouseDown(BPoint where) argument
/haiku/src/apps/deskbar/
H A DTimeView.h96 void MouseDown(BPoint where);
109 void ShowCalendar(BPoint where);
H A DTeamMenu.cpp233 TTeamMenu::MouseDown(BPoint where) argument
236 return BMenu::MouseDown(where);
238 BMenuItem* item = ItemAtPoint(where);
240 return BMenu::MouseDown(where);
243 if (teamItem == NULL || !teamItem->HandleMouseDown(where))
244 BMenu::MouseDown(where);
/haiku/src/kits/interface/
H A DScrollBar.cpp575 BScrollBar::MouseDown(BPoint where) argument
589 // special absolute scrolling: move thumb to where we clicked
592 = fPrivateData->fThumbFrame.LeftTop() - where;
601 SetValue(_ValueFor(where + fPrivateData->fClickOffset));
606 if (fPrivateData->fThumbFrame.Contains(where)) {
609 = fPrivateData->fThumbFrame.LeftTop() - where;
621 fPrivateData->fButtonDown = _ButtonFor(where);
642 if (where.y < fPrivateData->fThumbFrame.top)
647 if (where.x < fPrivateData->fThumbFrame.left)
652 _UpdateTargetValue(where);
679 MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage) argument
715 MouseUp(BPoint where) argument
1420 _UpdateTargetValue(BPoint where) argument
[all...]
H A DMenuBar.cpp307 BMenuBar::MouseDown(BPoint where) argument
313 GetMouse(&where, &buttons);
332 BMenuBar::MouseUp(BPoint where) argument
334 BView::MouseUp(where);
559 BPoint where; local
566 GetMouse(&where, &buttons);
576 : _HitTestItems(where, B_ORIGIN);
578 if (_OverSubmenu(fSelected, ConvertToScreen(where))
594 // where to store the current mouse position ?
605 if (fExtraRect != NULL && fExtraRect->Contains(where)
[all...]
/haiku/src/apps/charactermap/
H A DCharacterView.cpp352 CharacterView::MouseDown(BPoint where) argument
362 fClickPoint = where;
377 _GetCharacterAt(where, character, &rect);
379 where = rect.LeftTop();
380 where.x += (rect.Width() - fMenu->Frame().Width()) / 2;
381 where.y += (rect.Height() - fMenu->Frame().Height()) / 2;
383 ConvertToScreen(&where);
384 fMenu->Go(where, true, true, true);
403 ConvertToScreen(&where);
404 menu->Go(where, tru
411 MouseUp(BPoint where) argument
418 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
[all...]
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp322 HeaderView::MouseDown(BPoint where) argument
327 if (fTitleRect.Contains(where) && fTitleEditView == NULL)
331 else if (fIconRect.Contains(where)) {
341 contextMenu->Go(ConvertToScreen(where), true, true,
349 offsetPoint.x = where.x - fIconRect.left;
350 offsetPoint.y = where.y - fIconRect.top;
358 if (abs((int32)(fClickPoint.x - where.x)) < kDragSlop
359 && abs((int32)(fClickPoint.y - where.y)) < kDragSlop) {
377 fClickPoint = where;
384 HeaderView::MouseMoved(BPoint where, uint3 argument
491 MouseUp(BPoint where) argument
[all...]
/haiku/src/servers/app/
H A DWorkspacesView.cpp117 under \a where.
119 If, for some reason, there is no workspace located under \where,
123 WorkspacesView::_WorkspaceAt(BPoint where, int32& index) argument
131 if (workspaceFrame.Contains(where))
424 WorkspacesView::MouseDown(BMessage* message, BPoint where) argument
438 BRect workspaceFrame = _WorkspaceAt(where, index);
456 if (frame.Contains(where) && window->Feel() != kDesktopWindowFeel
495 fLeftTopOffset = where - windowFrame.LeftTop();
497 fClickPoint = where;
505 WorkspacesView::MouseUp(BMessage* message, BPoint where) argument
525 MouseMoved(BMessage* message, BPoint where) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DHeaderView.cpp566 virtual void MouseDown(BPoint where, uint32 buttons, uint32 modifiers) argument
570 virtual void MouseUp(BPoint where, uint32 buttons, uint32 modifiers) argument
574 virtual void MouseMoved(BPoint where, uint32 transit, argument
588 virtual void MouseDown(BPoint where, uint32 buttons,
590 virtual void MouseMoved(BPoint where, uint32 transit,
603 virtual void MouseUp(BPoint where, uint32 buttons,
605 virtual void MouseMoved(BPoint where, uint32 transit,
626 HeaderView::DefaultState::MouseDown(BPoint where, uint32 buttons, argument
636 int32 headerIndex = fParent->HeaderIndexAt(where);
648 if (fabs(headerFrame.left - where
661 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
696 MouseUp(BPoint where, uint32 buttons, uint32 modifiers) argument
705 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
815 MouseDown(BPoint where) argument
831 MouseUp(BPoint where) argument
847 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
[all...]
/haiku/src/apps/mediaplayer/
H A DVideoView.cpp131 BPoint where; local
133 GetMouse(&where, &buttons, false);
141 message.AddPoint("where", where);
151 ConvertToScreen(&where);
152 set_mouse_position((int32)where.x, (int32)where.y);
159 VideoView::MouseMoved(BPoint where, uint32 transit, argument
/haiku/src/apps/switcher/
H A DLaunchButton.cpp157 LaunchButton::MouseDown(BPoint where) argument
170 fDragStart = where;
173 BIconButton::MouseDown(where);
178 LaunchButton::MouseUp(BPoint where) argument
184 BIconButton::MouseUp(where);
189 LaunchButton::MouseMoved(BPoint where, uint32 transit, argument
207 BIconButton::MouseMoved(where, transit, dragMessage);

Completed in 239 milliseconds

1234567891011>>