19 lines
372 B
C++
19 lines
372 B
C++
#ifndef DUST3D_APPLICATION_INFO_LABEL_H_
|
|
#define DUST3D_APPLICATION_INFO_LABEL_H_
|
|
|
|
#include <QLabel>
|
|
#include <QIcon>
|
|
#include <QWidget>
|
|
|
|
class InfoLabel : public QWidget
|
|
{
|
|
public:
|
|
InfoLabel(const QString &text=QString(), QWidget *parent=nullptr);
|
|
void setText(const QString &text);
|
|
private:
|
|
QLabel *m_label = nullptr;
|
|
QLabel *m_icon = nullptr;
|
|
};
|
|
|
|
#endif
|