/** @file
* @gradient meshrow class.
*/
/* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak
* Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
* Jon A. Cruz <jon@joncruz.org>
* Tavmjong Bah <tavjong@free.fr>
*
* Copyright (C) 1999,2005 authors
* Copyright (C) 2010 Jon A. Cruz
* Copyright (C) 2012 Tavmjong Bah
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-mesh-row.h"
#include "style.h"
#include "xml/repr.h"
SPMeshrow* SPMeshrow::getNextMeshrow()
{
SPMeshrow *result = 0;
for (SPObject* obj = getNext(); obj && !result; obj = obj->getNext()) {
if (SP_IS_MESHROW(obj)) {
result = SP_MESHROW(obj);
}
}
return result;
}
SPMeshrow* SPMeshrow::getPrevMeshrow()
{
SPMeshrow *result = 0;
for (SPObject* obj = getPrev(); obj; obj = obj->getPrev()) {
// The closest previous SPObject that is an SPMeshrow *should* be ourself.
if (SP_IS_MESHROW(obj)) {
SPMeshrow* meshrow = SP_MESHROW(obj);
// Sanity check to ensure we have a proper sibling structure.
if (meshrow->getNextMeshrow() == this) {
result = meshrow;
} else {
g_warning("SPMeshrow previous/next relationship broken");
}
break;
}
}
return result;
}
/*
* Mesh Row
*/
SPMeshrow::SPMeshrow() : SPObject() {
}
SPMeshrow::~SPMeshrow() {
}
void SPMeshrow::build(SPDocument* doc, Inkscape::XML::Node* repr) {
SPObject::build(doc, repr);
}
/**
* Virtual build: set meshrow attributes from its associated XML node.
*/
void SPMeshrow::set(unsigned int /*key*/, const gchar* /*value*/) {
}
/**
* Virtual set: set attribute to value.
*/
Inkscape::XML::Node* SPMeshrow::write(Inkscape::XML::Document* xml_doc, Inkscape::XML::Node* repr, guint flags) {
if ((flags & SP_OBJECT_WRITE_BUILD) && !repr) {
repr = xml_doc->createElement("svg:meshrow");
}
SPObject::write(xml_doc, repr, flags);
return repr;
}
/**
* Virtual write: write object attributes to repr.
*/
/*
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 :