18#ifndef LISTITEMDELEGATE_H
19#define LISTITEMDELEGATE_H
21#include <QStyledItemDelegate>
30 void setUpdateParentHeight(
bool update);
31 void setUniformItemSizes(
bool uniform);
33 int itemHeight()
const;
35 void paint(QPainter* painter,
const QStyleOptionViewItem &option,
const QModelIndex &index)
const override;
36 QSize sizeHint(
const QStyleOptionViewItem &option,
const QModelIndex &index)
const override;
40 bool m_updateParentHeight;
41 bool m_uniformItemSizes;
43 mutable int m_itemHeight;
44 mutable int m_itemWidth;
45 mutable int m_padding;