Pomodoro/CircularProgressBar.h
2025-07-14 20:31:07 -05:00

29 lines
632 B
C++

#ifndef CIRCULARPROGRESSBAR_H
#define CIRCULARPROGRESSBAR_H
#include <QWidget>
class CircularProgressBar final : public QWidget {
Q_OBJECT
public:
explicit CircularProgressBar(QWidget *parent = nullptr);
void setValue(int value);
void setMaximum(int maximum);
[[nodiscard]] int value() const { return m_value; }
[[nodiscard]] int maximum() const { return m_maximum; }
protected:
void paintEvent(QPaintEvent *event) override;
void resizeEvent(QResizeEvent *event) override;
private:
int m_value;
int m_maximum;
void updateChildPositions() const;
};
#endif // CIRCULARPROGRESSBAR_H