sp-root.h revision c823e1769a374d5c2e58db8d6a6730d2f36cec50
#ifndef SP_ROOT_H_SEEN
#define SP_ROOT_H_SEEN
/** \file
* SPRoot: SVG \<svg\> implementation.
*/
/*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#define SP_TYPE_ROOT (sp_root_get_type())
#include "version.h"
#include "svg/svg-length.h"
#include "enums.h"
#include "sp-item-group.h"
/** \<svg\> element */
struct {
SVGLength x;
SVGLength y;
/* viewBox; */
unsigned int viewBox_set : 1;
/* preserveAspectRatio */
unsigned int aspect_set : 1;
unsigned int aspect_align : 4;
unsigned int aspect_clip : 1;
/** Child to parent additional transform. */
/**
* Primary \<defs\> element where we put new defs (patterns, gradients etc.).
*
* At the time of writing, this is chosen as the first \<defs\> child of
* this \<svg\> element: see writers of this member in sp-root.cpp.
*/
};
struct SPRootClass {
};
#endif /* !SP_ROOT_H_SEEN */
/*
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 :