/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2014 Teo Mrnjavac * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * */ #ifndef WAITINGWIDGET_H #define WAITINGWIDGET_H #include class QLabel; class WaitingWidget : public QWidget { Q_OBJECT public: explicit WaitingWidget( const QString& text, QWidget* parent = nullptr ); void setText( const QString& text ); private: QLabel* m_waitingLabel; }; #endif // WAITINGWIDGET_H