2021-10-20 07:50:25 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2021-10-20 07:50:25 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QSK_ARC_RENDERER_H
|
|
|
|
#define QSK_ARC_RENDERER_H
|
|
|
|
|
|
|
|
#include "QskGlobal.h"
|
|
|
|
|
|
|
|
class QskArcMetrics;
|
|
|
|
class QskGradient;
|
|
|
|
|
|
|
|
class QPainter;
|
|
|
|
class QRectF;
|
|
|
|
|
2023-04-11 13:04:10 +02:00
|
|
|
namespace QskArcRenderer
|
2021-10-20 07:50:25 +02:00
|
|
|
{
|
2023-04-11 13:04:10 +02:00
|
|
|
QSK_EXPORT void renderArc( const QRectF&, const QskArcMetrics&,
|
2021-10-20 07:50:25 +02:00
|
|
|
const QskGradient&, QPainter* );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|