generate ui core flows

This commit is contained in:
talksik
2026-02-01 13:21:21 -08:00
parent 0a3b315652
commit 9e5f0a5d2b
20 changed files with 1433 additions and 14 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef SESSIONITEMDELEGATE_H
#define SESSIONITEMDELEGATE_H
#include <QStyledItemDelegate>
class SessionItemDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit SessionItemDelegate(QObject *parent = nullptr);
void paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
QSize sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
};
#endif // SESSIONITEMDELEGATE_H