htmldelegate.h 389 B

1234567891011121314151617
  1. #ifndef HTMLDELEGATE_H
  2. #define HTMLDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. class HTMLDelegate : public QStyledItemDelegate
  5. {
  6. public:
  7. HTMLDelegate();
  8. protected:
  9. QSize sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const;
  10. void paint ( QPainter* painter, const QStyleOptionViewItem & option, const QModelIndex &index ) const;
  11. };
  12. #endif // HTMLDELEGATE_H