viewbox.h revision 895229950881e4c5be06fc7999ed0ef9aea62e92
#ifndef __SP_VIEWBOX_H__
#define __SP_VIEWBOX_H__
/*
* viewBox helper class, common code used by root, symbol, marker, pattern, image, view
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com> (code extracted from sp-symbol.h)
* Tavmjong Bah
*
* Copyright (C) 2013 Tavmjong Bah, authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*
*/
#include <glib.h>
}
SPViewBox();
~SPViewBox();
/* 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 */
/* Adjusts c2p for viewbox */
};
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-basic-offset:2
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=2:tabstop=8:softtabstop=2:fileencoding=utf-8:textwidth=99 :