2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2014-09-03 17:56:46 +02:00
|
|
|
*
|
2020-08-20 22:42:19 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2014-09-03 17:56:46 +02:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2014-09-03 17:56:46 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WAITINGWIDGET_H
|
|
|
|
#define WAITINGWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2019-08-13 20:57:52 +02:00
|
|
|
#endif // WAITINGWIDGET_H
|