Files
yacreader/YACReaderLibrary/empty_folder_widget.h
2026-02-19 18:06:32 +01:00

18 lines
349 B
C++

#ifndef EMPTY_FOLDER_WIDGET_H
#define EMPTY_FOLDER_WIDGET_H
#include <QtWidgets>
#include "empty_container_info.h"
class EmptyFolderWidget : public EmptyContainerInfo
{
Q_OBJECT
public:
explicit EmptyFolderWidget(QWidget *parent = nullptr);
protected:
void applyTheme(const Theme &theme) override;
};
#endif // EMPTY_FOLDER_WIDGET_H