sp-image.h revision f76f0d94b4b87bb6c1ba98e14d120aac94e415d0
#ifndef __SP_IMAGE_H__
#define __SP_IMAGE_H__
/*
* SVG <image> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Edward Flick (EAF)
*
* Copyright (C) 1999-2005 Authors
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#define SP_TYPE_IMAGE (sp_image_get_type ())
/* SPImage */
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "svg/svg-length.h"
#include "sp-item.h"
#include "display/display-forward.h"
SVGLength x;
SVGLength y;
// Added by EAF
/* preserveAspectRatio */
unsigned int aspect_align : 4;
unsigned int aspect_clip : 1;
#if ENABLE_LCMS
#endif // ENABLE_LCMS
};
struct SPImageClass {
};
GType sp_image_get_type (void);
/* Return duplicate of curve or NULL */
#endif