sp-root.h revision aded4b44e9194df7c9905c5787d1c7a9553d12cd
/** \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
*/
#ifndef SP_ROOT_H_SEEN
#define SP_ROOT_H_SEEN
#include "version.h"
#include "svg/svg-length.h"
#include "enums.h"
#include "sp-item-group.h"
/** \<svg\> element */
SPRoot();
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.
*/
virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags);
};
#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:fileencoding=utf-8:textwidth=99 :