Files
cbh/ElaWidgetTools/DeveloperComponents/ElaCalendarTitleDelegate.h
2025-09-20 01:41:33 +08:00

21 lines
607 B
C++

#ifndef ELACALENDARTITLEDELEGATE_H
#define ELACALENDARTITLEDELEGATE_H
#include <QStyledItemDelegate>
#include "ElaDef.h"
class ElaCalendarTitleDelegate : public QStyledItemDelegate {
Q_OBJECT
public:
explicit ElaCalendarTitleDelegate(QObject *parent = nullptr);
~ElaCalendarTitleDelegate();
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override;
private:
ElaThemeType::ThemeMode _themeMode;
};
#endif // ELACALENDARTITLEDELEGATE_H