Searched refs:point (Results 251 - 275 of 350) sorted by relevance

<<11121314

/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.h77 point_line_distance(BPoint point, BPoint a, BPoint b);
/haiku/src/apps/soundrecorder/
H A DTransportButton.cpp447 TransportButton::MouseMoved(BPoint point, uint32 code, const BMessage *) argument
449 if (IsTracking() && Bounds().Contains(point) != Value()) {
458 TransportButton::MouseUp(BPoint point) argument
461 if (Bounds().Contains(point))
/haiku/src/preferences/locale/
H A DLanguageListView.cpp310 LanguageListView::InitiateDrag(BPoint point, int32 dragIndex, argument
418 DragMessage(&message, dragRect.OffsetToCopy(point), this);
483 LanguageListView::MouseUp(BPoint point) argument
485 BOutlineListView::MouseUp(point);
/haiku/headers/os/interface/
H A DAffineTransform.h71 BPoint Apply(const BPoint& point) const;
72 BPoint ApplyInverse(const BPoint& point) const;
74 void Apply(BPoint* point) const;
75 void ApplyInverse(BPoint* point) const;
H A DView.h216 void ConvertToScreen(BPoint* point) const;
217 BPoint ConvertToScreen(BPoint point) const;
218 void ConvertFromScreen(BPoint* point) const;
219 BPoint ConvertFromScreen(BPoint point) const;
224 void ConvertToParent(BPoint* point) const;
225 BPoint ConvertToParent(BPoint point) const;
226 void ConvertFromParent(BPoint* point) const;
227 BPoint ConvertFromParent(BPoint point) const;
661 virtual bool GetToolTipAt(BPoint point, BToolTip** _tip);
/haiku/src/apps/installer/
H A DPackageViews.h88 virtual void MouseMoved(BPoint point, uint32 transit,
/haiku/headers/private/print/
H A DTemplate.h58 virtual void ClipToPicture(BPicture *picture, BPoint point, bool clip_to_inverse_picture);
H A DPictureIterator.h64 virtual void ClipToPicture(BPicture *picture, BPoint point, bool clip_to_inverse_picture) { } argument
/haiku/src/kits/print/
H A DTemplate.cpp112 void Template::ClipToPicture(BPicture *picture, BPoint point, bool clip_to_inverse_picture) { argument
H A DPictureIterator.cpp55 static void _ClipToPicture(void * p, BPicture *picture, BPoint point, bool clip_to_inverse_picture) { return ((PictureIterator *) p)->ClipToPicture(picture, point, clip_to_inverse_picture); } argument
/haiku/src/apps/icon-o-matic/transformable/
H A DPerspectiveBox.h86 BPoint point, double angle) const;
H A DTransformBox.cpp441 TransformBox::TransformFromCanvas(BPoint& point) const
448 TransformBox::TransformToCanvas(BPoint& point) const
520 // around a point should be the same size no matter what
526 // transformation center point has highest priority ?!?
649 TransformBox::_StrokeBWPoint(BView* into, BPoint point, double angle) const argument
651 double x = point.x;
652 double y = point.y;
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js915 var point = this.points[pointIndex++];
916 context.moveTo(point.x, point.y);
921 var point = this.points[pointIndex++];
922 context.lineTo(point.x, point.y);
1538 var point = new RemotePoint(remoteMessage);
1543 context.fillRect(point.x, point.y, 1, 1);
1622 var point
[all...]
/haiku/src/kits/interface/
H A DView.cpp820 BView::_ConvertToParent(BPoint* point, bool checkLock) const argument
830 point->x += -fBounds.left + fParentOffset.x;
831 point->y += -fBounds.top + fParentOffset.y;
836 BView::ConvertToParent(BPoint* point) const
838 _ConvertToParent(point, true);
843 BView::ConvertToParent(BPoint point) const
845 ConvertToParent(&point);
847 return point;
852 BView::_ConvertFromParent(BPoint* point, bool checkLock) const argument
862 point
932 _ConvertToScreen(BPoint* point, bool checkLock) const argument
966 _ConvertFromScreen(BPoint* point, bool checkLock) const argument
1524 BPoint point; local
2339 MovePenTo(BPoint point) argument
5724 GetToolTipAt(BPoint point, BToolTip** _tip) argument
[all...]
H A DWindow.cpp1853 BWindow::FindView(BPoint point) const
1859 // point is assumed to be in window coordinates,
1861 return _FindView(fTopView, point);
1900 BWindow::ConvertToScreen(BPoint* point) const
1902 point->x += fFrame.left;
1903 point->y += fFrame.top;
1908 BWindow::ConvertToScreen(BPoint point) const
1910 return point + fFrame.LeftTop();
1915 BWindow::ConvertFromScreen(BPoint* point) const
1917 point
2372 MoveTo(BPoint point) argument
[all...]
H A DTextView.cpp1755 BTextView::LineAt(BPoint point) const
1757 int32 lineNum = _LineAt(point);
1758 if ((*fLines)[lineNum + 1]->origin <= point.y - fTextRect.top)
1827 BTextView::OffsetAt(BPoint point) const
1832 if (point.y >= fTextRect.bottom)
1834 else if (point.y < fTextRect.top)
1837 int32 lineNum = _LineAt(point);
1843 // special case: if point is within the text rect and PixelToLine()
1844 // tells us that it's on the last line, but if point is actually
1848 if (point
2155 BPoint point = PointAt(offset, &lineHeight); local
3122 GetDragParameters(BMessage* drag, BBitmap** bitmap, BPoint* point, BHandler** handler) argument
3410 BPoint point = PointAt(fCaretOffset, &height); local
3454 BPoint point = PointAt(fCaretOffset, &height); local
[all...]
/haiku/src/tests/servers/app/newerClipping/
H A DClientLooper.cpp34 init_polygon(const BRect& b, point* polygon)
70 morph_polygon(const BRect& b, point* polygon)
174 message.AddPoint("point", BPoint(fPolygon[0].x, fPolygon[0].y));
175 message.AddPoint("point", BPoint(fPolygon[1].x, fPolygon[1].y));
176 message.AddPoint("point", BPoint(fPolygon[2].x, fPolygon[2].y));
177 message.AddPoint("point", BPoint(fPolygon[3].x, fPolygon[3].y));
/haiku/src/preferences/mail/
H A DConfigWindow.cpp140 MouseDown(BPoint point) argument
142 BListView::MouseDown(point);
150 int32 index = IndexOf(point);
155 ConvertToScreen(&point);
156 message.AddPoint("point", point);
545 BPoint point; local
546 msg->FindPoint("point", &point);
568 BMenuItem* selectedItem = rightClickMenu.Go(point);
[all...]
/haiku/headers/private/interface/
H A DPictureDataWriter.h37 status_t WriteSetOrigin(const BPoint& point);
39 status_t WriteSetPenLocation(const BPoint& point);
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteDrawingEngine.h92 virtual void StrokePoint(const BPoint& point,
141 const BPoint& point,
H A DRemoteDrawingEngine.cpp538 RemoteDrawingEngine::StrokePoint(const BPoint& point, const rgb_color& color) argument
540 BRect bounds(point, point);
549 message.Add(point);
846 const BPoint& point, escapement_delta* delta)
852 message.Add(point);
860 return point;
863 return point;
871 return point;
881 // Guaranteed to have at least one point
845 DrawString(const char* string, int32 length, const BPoint& point, escapement_delta* delta) argument
[all...]
/haiku/src/apps/deskbar/
H A DTeamMenu.cpp249 TTeamMenu::ItemAtPoint(BPoint point) argument
254 if (item != NULL && item->Frame().Contains(point))
/haiku/src/apps/cortex/RouteApp/
H A DStatusView.cpp232 BPoint point) {
244 if (dragRect.Contains(point)) {
254 BPoint point,
260 float x = point.x - (Bounds().right - 5.0);
283 BPoint point) {
231 MouseDown( BPoint point) argument
253 MouseMoved( BPoint point, uint32 transit, const BMessage *message) argument
282 MouseUp( BPoint point) argument
/haiku/src/apps/debuganalyzer/gui/table/
H A DTable.cpp517 Table::GetToolTipAt(BPoint point, BToolTip** _tip) argument
520 return AbstractTable::GetToolTipAt(point, _tip);
523 BRow* row = RowAt(point);
526 return AbstractTable::GetToolTipAt(point, _tip);
529 BColumn* column = ColumnAt(point);
/haiku/src/preferences/filetypes/
H A DFileTypesWindow.cpp285 const char* point = strchr(ref.name, '.'); local
286 if (point != NULL && point[1])
287 list.AddItem(strdup(++point));
312 const char* point = strchr(ref.name, '.'); local
313 if (point != NULL && point[1])

Completed in 180 milliseconds

<<11121314