qt-material-widgets/components/qtmaterialcircularprogress_...

26 lines
413 B
C++
Raw Normal View History

2017-09-29 09:14:01 +00:00
#include "qtmaterialcircularprogress_internal.h"
2022-02-17 01:06:18 +00:00
namespace md
{
2017-09-29 09:14:01 +00:00
/*!
* \class QtMaterialCircularProgressDelegate
* \internal
*/
2022-02-17 01:06:18 +00:00
CircularProgressDelegate::CircularProgressDelegate(CircularProgress *parent)
2017-09-29 09:14:01 +00:00
: QObject(parent),
m_progress(parent),
m_dashOffset(0),
m_dashLength(89),
m_angle(0)
{
Q_ASSERT(parent);
}
2022-02-17 01:06:18 +00:00
CircularProgressDelegate::~CircularProgressDelegate()
2017-09-29 09:14:01 +00:00
{
}
2022-02-17 01:06:18 +00:00
}