Files
yacreader/YACReaderLibrary/empty_label_widget.h
2026-03-13 11:06:25 +01:00

22 lines
471 B
C++

#ifndef EMPTY_LABEL_WIDGET_H
#define EMPTY_LABEL_WIDGET_H
#include "empty_container_info.h"
#include "yacreader_global.h"
class EmptyLabelWidget : public EmptyContainerInfo
{
Q_OBJECT
public:
explicit EmptyLabelWidget(QWidget *parent = nullptr);
void setColor(YACReader::LabelColors color);
protected:
void applyTheme(const Theme &theme) override;
private:
YACReader::LabelColors currentColor = YACReader::YRed;
};
#endif // EMPTY_LABEL_WIDGET_H