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

/inkscape/share/attributes/
H A DgenMapDataCSS.pl27 my @shapes = ("path", "rect", "circle", "ellipse", "line", "polyline", "polygon");
105 push @{$properties{ $property }->{elements}}, @shapes;
147 push @{$properties{ "color" }->{elements}}, @shapes;
/inkscape/src/ui/tools/
H A Dnode-tool.cpp74 * it might handle all shapes. Handles XML commit of actions that affect all paths or
413 std::set<ShapeRecord> shapes;
420 gather_items(this, NULL, static_cast<SPItem*>(obj), SHAPE_ROLE_NORMAL, shapes);
424 // use multiple ShapeEditors for now, to allow editing many shapes at once
432 if (shapes.find(s) == shapes.end()) {
439 for (std::set<ShapeRecord>::iterator i = shapes.begin(); i != shapes.end(); ++i) {
454 this->_multipath->setItems(shapes);
529 break; // for now, handle only shapes
[all...]
/inkscape/src/libavoid/
H A Drouter.h137 //! shapes and connectors, thereby invalidating any existing
326 void attachedShapes(IntList &shapes, const unsigned int shapeId,
H A Drouter.cpp167 // Remove remaining shapes.
634 // Examine shapes.
700 // Returns a list of shape Ids of all the shapes attached to the
702 void Router::attachedShapes(IntList &shapes, const unsigned int shapeId, argument
713 shapes.push_back((*i)->_srcId);
721 shapes.push_back((*i)->_dstId);
977 // Compute enclosing shapes.
1385 fprintf(fp, "Number of shapes: %d\n", st_shapes);
/inkscape/src/
H A Dconn-avoid-ref.cpp146 Avoid::IntList shapes; local
148 item->document->router->attachedShapes(shapes, shapeId, type);
150 Avoid::IntList::iterator finish = shapes.end();
151 for (Avoid::IntList::iterator i = shapes.begin(); i != finish; ++i) {
H A Dsp-flowtext.h58 void _buildLayoutInput(SPObject *root, Shape const *exclusion_shape, std::list<Shape> *shapes, SPObject **pending_line_break_object);
H A Dsp-flowtext.cpp336 void SPFlowtext::_buildLayoutInput(SPObject *root, Shape const *exclusion_shape, std::list<Shape> *shapes, SPObject **pending_line_break_object) argument
392 shapes->push_back(Shape());
394 shapes->back().Booleen(*it, const_cast<Shape*>(exclusion_shape), bool_op_diff);
396 shapes->back().Copy(*it);
398 layout.appendWrapShape(&shapes->back());
403 _buildLayoutInput(child, exclusion_shape, shapes, pending_line_break_object);
441 std::list<Shape> shapes; local
446 _buildLayoutInput(this, exclusion_shape, &shapes, &pending_line_break_object);
/inkscape/src/live_effects/parameter/
H A Dpath.cpp218 std::set<ShapeRecord> shapes; local
229 shapes.insert(r);
230 nt->_multipath->setItems(shapes);
/inkscape/src/ui/tool/
H A Dmulti-path-manipulator.cpp151 std::set<ShapeRecord> shapes(s);
155 std::set<ShapeRecord>::iterator si = shapes.find(i->first);
156 if (si == shapes.end()) {
175 shapes.erase(si); // remove the processed record
181 for (std::set<ShapeRecord>::iterator i = shapes.begin(); i != shapes.end(); ++i) {

Completed in 120 milliseconds