qt-material-widgets/xx/qtmaterialcircularprogress_p.h

31 lines
900 B
C
Raw Normal View History

2016-07-18 13:26:29 +00:00
#ifndef QTMATERIALCIRCULARPROGRESS_P_H
#define QTMATERIALCIRCULARPROGRESS_P_H
#include <QtGlobal>
#include "xxlib/qtmaterialtheme.h"
class QtMaterialCircularProgress;
class QtMaterialCircularProgressDelegate;
class QtMaterialCircularProgressPrivate
{
Q_DISABLE_COPY(QtMaterialCircularProgressPrivate)
Q_DECLARE_PUBLIC(QtMaterialCircularProgress)
public:
QtMaterialCircularProgressPrivate(QtMaterialCircularProgress *q);
~QtMaterialCircularProgressPrivate();
void init();
QtMaterialCircularProgress *const q_ptr;
QtMaterialCircularProgressDelegate *delegate;
XXMaterial::ProgressType progressType;
QColor color;
qreal penWidth;
int size;
bool useThemeColors;
};
#endif // QTMATERIALCIRCULARPROGRESS_P_H