summaryrefslogtreecommitdiff
path: root/listdelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'listdelegate.h')
-rw-r--r--listdelegate.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/listdelegate.h b/listdelegate.h
new file mode 100644
index 0000000..d364b04
--- /dev/null
+++ b/listdelegate.h
@@ -0,0 +1,16 @@
+#ifndef LISTDELEGATE_H
+#define LISTDELEGATE_H
+
+#include <QStyledItemDelegate>
+
+class ListDelegate : public QStyledItemDelegate
+{
+ Q_OBJECT
+public:
+ ListDelegate(QObject *parent = 0);
+ void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
+ QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
+
+};
+
+#endif