sp-use.h revision 364d9045bfd158352b8040721b3e2e2602e921ea
#ifndef __SP_USE_H__
#define __SP_USE_H__
/*
* SVG <use> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <stddef.h>
#include "svg/svg-length.h"
#include "sp-item.h"
#define SP_TYPE_USE (sp_use_get_type ())
// item built from the original's repr (the visible clone)
// relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group
// SVG attrs
SVGLength x;
SVGLength y;
// the reference to the original object
// a sigc connection for delete notifications
// a sigc connection for transformed signal, used to do move compensation
};
struct SPUseClass {
};
GType sp_use_get_type (void);
#endif