mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-23 19:42:21 +08:00
18 lines
283 B
C++
18 lines
283 B
C++
|
|
#pragma once
|
|
|
|
#include <QLabel>
|
|
|
|
class SpkNotifyDot : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SpkNotifyDot(QWidget *parent = nullptr);
|
|
~SpkNotifyDot() {}
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *) override;
|
|
// virtual int widthForHeight(int h) override;
|
|
};
|