1 /* === This file is part of Calamares - <https://calamares.io> ===
2  *
3  *   SPDX-FileCopyrightText: 2015-2016 Teo Mrnjavac <teo@kde.org>
4  *   SPDX-License-Identifier: GPL-3.0-or-later
5  *
6  *   Calamares is Free Software: see the License-Identifier above.
7  *
8  */
9 
10 
11 #ifndef BOOTINFOWIDGET_H
12 #define BOOTINFOWIDGET_H
13 
14 #include <QWidget>
15 
16 class QLabel;
17 
18 class BootInfoWidget : public QWidget
19 {
20     Q_OBJECT
21 public:
22     explicit BootInfoWidget( QWidget* parent = nullptr );
23 
24 public slots:
25     void retranslateUi();
26 
27 private:
28     QLabel* m_bootIcon;
29     QLabel* m_bootLabel;
30 };
31 
32 #endif  // BOOTINFOWIDGET_H
33