sp-clippath.h revision a1479b4243eb52e35a397725b5741c479c5f9c03
#ifndef __SP_CLIPPATH_H__
#define __SP_CLIPPATH_H__
/*
* SVG <clipPath> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2001-2002 authors
* Copyright (C) 2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#define SP_TYPE_CLIPPATH (sp_clippath_get_type ())
#define SP_CLIPPATH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_CLIPPATH, SPClipPathClass))
#include "display/nr-arena-forward.h"
#include "sp-object-group.h"
#include "uri-references.h"
#include <libnr/nr-forward.h>
unsigned int clipPathUnits_set : 1;
unsigned int clipPathUnits : 1;
};
struct SPClipPathClass {
};
GType sp_clippath_get_type (void);
SPClipPath *getObject() const {
}
return SP_IS_CLIPPATH(obj);
}
};
void sp_clippath_get_bbox(SPClipPath *cp, NRRect *bbox, NR::Matrix const &transform, unsigned const flags);
#endif