1234567891011121314151617181920212223 |
- #ifndef CPATHITEM_H
- #define CPATHITEM_H
- #include <QGraphicsPathItem>
- class CPathItem : public QGraphicsPathItem
- {
- public:
- CPathItem(QGraphicsItem *parent = nullptr);
- int lineWidth() const;
- void setLineWidth(int width);
- QColor lineColor() const;
- void setLineColor(QColor color);
- QColor fillColor() const;
- void setFillColor(QColor color);
- virtual void setHighlighted(bool highlighted);
- };
- #endif // CPATHITEM_H
|