Searched refs:shapes (Results 1 - 20 of 20) sorted by relevance

/haiku/src/apps/icon-o-matic/shape/commands/
H A DMoveShapesCommand.cpp24 Shape** shapes, int32 count, int32 toIndex)
25 : MoveCommand<Shape>(container, shapes, count, toIndex)
39 "one{shape} other{shapes}}"));
23 MoveShapesCommand(Container<Shape>* container, Shape** shapes, int32 count, int32 toIndex) argument
H A DAddShapesCommand.cpp24 const Shape* const* shapes, int32 count, int32 index)
25 : AddCommand<Shape>(container, shapes, count, true, index)
39 "one{shape} other{shapes}}"));
23 AddShapesCommand(Container<Shape>* container, const Shape* const* shapes, int32 count, int32 index) argument
H A DMoveShapesCommand.h28 Shape** shapes,
H A DAddShapesCommand.h28 const Shape* const* shapes,
H A DFreezeTransformationCommand.cpp33 PathSourceShape** const shapes,
36 fShapes(shapes && count > 0 ? new (nothrow) PathSourceShape*[count] : NULL),
45 memcpy(fShapes, shapes, sizeof(PathSourceShape*) * fCount);
123 "one{shape} other{shapes}}"));
138 int32 shapes = 0; local
142 shapes++;
146 if (shapes == 1) {
150 "path \"%s\", because %" B_PRId32 " other shapes "
152 shapes - 1);
32 FreezeTransformationCommand( PathSourceShape** const shapes, int32 count) argument
H A DFreezeTransformationCommand.h27 PathSourceShape** const shapes,
/haiku/src/apps/icon-o-matic/gui/
H A DShapeListView.cpp192 BList shapes; local
193 _GetSelectedShapes(shapes);
194 int32 count = shapes.CountItems();
200 Shape* shape = (Shape*)shapes.ItemAtFast(i);
213 BList shapes; local
214 _GetSelectedShapes(shapes);
215 int32 count = shapes.CountItems();
222 Shape* shape = (Shape*) shapes.ItemAtFast(i);
320 BList shapes; local
364 || !shapes
462 Shape** shapes = new(nothrow) Shape*[count]; local
490 Shape* shapes[count]; local
[all...]
H A DShapeListView.h85 void _GetSelectedShapes(BList& shapes) const;
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformShapesBox.cpp23 const Shape** shapes,
27 fShapes(shapes && count > 0 ? new Shape*[count] : NULL),
39 memcpy(fShapes, shapes, fCount * sizeof(Shape*));
22 TransformShapesBox(CanvasView* view, const Shape** shapes, int32 count) argument
/haiku/src/libs/icon/message/
H A DMessageImporter.h56 Container<Shape>* shapes) const;
H A DMessageImporter.cpp111 // shapes
115 "error importing shapes: %s\n", strerror(ret));
178 Container<Style>* styles, Container<Shape>* shapes) const
181 status_t ret = archive->FindMessage("shapes", &allShapes);
215 if (shape == NULL || shape->InitCheck() < B_OK || !shapes->AddItem(shape)) {
248 if (shape == NULL || shape->InitCheck() < B_OK || !shapes->AddItem(shape)) {
/haiku/src/apps/icon-o-matic/import_export/message/
H A DMessageExporter.cpp85 // shapes
88 const Container<Shape>* shapes = icon->Shapes(); local
89 int32 count = shapes->CountItems();
91 Shape* shape = shapes->ItemAtFast(i);
102 ret = archive.AddMessage("shapes", &allShapes);
/haiku/src/libs/icon/flat_icon/
H A DFlatIconImporter.h67 Container<Shape>* shapes);
H A DFlatIconImporter.cpp134 // shapes
138 "error parsing shapes: %s\n", strerror(ret));
635 Container<Shape>* shapes)
660 if (shape && !shapes->AddItem(shape)) {
632 _ParseShapes(LittleEndianBuffer& buffer, Container<Style>* styles, Container<VectorPath>* paths, Container<Shape>* shapes) argument
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.h87 const Container<Shape>* shapes);
H A DFlatIconExporter.cpp111 return B_TRANSLATE("There are too many shapes. "
114 return B_TRANSLATE("One or more of the shapes has too many paths. "
117 return B_TRANSLATE("One or more of the shapes have too many transformers. "
202 // shapes
613 const Container<VectorPath>* paths, const Container<Shape>* shapes)
615 uint32 shapeCount = shapes->CountItems();
617 // Count the number of exportable shapes
620 Shape* shape = shapes->ItemAtFast(i);
625 // Write number of exportable shapes
633 Shape* shape = shapes
612 _WriteShapes(LittleEndianBuffer& buffer, const Container<Style>* styles, const Container<VectorPath>* paths, const Container<Shape>* shapes) argument
[all...]
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp102 for (NSVGshape* shape = fSource->shapes; shape != NULL; shape = shape->next) {
331 // paths and styles are not used by multiple shapes!!)
H A Dnanosvg.h38 // NanoSVG is a simple stupid single-header-file SVG parse. The output of the parser is a list of cubic bezier shapes.
44 // The shapes in the SVG images are transformed by the viewBox and converted to specified units.
62 for (NSVGshape *shape = image->shapes; shape != NULL; shape = shape->next) {
133 char closed; // Flag indicating if shapes should be treated as closed.
162 NSVGshape* shapes; // Linked list of shapes in the image. member in struct:NSVGimage
1017 if (p->image->shapes == NULL)
1018 p->image->shapes = shape;
2748 shape = p->image->shapes;
2841 for (shape = p->image->shapes; shap
[all...]
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp551 Container<Shape>* shapes = fDocument->Icon()->Shapes(); local
552 int32 count = shapes->CountItems();
554 shape = shapes->ItemAtFast(i);
/haiku/src/servers/app/
H A DServerApp.cpp2443 BStackOrHeapArray<BShape*, 64> shapes(numChars);
2444 if (!charArray.IsValid() || !shapes.IsValid()) {
2463 status = font.GetGlyphShapes(charArray, numChars, shapes);
2467 fLink.AttachShape(*shapes[i]);
2468 delete shapes[i];

Completed in 567 milliseconds