mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
23 lines
402 B
C++
23 lines
402 B
C++
#ifndef EMPTY_LABEL_WIDGET_H
|
|
#define EMPTY_LABEL_WIDGET_H
|
|
|
|
#include <QtWidgets>
|
|
#include "empty_container_info.h"
|
|
#include "yacreader_global_gui.h"
|
|
|
|
class EmptyLabelWidget : public EmptyContainerInfo
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EmptyLabelWidget(QWidget *parent = nullptr);
|
|
void setColor(YACReader::LabelColors color);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif // EMPTY_LABEL_WIDGET_H
|