Searched refs:where (Results 201 - 225 of 465) sorted by relevance

1234567891011>>

/haiku/src/apps/terminal/
H A DTermView.h146 virtual void MouseDown(BPoint where);
147 virtual void MouseMoved(BPoint where, uint32 transit,
149 virtual void MouseUp(BPoint where);
154 virtual void ScrollTo(BPoint where);
232 float _MouseDistanceSinceLastClick(BPoint where);
239 void _SelectWord(BPoint where, bool extend,
241 void _SelectLine(BPoint where, bool extend,
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.cpp319 Chart::MouseDown(BPoint where) argument
332 fDraggingStartPos = where;
340 Chart::MouseUp(BPoint where) argument
356 Chart::MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage) argument
358 fLastMousePos = where;
364 + fDraggingStartPos.x - where.x);
408 Chart::ScrollTo(BPoint where) argument
413 _ScrollTo(where.x, true);
414 _ScrollTo(where.y, false);
578 // compute the domain point where t
[all...]
/haiku/src/apps/mediaplayer/interface/
H A DPeakView.cpp124 PeakView::MouseDown(BPoint where) argument
152 where = ConvertToScreen(where);
155 BRect mouseRect(where, where);
157 where += BPoint(3.0, 3.0);
158 menu->Go(where, true, false, mouseRect, true);
160 where += BPoint(3.0, 3.0);
161 menu->Go(where, true, false, true);
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp159 LaunchButton::MouseDown(BPoint where) argument
171 parent->DisplayMenu(ConvertToParent(where), this);
176 fDragStart = where;
180 BIconButton::MouseDown(where);
185 LaunchButton::MouseUp(BPoint where) argument
191 BIconButton::MouseUp(where);
196 LaunchButton::MouseMoved(BPoint where, uint32 transit, argument
215 BPoint diff = where - fDragStart;
249 BIconButton::MouseMoved(where, transit, dragMessage);
/haiku/src/preferences/screensaver/
H A DScreenCornerSelector.cpp256 ScreenCornerSelector::MouseDown(BPoint where)
260 SetValue(_ScreenCorner(where, (screen_corner)fPreviousCorner));
266 ScreenCornerSelector::MouseUp(BPoint where)
273 ScreenCornerSelector::MouseMoved(BPoint where, uint32 transit,
279 SetValue(_ScreenCorner(where, (screen_corner)fPreviousCorner));
/haiku/src/servers/app/
H A DView.h118 View* ViewAt(const BPoint& where);
177 virtual void MouseDown(BMessage* message, BPoint where);
178 virtual void MouseUp(BMessage* message, BPoint where);
179 virtual void MouseMoved(BMessage* message, BPoint where);
221 bool MarkAt(DrawingEngine* engine, const BPoint& where,
H A DDesktopListener.cpp126 const BPoint& where)
134 listener->MouseDown(window, message, where);
140 const BPoint& where)
148 listener->MouseUp(window, message, where);
154 const BPoint& where)
162 listener->MouseMoved(window, message, where);
125 NotifyMouseDown(Window* window, BMessage* message, const BPoint& where) argument
139 NotifyMouseUp(Window* window, BMessage* message, const BPoint& where) argument
153 NotifyMouseMoved(Window* window, BMessage* message, const BPoint& where) argument
/haiku/headers/os/interface/
H A DListView.h60 virtual void MouseDown(BPoint where);
61 virtual void MouseUp(BPoint where);
62 virtual void MouseMoved(BPoint where, uint32 code,
77 virtual void ScrollTo(BPoint where);
130 virtual bool InitiateDrag(BPoint where, int32 index,
H A DTextControl.h60 virtual void MouseDown(BPoint where);
77 virtual void MouseUp(BPoint where);
78 virtual void MouseMoved(BPoint where, uint32 transit,
H A DScrollView.h46 virtual void MouseDown(BPoint where);
47 virtual void MouseMoved(BPoint where, uint32 code,
49 virtual void MouseUp(BPoint where);
/haiku/src/kits/tracker/
H A DPose.h78 void DrawBar(BPoint where, BView* view, BSize iconSize);
80 void DrawIcon(BPoint where, BView* view, BSize size, bool direct,
83 void MouseUp(BPoint poseLoc, BPoseView*, BPoint where, int32 index);
97 bool PointInPose(BPoint poseLoc, const BPoseView*, BPoint where,
99 bool PointInPose(const BPoseView*, BPoint where) const;
/haiku/src/apps/deskbar/
H A DBarView.cpp104 BPoint where = message->FindPoint("be:view_where"); local
114 fBarView->MouseDown(where);
118 fBarView->MouseMoved(where, transit, dragMessage);
323 TBarView::MouseDown(BPoint where) argument
328 return BView::MouseDown(where);
331 // where is relative to status tray while mouse is over it so pull
335 return BView::MouseDown(where);
343 ConvertToScreen(where));
367 return BView::MouseDown(where);
371 BView::MouseDown(where);
376 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
450 MouseUp(BPoint where) argument
[all...]
H A DTimeView.cpp373 TTimeView::ShowCalendar(BPoint where) argument
385 where.y = Bounds().bottom + 4.0;
386 ConvertToScreen(&where);
388 if (where.y >= BScreen().Frame().bottom)
389 where.y -= (Bounds().Height() + 4.0);
391 fCalendarWindow = new CalendarMenuWindow(where);
/haiku/src/servers/app/stackandtile/
H A DStackAndTile.h63 const BPoint& where);
65 const BPoint& where);
67 const BPoint& where) {}
66 MouseMoved(Window* window, BMessage* message, const BPoint& where) argument
/haiku/src/apps/diskprobe/
H A DDataView.h40 virtual void MouseDown(BPoint where);
41 virtual void MouseMoved(BPoint where, uint32 transit,
43 virtual void MouseUp(BPoint where);
/haiku/src/apps/activitymonitor/
H A DActivityView.h90 virtual void MouseDown(BPoint where);
91 virtual void MouseUp(BPoint where);
92 virtual void MouseMoved(BPoint where, uint32 transit,
/haiku/src/apps/webpositive/tabview/
H A DTabManager.cpp442 virtual void MouseDown(BPoint where, uint32 buttons);
443 virtual void MouseUp(BPoint where);
444 virtual void MouseMoved(BPoint where, uint32 transit,
539 WebTabView::MouseDown(BPoint where, uint32 buttons) argument
548 if (!fController->CloseButtonsAvailable() || !closeRect.Contains(where)) {
549 TabView::MouseDown(where, buttons);
559 WebTabView::MouseUp(BPoint where) argument
562 TabView::MouseUp(where);
568 if (_CloseRectFrame(Frame()).Contains(where))
574 WebTabView::MouseMoved(BPoint where, uint3 argument
[all...]
/haiku/src/kits/interface/
H A DPictureButton.cpp252 BPictureButton::MouseDown(BPoint where) argument
255 BControl::MouseDown(where);
275 BPictureButton::MouseUp(BPoint where) argument
278 if (Bounds().Contains(where)) {
294 BPictureButton::MouseMoved(BPoint where, uint32 code, argument
303 BControl::MouseMoved(where, code, dragMessage);
H A DSplitView.cpp268 BSplitView::MouseDown(BPoint where) argument
273 if (fSplitLayout->StartDraggingSplitter(where))
279 BSplitView::MouseUp(BPoint where) argument
289 BSplitView::MouseMoved(BPoint where, uint32 transit, const BMessage* message) argument
295 if (splitterIndex >= 0 || fSplitLayout->IsAboveSplitter(where)) {
304 if (fSplitLayout->DragSplitter(where)) {
H A DMenuWindow.cpp223 BPoint where(
226 DrawString(kEmptyMenuLabel, where);
339 // BeOS doesn't remember the position where the last scrolling ended,
416 BMenuWindow::TryScrollTo(const float& where) argument
421 _ScrollBy(where - fValue);
427 BMenuWindow::_Scroll(const BPoint& where) argument
432 const BPoint cursor = ConvertFromScreen(where);
/haiku/src/servers/input/
H A DMethodReplicant.cpp180 BPoint where; local
181 GetMouse(&where, &mouseButtons, true);
183 where = ConvertToScreen(point);
186 BMenuItem* item = fMenu.Go(where, true, true,
187 BRect(where - BPoint(4, 4), where + BPoint(4, 4)));
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLoggingConsumer.h130 const media_destination& where,
136 const media_destination& where);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DBoolValueView.cpp87 BoolValueView::MouseDown(BPoint where) argument
90 if (fCheckBoxRect.Contains(where)) {
/haiku/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioProducer.h58 const media_destination& where,
69 const media_destination& where);
/haiku/src/tests/servers/app/lock_focus/
H A DLockFocusTest.cpp32 virtual void MouseDown(BPoint where);
97 View::MouseDown(BPoint where) argument

Completed in 156 milliseconds

1234567891011>>