1 // For license of this file, see <project-root-folder>/LICENSE.md.
2 
3 #ifndef PROGRESSBARWITHTEXT_H
4 #define PROGRESSBARWITHTEXT_H
5 
6 #include <QProgressBar>
7 
8 class ProgressBarWithText : public QProgressBar {
9   public:
10     explicit ProgressBarWithText(QWidget* parent = nullptr);
11 
12     virtual QString text() const;
13 };
14 
15 #endif // PROGRESSBARWITHTEXT_H
16