Searched refs:shape (Results 51 - 75 of 84) sorted by relevance

1234

/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 DAlphaMask.h164 const shape_data& shape,
173 const shape_data& shape,
H A DAlphaMask.cpp510 const shape_data& shape, BPoint where, bool inverse)
513 fShape(new(std::nothrow) shape_data(shape), true)
538 ShapeAlphaMask::Create(AlphaMask* previousMask, const shape_data& shape, argument
542 BReference<ShapeAlphaMask> mask(AlphaMaskCache::Default()->Get(shape,
547 mask.SetTo(new(std::nothrow) ShapeAlphaMask(previousMask, shape,
509 ShapeAlphaMask(AlphaMask* previousMask, const shape_data& shape, BPoint where, bool inverse) argument
/haiku/src/servers/app/
H A DCanvas.cpp159 Canvas::ClipToShape(shape_data* shape, bool inverse) argument
161 fDrawState->ClipToShape(shape, inverse);
H A DServerWindow.cpp2212 shape_data shape; local
2213 link.Read<int32>(&shape.opCount);
2214 link.Read<int32>(&shape.ptCount);
2215 shape.opSize = shape.opCount * sizeof(uint32);
2216 shape.ptSize = shape.ptCount * sizeof(BPoint);
2217 shape.opList = new(nothrow) uint32[shape.opCount];
2218 shape
4004 shape_data shape; local
[all...]
H A DCanvas.h60 void ClipToShape(shape_data* shape, bool inverse);
H A DDrawState.cpp538 DrawState::ClipToShape(shape_data* shape, bool inverse) argument
540 if (shape->ptCount == 0)
544 fCombinedTransform.Apply(shape->ptList, shape->ptCount);
546 BReference<AlphaMask> const mask(ShapeAlphaMask::Create(GetAlphaMask(), *shape,
H A DServerPicture.cpp55 status_t Iterate(const BShape* shape);
88 ShapePainter::Iterate(const BShape* shape) argument
90 // this class doesn't modify the shape data
91 return BShapeIterator::Iterate(const_cast<BShape*>(shape));
186 // We're going to draw the currently iterated shape.
389 draw_shape(void* _canvas, const BShape& shape, bool fill) argument
394 drawShape.Iterate(&shape);
395 drawShape.Draw(shape.Bounds(), fill);
507 draw_shape_gradient(void* _canvas, const BShape& shape, BGradient& gradient, bool fill) argument
512 drawShape.Iterate(&shape);
[all...]
H A DDrawState.h90 void ClipToShape(shape_data* shape, bool inverse);
/haiku/src/libs/icon/
H A DIconRenderer.cpp563 Shape* shape = fIcon->Shapes()->ItemAtFast(i); local
565 if (!shape->Visible(fGlobalTransform.scale())) {
569 Transformable transform(*shape);
572 Style* style = shape->Style();
586 style, transform, shape->Transformers());
594 // if this is not the first shape, and the style contains
608 shape->SetGlobalScale(max_c(1.0, transform.scale()));
609 ScaledPath scaledPath(shape->VertexSource(), transform);
610 if (shape->Hinting()) {
/haiku/src/apps/icon-o-matic/gui/
H A DPathListView.cpp219 virtual void ItemAdded(Shape* shape, int32 index) argument
224 virtual void ItemRemoved(Shape* shape) argument
231 void SetShape(PathSourceShape* shape) argument
233 if (fShape == shape)
239 fShape = shape;
349 // add or remove the path to the shape
830 PathListView::SetCurrentShape(Shape* shape) argument
832 if (fCurrentShape == shape)
835 fCurrentShape = dynamic_cast<PathSourceShape*>(shape);
H A DTransformerListView.h67 void SetShape(Shape* shape);
H A DStyleListView.cpp218 virtual void ItemAdded(Shape* shape, int32 index) argument
222 virtual void ItemRemoved(Shape* shape) argument
228 void SetShape(PathSourceShape* shape) argument
230 if (fShape == shape)
236 fShape = shape;
407 // set the style on the shape
734 StyleListView::SetCurrentShape(Shape* shape) argument
736 PathSourceShape* pathSourceShape = dynamic_cast<PathSourceShape*>(shape);
H A DPathListView.h76 void SetCurrentShape(Shape* shape);
111 // are referenced by this shape
H A DStyleListView.h74 void SetCurrentShape(Shape* shape);
98 // is referenced by this shape
H A DTransformerListView.cpp142 const char* message1 = B_TRANSLATE_COMMENT("Click on a shape above",
473 TransformerListView::SetShape(Shape* shape) argument
475 if (fShape == shape)
484 fShape = shape;
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.h85 void _GetSelectionShape(BShape& shape,
/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);
/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/tests/servers/app/painter/
H A DPainter.h110 void StrokeShape( /*const */BShape* shape,
113 void FillShape( /*const */BShape* shape,
242 void _DrawShape( /*const */BShape* shape,
/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/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/src/kits/interface/
H A DPicturePlayer.cpp137 draw_shape(void* _context, const BShape& shape, bool fill) argument
141 context->user_data, shape);
600 draw_shape_gradient(void* _context, const BShape& shape, BGradient& gradient, bool fill) argument
604 context->user_data, shape, gradient);
1064 BShape shape; local
1065 shape.SetData(*opCount, *pointCount, opList, pointList);
1067 callbacks.draw_shape(userData, shape,
1165 BShape shape; local
1166 shape.SetData(*opCount, *pointCount, opList, pointList);
1168 callbacks.draw_shape_gradient(userData, shape, *gradien
[all...]

Completed in 218 milliseconds

1234