#ifndef ENC_STYLE_H #define ENC_STYLE_H #include #include #include namespace ENC { class Style { public: enum FontSize { None, Small, Normal, Large, }; class Polygon { public: Polygon() : _brush(Qt::NoBrush), _pen(Qt::NoPen) {} Polygon(const QBrush &brush, const QPen &pen = Qt::NoPen) : _brush(brush) { _pen = (pen == Qt::NoPen) ? QPen(_brush, 0) : pen; } const QPen &pen() const {return _pen;} const QBrush &brush() const {return _brush;} private: QBrush _brush; QPen _pen; }; class Line { public: Line() : _foreground(Qt::NoPen), _background(Qt::NoPen), _textFontSize(None) {} Line(const QPen &foreground, const QPen &background = Qt::NoPen) : _foreground(foreground), _background(background), _textFontSize(None) {} Line(const QImage &img) : _foreground(Qt::NoPen), _background(Qt::NoPen), _textFontSize(None), _img(img.convertToFormat( QImage::Format_ARGB32_Premultiplied)) {} void setTextColor(const QColor &color) {_textColor = color;} void setTextFontSize(FontSize size) {_textFontSize = size;} const QPen &foreground() const {return _foreground;} const QPen &background() const {return _background;} const QColor &textColor() const {return _textColor;} FontSize textFontSize() const {return _textFontSize;} const QImage &img() const {return _img;} private: QPen _foreground, _background; QColor _textColor; FontSize _textFontSize; QImage _img; }; class Point { public: Point() : _textColor(Qt::black), _textFontSize(Normal) {} Point(const QImage &img, FontSize fontSize = Normal) : _textColor(Qt::black), _textFontSize(fontSize), _img(img) {} void setTextColor(const QColor &color) {_textColor = color;} void setTextFontSize(FontSize size) {_textFontSize = size;} const QColor &textColor() const {return _textColor;} FontSize textFontSize() const {return _textFontSize;} const QImage &img() const {return _img;} private: QColor _textColor; FontSize _textFontSize; QImage _img; }; Style(); const Line &line(uint type) const; const Polygon &polygon(uint type) const; const Point &point(quint32 type) const; const QVector &drawOrder() const {return _drawOrder;} private: void defaultPolygonStyle(); void defaultLineStyle(); void defaultPointStyle(); QMap _lines; QMap _polygons; QMap _points; QVector _drawOrder; }; } #endif // ENC_STYLE_H