qskinny/src/nodes/QskShapeNode.h

29 lines
639 B
C
Raw Normal View History

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_SHAPE_NODE_H
#define QSK_SHAPE_NODE_H
#include "QskGlobal.h"
#include <qsgnode.h>
class QColor;
class QPainterPath;
class QskShapeNodePrivate;
class QskShapeNode : public QSGGeometryNode
{
public:
QskShapeNode();
void updateNode( const QPainterPath&, const QColor& );
private:
Q_DECLARE_PRIVATE( QskShapeNode )
};
#endif