sp-path.h revision 0dd7b683f582a955dbe284ddb3b3faab355c9036
#ifndef SEEN_SP_PATH_H
#define SEEN_SP_PATH_H
/*
* SVG <path> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Ximian, Inc.
* Johan Engelen
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 1999-2012 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-shape.h"
#include "sp-conn-end-pair.h"
#define SP_TYPE_PATH (sp_path_get_type ())
/**
* SVG <path> implementation
*/
gint nodesInPath() const;
// still in lowercase because the names should be clearer on whether curve, curve->copy or curve-ref is returned.
SPCurve* get_original_curve () const;
SPCurve* get_curve_for_edit () const;
const SPCurve* get_curve_reference() const;
public: // should be made protected
};
struct SPPathClass {
};
~CPath();
virtual Inkscape::XML::Node* onWrite(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
virtual void onConvertToGuides();
};
GType sp_path_get_type (void);
#endif // SEEN_SP_PATH_H
/*
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 :