svg.h revision 3375512f3173e051906785f0d0fd5d74320efd17
#ifndef SEEN_SP_SVG_H
#define SEEN_SP_SVG_H
/*
* SVG data parser
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <vector>
#include <cstring>
#include <string>
#include "svg/svg-length.h"
#include "libnr/nr-forward.h"
/* Generic */
/*
* These are very-very simple:
* - they accept everything libc strtod accepts
* - no valid end character checking
* Return FALSE and let val untouched on error
*/
/*
* No buffer overflow checking is done, so better wrap them if needed
*/
unsigned int sp_svg_number_write_de( gchar *buf, int bufLen, double val, unsigned int tprec, int min_exp );
/* Length */
/*
* Parse number with optional unit specifier:
* - for px, pt, pc, mm, cm, computed is final value accrding to SVG spec
* - for em, ex, and % computed is left untouched
* - % is divided by 100 (i.e. 100% is 1.0)
* !isalnum check is done at the end
* Any return value pointer can be NULL
*/
unsigned int sp_svg_length_read_ldd( const gchar *str, SVGLength::Unit *unit, double *value, double *computed );
/* NB! As paths can be long, we use here dynamic string */
#endif // SEEN_SP_SVG_H
/*
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 :