calamares/src/modules/partition/gui/BootInfoWidget.h

33 lines
599 B
C
Raw Normal View History

/* === 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
*
* 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 );
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