35 lines
853 B
C
35 lines
853 B
C
![]() |
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef QSK_TICKMARKS_NODE_H
|
||
|
#define QSK_TICKMARKS_NODE_H
|
||
|
|
||
|
#include "QskGlobal.h"
|
||
|
|
||
|
#include <qsgnode.h>
|
||
|
#include <qnamespace.h>
|
||
|
|
||
|
class QColor;
|
||
|
class QRectF;
|
||
|
class QskIntervalF;
|
||
|
class QskScaleTickmarks;
|
||
|
|
||
|
class QskTickmarksNodePrivate;
|
||
|
|
||
|
class QSK_EXPORT QskTickmarksNode : public QSGGeometryNode
|
||
|
{
|
||
|
public:
|
||
|
QskTickmarksNode();
|
||
|
~QskTickmarksNode() override;
|
||
|
|
||
|
void update( const QColor&, const QRectF&, const QskIntervalF&,
|
||
|
const QskScaleTickmarks&, int tickLineWidth, Qt::Orientation );
|
||
|
|
||
|
private:
|
||
|
Q_DECLARE_PRIVATE( QskTickmarksNode )
|
||
|
};
|
||
|
|
||
|
#endif
|