sp-glyph.h revision 76f6adc520900e5e0cb8aa3ec96fed84980a5601
#ifndef __SP_GLYPH_H__
#define __SP_GLYPH_H__
/*
* SVG <glyph> element implementation
*
* Authors:
* Felipe C. da S. Sanches <felipe.sanches@gmail.com>
*
* Copyright (C) 2008 Felipe C. da S. Sanches
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-object.h"
#define SP_TYPE_GLYPH (sp_glyph_get_type ())
enum glyphArabicForm {
};
enum glyphOrientation {
};
char* unicode;
char* glyph_name;
char* d;
char* lang;
double horiz_adv_x;
double vert_origin_x;
double vert_origin_y;
double vert_adv_y;
};
struct SPGlyphClass {
};
GType sp_glyph_get_type (void);
#endif //#ifndef __SP_GLYPH_H__