sp-tref.h revision 51dc158adbe2c9d1df3c941cbf78b90944d1afc2
#ifndef SP_TREF_H
#define SP_TREF_H
/** \file
* SVG <tref> implementation, see sp-tref.cpp.
*
* This file was created based on skeleton.h
*/
/*
* Authors:
* Gail Banaszkiewicz <Gail.Banaszkiewicz@gmail.com>
*
* Copyright (C) 2007 Gail Banaszkiewicz
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-item.h"
#include "sp-tref-reference.h"
#include "text-tag-attributes.h"
/* tref base class */
#define SP_TYPE_TREF (sp_tref_get_type())
// Attributes that are used in the same way they would be in a tspan
// Text stored in the xlink:href attribute
// URI reference to original object
// Shortcut pointer to the child of the tref (which is a copy
// referenced by uriOriginalRef)
// The sigc connections for various notifications
};
struct SPTRefClass {
};
virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags);
};
#endif /* !SP_TREF_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:fileencoding=utf-8:textwidth=99 :