Code

Tuning fill-n-stroke to support non-solid swatches.
[inkscape.git] / src / svg / svg-device-color.h
1 #ifndef SVG_DEVICE_COLOR_H_SEEN
2 #define SVG_DEVICE_COLOR_H_SEEN
4 #include <string>
5 #include <vector>
7 typedef enum {DEVICE_COLOR_INVALID, DEVICE_GRAY, DEVICE_RGB, DEVICE_CMYK, DEVICE_NCHANNEL} SVGDeviceColorType;
9 struct SVGDeviceColor {
10     SVGDeviceColorType type;
11     std::vector<double> colors;
12 };
15 #endif /* !SVG_DEVICE_COLOR_H_SEEN */
17 /*
18   Local Variables:
19   mode:c++
20   c-file-style:"stroustrup"
21   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
22   indent-tabs-mode:nil
23   fill-column:99
24   End:
25 */
26 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :