QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskStrokeNode.h
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#ifndef QSK_STROKE_NODE_H
7#define QSK_STROKE_NODE_H
8
9#include "QskGlobal.h"
10#include "QskFillNode.h"
11
12class QPen;
13class QPainterPath;
14class QPolygonF;
15
16class QSK_EXPORT QskStrokeNode : public QskFillNode
17{
18 using Inherited = QskFillNode;
19
20 public:
22 ~QskStrokeNode() override;
23
24 void updatePath( const QPainterPath&, const QPen& );
25 void updatePath( const QPainterPath&, const QTransform&, const QPen& );
26};
27
28#endif