2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2016-01-27 17:54:58 +01:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2015-2016 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2016-01-27 17:54:58 +01:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2016-01-27 17:54:58 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef BOOTINFOWIDGET_H
|
|
|
|
#define BOOTINFOWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QLabel;
|
|
|
|
|
|
|
|
class BootInfoWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit BootInfoWidget( QWidget* parent = nullptr );
|
|
|
|
|
2017-08-28 10:40:31 +02:00
|
|
|
public slots:
|
|
|
|
void retranslateUi();
|
|
|
|
|
2016-01-27 17:54:58 +01:00
|
|
|
private:
|
|
|
|
QLabel* m_bootIcon;
|
|
|
|
QLabel* m_bootLabel;
|
|
|
|
};
|
|
|
|
|
2020-08-22 01:19:58 +02:00
|
|
|
#endif // BOOTINFOWIDGET_H
|