Searched refs:shape (Results 1 - 25 of 84) sorted by path

1234

/haiku/headers/os/interface/
H A DShape.h38 status_t Iterate(BShape* shape);
H A DView.h243 void ClipToShape(BShape* shape);
244 void ClipToInverseShape(BShape* shape);
460 void StrokeShape(BShape* shape,
462 void FillShape(BShape* shape,
464 void FillShape(BShape* shape,
703 void _ClipToShape(BShape* shape, bool inverse);
/haiku/headers/private/app/
H A DServerLink.h59 status_t AttachShape(BShape& shape);
80 status_t ReadShape(BShape* shape);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLineChartRenderer.cpp197 BShape shape; local
198 shape.MoveTo(BPoint(left + first,
202 shape.LineTo(BPoint(float(left + i),
207 view->StrokeShape(&shape);
/haiku/src/apps/mediaplayer/interface/
H A DTransportControlGroup.cpp651 BShape* shape = new BShape(); local
655 shape->MoveTo(BPoint(-stopWidth, height));
656 shape->LineTo(BPoint(0, height));
657 shape->LineTo(BPoint(0, 0));
658 shape->LineTo(BPoint(-stopWidth, 0));
659 shape->Close();
661 shape->MoveTo(BPoint(0, height / 2));
662 shape->LineTo(BPoint(height, height));
663 shape->LineTo(BPoint(height, 0));
664 shape
678 BShape* shape = new BShape(); local
705 BShape* shape = new BShape(); local
724 BShape* shape = new BShape(); local
743 BShape* shape = new BShape(); local
759 BShape* shape = new BShape(); local
782 BShape* shape = new BShape(); local
795 add_bow(BShape* shape, float offset, float size, float height, float step) argument
835 BShape* shape = new BShape(); local
[all...]
/haiku/src/kits/app/
H A DServerLink.cpp94 ServerLink::ReadShape(BShape* shape) argument
108 shape->SetData(opCount, ptCount, opList, ptList);
114 ServerLink::AttachShape(BShape& shape) argument
120 shape.GetData(&opCount, &ptCount, &opList, &ptList);
/haiku/src/kits/interface/
H A DShape.cpp40 BShapeIterator::Iterate(BShape* shape) argument
42 shape_data* data = (shape_data*)shape->fPrivateData;
205 // If no valid shape data, return
/haiku/src/preferences/keymap/
H A DKeyboardLayout.cpp191 // size, shape, and scancodes of the keys on the keyboard, row by
210 // A key description is of the form "<shape>:<scancodes>", where <shape>
211 // is combined of the shape of the character, and its size, written as
229 // of a key, it accepts a size, but no shape modifiers. Also, instead of
610 key.shape = kRectangleKeyShape;
616 key.shape = kRectangleKeyShape;
619 key.shape = kCircleKeyShape;
622 key.shape = kEnterKeyShape;
629 _Error(state, "unknown shape specifie
[all...]
H A DKeyboardLayout.h28 key_shape shape; member in struct:Key
/haiku/src/servers/app/drawing/
H A DAlphaMaskCache.cpp105 AlphaMaskCache::Get(const shape_data& shape, AlphaMask* previousMask, argument
117 ShapeMaskElement element(&shape, NULL, previousMask, inverse);
H A DAlphaMaskCache.h32 ShapeAlphaMask* Get(const shape_data& shape,
45 ShapeMaskElement(const shape_data* shape, argument
49 fShape(shape),
/haiku/src/tests/add-ons/print/pdf/bezierbounds/
H A DBBView.cpp20 BShape shape; local
21 shape.MoveTo(fPath.PointAt(0));
24 shape.BezierTo(bezier);
26 if (fPath.IsClosed()) shape.Close();
28 StrokeShape(&shape);
/haiku/src/tests/add-ons/print/pdf/linepathbuilder/
H A DPathView.cpp58 BShape shape; local
61 shape.MoveTo(fPath.PointAt(i));
63 shape.LineTo(fPath.PointAt(i));
65 if (fPath.IsClosed()) shape.Close();
67 StrokeShape(&shape);
/haiku/src/tests/kits/interface/
H A DSetDiskModeTest.cpp28 BShape shape; local
30 shape.MoveTo(BPoint(150,0));
31 shape.LineTo(BPoint(200,100));
32 shape.BezierTo(bezier);
33 shape.Close();
34 view->StrokeShape(&shape);
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTestCases.cpp491 BShape shape; local
492 shape.MoveTo(BPoint(frame.left, frame.bottom));
493 shape.LineTo(BPoint(frame.right, frame.top));
494 shape.LineTo(BPoint(frame.left, frame.top));
495 shape.LineTo(BPoint(frame.right, frame.bottom));
496 view->FillShape(&shape);
502 BShape shape; local
503 shape.MoveTo(BPoint(frame.left, frame.bottom));
504 shape.LineTo(BPoint(frame.right, frame.top));
505 shape
1066 BShape shape; local
1080 BShape shape; local
[all...]
/haiku/src/tests/kits/interface/picture/
H A DMatrix.h31 void Transform(BShape &shape);
142 inline void BMatrix::Transform(BShape &shape) argument
145 transform.Iterate(&shape);
H A DPictureTest.cpp50 BShape shape; local
52 shape.MoveTo(BPoint(150,0));
53 shape.LineTo(BPoint(200,100));
54 shape.BezierTo(bezier);
55 shape.Close();
56 view->StrokeShape(&shape);
H A DSVGViewView.h92 void GetPolygonAttribute(const XML_Char **attributes, const char *name, BShape &shape);
94 void GetShapeAttribute(const XML_Char **attributes, const char *name, BShape &shape);
/haiku/src/tests/servers/app/painter/
H A DPainter.cpp487 Painter::StrokeShape(/*const */BShape* shape, const pattern& p) const argument
489 _DrawShape(shape, p, false);
494 Painter::FillShape(/*const */BShape* shape, const pattern& p) const argument
496 _DrawShape(shape, p, true);
1159 Painter::_DrawShape(/*const */BShape* shape, const pattern& p, bool fill) const argument
1171 converter.Iterate(shape);
H A DPainter.h110 void StrokeShape( /*const */BShape* shape,
113 void FillShape( /*const */BShape* shape,
242 void _DrawShape( /*const */BShape* shape,
/haiku/src/tests/servers/app/shape_test/
H A Dmain.cpp111 BShape shape; local
112 shape.MoveTo(BPoint(20, 10));
113 shape.LineTo(BPoint(10, 90));
114 shape.LineTo(BPoint(90, 100));
115 shape.ArcTo(arcRX, arcRY, 45, true, true, BPoint(100, 20));
116 shape.Close();
118 StrokeShape(&shape);
120 shape.Clear();
121 shape.MoveTo(BPoint(20, 10));
122 shape
[all...]
/haiku/headers/private/interface/
H A DPicturePlayer.h47 void (*draw_shape)(void* userData, const BShape& shape, bool fill);
104 void (*draw_shape_gradient)(void* userData, const BShape& shape, BGradient& gradient, bool fill);
/haiku/headers/private/print/
H A DPictureIterator.h59 virtual void StrokeShape(BShape *shape) { } argument
60 virtual void FillShape(BShape *shape) { } argument
H A DPicturePrinter.h58 virtual void StrokeShape(BShape *shape);
59 virtual void FillShape(BShape *shape);
97 void Print(BShape* shape);
H A DTemplate.h53 virtual void StrokeShape(BShape *shape);
54 virtual void FillShape(BShape *shape);

Completed in 524 milliseconds

1234