sp-pattern.h revision f5c649a1cb88ab13fe7abd4d1f178a773425b820
#ifndef SEEN_SP_PATTERN_H
#define SEEN_SP_PATTERN_H
/*
* SVG <pattern> implementation
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* Abhishek Sharma
*
* Copyright (C) 2002 Lauris Kaplinski
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-item.h"
#include "svg/svg-length.h"
#include "sp-paint-server.h"
#include "uri-references.h"
#include "viewbox.h"
#include <stddef.h>
#include <sigc++/connection.h>
SPPattern();
/* Reference (href) */
/* patternUnits and patternContentUnits attribute */
/* patternTransform attribute */
/* Tile rectangle */
SVGLength x;
SVGLength y;
bool isValid() const;
};
}
return SP_IS_PATTERN (obj);
}
};
enum {
};
const gchar *pattern_tile (GSList *reprs, Geom::Rect bounds, SPDocument *document, Geom::Affine transform, Geom::Affine move);
#endif // SEEN_SP_PATTERN_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:fileencoding=utf-8:textwidth=99 :