attributes.h revision 35e0418c921e7057987f57ba30ba95ec5e03c9e5
#ifndef __SP_ATTRIBUTES_H__
#define __SP_ATTRIBUTES_H__
/** \file
* Lookup dictionary for attributes/properties.
*/
/*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2002 Lauris Kaplinski
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib/gmessages.h>
unsigned char const *sp_attribute_name(unsigned int id);
/**
* True iff k is a property in SVG, i.e. something that can be written either in a style attribute
* or as its own XML attribute.
*/
enum SPAttributeEnum {
SP_ATTR_INVALID, ///< Must have value 0.
/* SPObject */
/* SPItem */
/* SPAnchor */
/* SPGroup */
/* SPRoot */
/* SPNamedView */
/* SPColorProfile */
/* SPGuide */
/* SPImage */
/* SPPath */
/* SPRect */
/* SPEllipse */
/* SPStar */
/* SPSpiral */
/* SPOffset */
/* SPLine */
/* SPPolyline */
/* SPTSpan */
/* SPText */
/* SPTextPath */
/* SPStop */
/* SPGradient */
/* SPRadialGradient */
/* SPPattern */
/* SPClipPath */
/* SPMask */
/* SPMarker */
/* SPStyleElem */
/* Animations */
/* Interpolating animations */
/* XML */
/* typeset */
/* CSS2 */
/* Font */
/* Text */
/* text (css3) */
/* Misc */
/* SVG */
/* Filter */
/* Gradient */
/* Interactivity */
/* Paint */
/* Conditional */
};
#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:encoding=utf-8:textwidth=99 :