Add a busy indicator to YACReaderTitledToolBar

It will be used in the libraries section to show that libraries are being updated in the background.
This commit is contained in:
Luis Ángel San Martín
2023-08-13 10:44:49 +02:00
parent f02d4e5d98
commit ecde1ee836
2 changed files with 26 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#include <QPoint>
class QIcon;
class BusyIndicator;
class DropShadowLabel : public QLabel
{
@ -38,9 +39,12 @@ public slots:
void addAction(QAction *action);
void addSpacing(int space);
void addSepartor();
void showBusyIndicator();
void hideBusyIndicator();
private:
DropShadowLabel *nameLabel;
BusyIndicator *busyIndicator;
};
#endif // YACREADER_TITLED_TOOLBAR_H