Make the YACReaderBusyWidget customizable (color)

This commit is contained in:
luisangelsm
2026-01-14 15:52:11 +01:00
parent 721da42c8c
commit 1cb2f50057
2 changed files with 16 additions and 4 deletions

View File

@ -4,11 +4,17 @@
#include <QTimer>
#include <QWidget>
class BusyIndicator;
class YACReaderBusyWidget : public QWidget
{
Q_OBJECT
public:
explicit YACReaderBusyWidget(QWidget *parent = 0);
void setColor(QColor color);
private:
BusyIndicator *busyIndicator;
};
class BusyIndicator : public QWidget