sp-script.h revision 35087bff7509c736a32e0b74fd9ff0834bde7b6b
0N/A#ifndef __SP_SCRIPT_H__
0N/A#define __SP_SCRIPT_H__
0N/A
0N/A/*
0N/A * SVG <script> implementation
0N/A *
0N/A * Author:
0N/A * Felipe C. da S. Sanches <juca@members.fsf.org>
0N/A *
0N/A * Copyright (C) 2008 Author
0N/A *
0N/A * Released under GNU GPL version 2 or later, read the file 'COPYING' for more information
0N/A */
0N/A
0N/A#include "sp-item.h"
0N/A
0N/A#define SP_SCRIPT(obj) ((SPScript*)obj)
0N/A#define SP_IS_SCRIPT(obj) (dynamic_cast<const SPScript*>((SPObject*)obj))
0N/A
/* SPScript */
class SPScript : public SPObject {
public:
SPScript();
virtual ~SPScript();
gchar *xlinkhref;
virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
virtual void release();
virtual void set(unsigned int key, const gchar* value);
virtual void update(SPCtx* ctx, unsigned int flags);
virtual void modified(unsigned int flags);
virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, guint flags);
};
#endif
/*
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 :