/* */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include "display/curve.h" #include "sp-shape.h" #include "sp-text.h" #include "sp-use.h" #include "style.h" #include "document.h" #include "sp-title.h" #include "sp-desc.h" #include "sp-flowregion.h" #include "display/canvas-bpath.h" #include "livarot/Path.h" #include "livarot/Shape.h" static void sp_flowregion_dispose (GObject *object); static void sp_flowregion_child_added (SPObject * object, Inkscape::XML::Node * child, Inkscape::XML::Node * ref); static void sp_flowregion_remove_child (SPObject * object, Inkscape::XML::Node * child); static void sp_flowregion_update (SPObject *object, SPCtx *ctx, guint flags); static void sp_flowregion_modified (SPObject *object, guint flags); static Inkscape::XML::Node *sp_flowregion_write (SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags); static gchar * sp_flowregion_description (SPItem * item); G_DEFINE_TYPE(SPFlowregion, sp_flowregion, SP_TYPE_ITEM); static void sp_flowregionexclude_dispose (GObject *object); static void sp_flowregionexclude_child_added (SPObject * object, Inkscape::XML::Node * child, Inkscape::XML::Node * ref); static void sp_flowregionexclude_remove_child (SPObject * object, Inkscape::XML::Node * child); static void sp_flowregionexclude_update (SPObject *object, SPCtx *ctx, guint flags); static void sp_flowregionexclude_modified (SPObject *object, guint flags); static Inkscape::XML::Node *sp_flowregionexclude_write (SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags); static gchar * sp_flowregionexclude_description (SPItem * item); static void GetDest(SPObject* child,Shape **computed); static void sp_flowregion_class_init (SPFlowregionClass *klass) { GObjectClass * object_class; SPObjectClass * sp_object_class; SPItemClass * item_class; object_class = (GObjectClass *) klass; sp_object_class = (SPObjectClass *) klass; item_class = (SPItemClass *) klass; object_class->dispose = sp_flowregion_dispose; sp_object_class->child_added = sp_flowregion_child_added; sp_object_class->remove_child = sp_flowregion_remove_child; sp_object_class->update = sp_flowregion_update; sp_object_class->modified = sp_flowregion_modified; sp_object_class->write = sp_flowregion_write; item_class->description = sp_flowregion_description; } static void sp_flowregion_init (SPFlowregion *group) { new (&group->computed) std::vector; } static void sp_flowregion_dispose(GObject *object) { SPFlowregion *group=(SPFlowregion *)object; for (std::vector::iterator it = group->computed.begin() ; it != group->computed.end() ; ++it) delete *it; group->computed.~vector(); } static void sp_flowregion_child_added(SPObject *object, Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { SP_OBJECT_CLASS (sp_flowregion_parent_class)->child_added (object, child, ref); object->requestModified(SP_OBJECT_MODIFIED_FLAG); } /* fixme: hide (Lauris) */ static void sp_flowregion_remove_child (SPObject * object, Inkscape::XML::Node * child) { if (((SPObjectClass *) (sp_flowregion_parent_class))->remove_child) (* ((SPObjectClass *) (sp_flowregion_parent_class))->remove_child) (object, child); object->requestModified(SP_OBJECT_MODIFIED_FLAG); } static void sp_flowregion_update(SPObject *object, SPCtx *ctx, unsigned int flags) { SPFlowregion *group = SP_FLOWREGION(object); SPItemCtx *ictx = reinterpret_cast(ctx); SPItemCtx cctx = *ictx; if (((SPObjectClass *) (sp_flowregion_parent_class))->update) { ((SPObjectClass *) (sp_flowregion_parent_class))->update (object, ctx, flags); } if (flags & SP_OBJECT_MODIFIED_FLAG) { flags |= SP_OBJECT_PARENT_MODIFIED_FLAG; } flags &= SP_OBJECT_MODIFIED_CASCADE; GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child ; child = child->getNext() ) { g_object_ref( G_OBJECT(child) ); l = g_slist_prepend(l, child); } l = g_slist_reverse(l); while (l) { SPObject *child = SP_OBJECT(l->data); l = g_slist_remove(l, child); if (flags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { if (SP_IS_ITEM (child)) { SPItem const &chi = *SP_ITEM(child); cctx.i2doc = chi.transform * ictx->i2doc; cctx.i2vp = chi.transform * ictx->i2vp; child->updateDisplay((SPCtx *)&cctx, flags); } else { child->updateDisplay(ctx, flags); } } g_object_unref (G_OBJECT(child)); } group->UpdateComputed(); } void SPFlowregion::UpdateComputed(void) { for (std::vector::iterator it = computed.begin() ; it != computed.end() ; ++it) { delete *it; } computed.clear(); for (SPObject* child = firstChild() ; child ; child = child->getNext() ) { Shape *shape = 0; GetDest(child, &shape); computed.push_back(shape); } } static void sp_flowregion_modified(SPObject *object, guint flags) { if (flags & SP_OBJECT_MODIFIED_FLAG) { flags |= SP_OBJECT_PARENT_MODIFIED_FLAG; } flags &= SP_OBJECT_MODIFIED_CASCADE; GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child ; child = child->getNext() ) { g_object_ref( G_OBJECT(child) ); l = g_slist_prepend(l, child); } l = g_slist_reverse(l); while (l) { SPObject *child = SP_OBJECT(l->data); l = g_slist_remove(l, child); if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { child->emitModified(flags); } g_object_unref( G_OBJECT(child) ); } } static Inkscape::XML::Node *sp_flowregion_write(SPObject *object, Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { if (flags & SP_OBJECT_WRITE_BUILD) { if ( repr == NULL ) { repr = xml_doc->createElement("svg:flowRegion"); } GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child; child = child->getNext() ) { if ( !SP_IS_TITLE(child) && !SP_IS_DESC(child) ) { Inkscape::XML::Node *crepr = child->updateRepr(xml_doc, NULL, flags); if (crepr) { l = g_slist_prepend(l, crepr); } } } while (l) { repr->addChild((Inkscape::XML::Node *) l->data, NULL); Inkscape::GC::release((Inkscape::XML::Node *) l->data); l = g_slist_remove(l, l->data); } } else { for ( SPObject *child = object->firstChild() ; child; child = child->getNext() ) { if ( !SP_IS_TITLE(child) && !SP_IS_DESC(child) ) { child->updateRepr(flags); } } } if (((SPObjectClass *) (sp_flowregion_parent_class))->write) { ((SPObjectClass *) (sp_flowregion_parent_class))->write (object, xml_doc, repr, flags); } return repr; } static gchar *sp_flowregion_description(SPItem */*item*/) { // TRANSLATORS: "Flow region" is an area where text is allowed to flow return g_strdup_printf(_("Flow region")); } /* * */ G_DEFINE_TYPE(SPFlowregionExclude, sp_flowregionexclude, SP_TYPE_ITEM); static void sp_flowregionexclude_class_init (SPFlowregionExcludeClass *klass) { GObjectClass * object_class; SPObjectClass * sp_object_class; SPItemClass * item_class; object_class = (GObjectClass *) klass; sp_object_class = (SPObjectClass *) klass; item_class = (SPItemClass *) klass; object_class->dispose = sp_flowregionexclude_dispose; sp_object_class->child_added = sp_flowregionexclude_child_added; sp_object_class->remove_child = sp_flowregionexclude_remove_child; sp_object_class->update = sp_flowregionexclude_update; sp_object_class->modified = sp_flowregionexclude_modified; sp_object_class->write = sp_flowregionexclude_write; item_class->description = sp_flowregionexclude_description; } static void sp_flowregionexclude_init (SPFlowregionExclude *group) { group->computed = NULL; } static void sp_flowregionexclude_dispose(GObject *object) { SPFlowregionExclude *group=(SPFlowregionExclude *)object; if (group->computed) { delete group->computed; group->computed = NULL; } } static void sp_flowregionexclude_child_added(SPObject *object, Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { SP_OBJECT_CLASS (sp_flowregionexclude_parent_class)->child_added (object, child, ref); object->requestModified(SP_OBJECT_MODIFIED_FLAG); } /* fixme: hide (Lauris) */ static void sp_flowregionexclude_remove_child (SPObject * object, Inkscape::XML::Node * child) { if (((SPObjectClass *) (sp_flowregionexclude_parent_class))->remove_child) (* ((SPObjectClass *) (sp_flowregionexclude_parent_class))->remove_child) (object, child); object->requestModified(SP_OBJECT_MODIFIED_FLAG); } static void sp_flowregionexclude_update(SPObject *object, SPCtx *ctx, unsigned int flags) { SPFlowregionExclude *group = SP_FLOWREGIONEXCLUDE (object); SPItemCtx *ictx = reinterpret_cast(ctx); SPItemCtx cctx = *ictx; if (((SPObjectClass *) (sp_flowregionexclude_parent_class))->update) { ((SPObjectClass *) (sp_flowregionexclude_parent_class))->update (object, ctx, flags); } if (flags & SP_OBJECT_MODIFIED_FLAG) { flags |= SP_OBJECT_PARENT_MODIFIED_FLAG; } flags &= SP_OBJECT_MODIFIED_CASCADE; GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child ; child = child->getNext() ) { g_object_ref( G_OBJECT(child) ); l = g_slist_prepend(l, child); } l = g_slist_reverse (l); while (l) { SPObject *child = SP_OBJECT(l->data); l = g_slist_remove(l, child); if (flags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { if (SP_IS_ITEM (child)) { SPItem const &chi = *SP_ITEM(child); cctx.i2doc = chi.transform * ictx->i2doc; cctx.i2vp = chi.transform * ictx->i2vp; child->updateDisplay((SPCtx *)&cctx, flags); } else { child->updateDisplay(ctx, flags); } } g_object_unref( G_OBJECT(child) ); } group->UpdateComputed(); } void SPFlowregionExclude::UpdateComputed(void) { if (computed) { delete computed; computed = NULL; } for ( SPObject* child = firstChild() ; child ; child = child->getNext() ) { GetDest(child, &computed); } } static void sp_flowregionexclude_modified(SPObject *object, guint flags) { if (flags & SP_OBJECT_MODIFIED_FLAG) { flags |= SP_OBJECT_PARENT_MODIFIED_FLAG; } flags &= SP_OBJECT_MODIFIED_CASCADE; GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child ; child = child->getNext() ) { g_object_ref( G_OBJECT(child) ); l = g_slist_prepend(l, child); } l = g_slist_reverse (l); while (l) { SPObject *child = SP_OBJECT(l->data); l = g_slist_remove(l, child); if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) { child->emitModified(flags); } g_object_unref( G_OBJECT(child) ); } } static Inkscape::XML::Node *sp_flowregionexclude_write(SPObject *object, Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) { if (flags & SP_OBJECT_WRITE_BUILD) { if ( repr == NULL ) { repr = xml_doc->createElement("svg:flowRegionExclude"); } GSList *l = NULL; for ( SPObject *child = object->firstChild() ; child; child = child->getNext() ) { Inkscape::XML::Node *crepr = child->updateRepr(xml_doc, NULL, flags); if (crepr) { l = g_slist_prepend(l, crepr); } } while (l) { repr->addChild((Inkscape::XML::Node *) l->data, NULL); Inkscape::GC::release((Inkscape::XML::Node *) l->data); l = g_slist_remove(l, l->data); } } else { for ( SPObject *child = object->firstChild() ; child; child = child->getNext() ) { child->updateRepr(flags); } } if (((SPObjectClass *) (sp_flowregionexclude_parent_class))->write) { ((SPObjectClass *) (sp_flowregionexclude_parent_class))->write (object, xml_doc, repr, flags); } return repr; } static gchar *sp_flowregionexclude_description(SPItem */*item*/) { /* TRANSLATORS: A region "cut out of" a flow region; text is not allowed to flow inside the * flow excluded region. flowRegionExclude in SVG 1.2: see * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegion-elem and * http://www.w3.org/TR/2004/WD-SVG12-20041027/flow.html#flowRegionExclude-elem. */ return g_strdup_printf(_("Flow excluded region")); } /* * */ static void UnionShape(Shape **base_shape, Shape const *add_shape) { if (*base_shape == NULL) *base_shape = new Shape; if ( (*base_shape)->hasEdges() == false ) { (*base_shape)->Copy(const_cast(add_shape)); } else if ( add_shape->hasEdges() ) { Shape* temp=new Shape; temp->Booleen(const_cast(add_shape), *base_shape, bool_op_union); delete *base_shape; *base_shape = temp; } } static void GetDest(SPObject* child,Shape **computed) { if ( child == NULL ) return; SPCurve *curve=NULL; Geom::Affine tr_mat; SPObject* u_child=child; if ( SP_IS_USE(u_child) ) { u_child=SP_USE(u_child)->child; tr_mat = SP_ITEM(u_child)->getRelativeTransform(child->parent); } else { tr_mat = SP_ITEM(u_child)->transform; } if ( SP_IS_SHAPE (u_child) ) { curve = SP_SHAPE (u_child)->getCurve (); } else if ( SP_IS_TEXT (u_child) ) { curve = SP_TEXT (u_child)->getNormalizedBpath (); } if ( curve ) { Path* temp=new Path; temp->LoadPathVector(curve->get_pathvector(), tr_mat, true); Shape* n_shp=new Shape; temp->Convert(0.25); temp->Fill(n_shp,0); Shape* uncross=new Shape; SPStyle* style = u_child->style; if ( style && style->fill_rule.computed == SP_WIND_RULE_EVENODD ) { uncross->ConvertToShape(n_shp,fill_oddEven); } else { uncross->ConvertToShape(n_shp,fill_nonZero); } UnionShape(computed, uncross); delete uncross; delete n_shp; delete temp; curve->unref(); } else { // printf("no curve\n"); } } /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :