| 6 | #include <QPixmapCache> |
| 7 | |
| 8 | YACReaderBusyWidget::YACReaderBusyWidget(QWidget *parent) |
| 9 | : QWidget(parent) |
| 10 | { |
| 11 | setFixedSize(70, 70); |
| 12 | busyIndicator = new BusyIndicator(this); |
| 13 | busyIndicator->setIndicatorStyle(BusyIndicator::StyleArc); |
| 14 | busyIndicator->setColor(Qt::white); |
| 15 | busyIndicator->move(20, 20); |
| 16 | } |
| 17 | |
| 18 | void YACReaderBusyWidget::setColor(QColor color) |
| 19 | { |
nothing calls this directly
no test coverage detected