nr-style.h revision 9afebee14c02f00152d69ac83b6e537d34e1357f
/**
* @file
* @brief Style information for rendering
*//*
* Authors:
* Krzysztof KosiĆski <tweenk.pl@gmail.com>
*
* Copyright (C) 2010 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <cairo.h>
#include "color.h"
struct NRRect;
struct NRStyle {
NRStyle();
~NRStyle();
void update();
enum PaintType {
};
struct Paint {
float opacity;
void clear();
};
float stroke_width;
float miter_limit;
float opacity;
unsigned int n_dash;
double *dash;
float dash_offset;
};
#endif
/*
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 :