sp-pattern.h revision 7e07eedebcaad8598f938d86a3af3f31027dc38b
#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 <list>
#include <stddef.h>
#include <sigc++/connection.h>
#include "sp-item.h"
#include "svg/svg-length.h"
#include "sp-paint-server.h"
#include "uri-references.h"
#include "viewbox.h"
}
}
enum PatternUnits {
};
SPPattern();
/* Reference (href) */
/* patternUnits and patternContentUnits attribute */
bool patternUnits_set : 1;
bool patternContentUnits_set : 1;
/* patternTransform attribute */
bool patternTransform_set : 1;
/* Tile rectangle */
SVGLength x;
SVGLength y;
bool isValid() const;
};
}
return SP_IS_PATTERN (obj);
}
};
const gchar *pattern_tile (const std::list<Inkscape::XML::Node*> &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 :