Added a HTML Displayable Delegate

Added a HTML delegate to show rendered HTML on print.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-07-17 20:10:44 -03:00 committed by Dirk Hohndel
parent 345b01750a
commit 774a785a99
2 changed files with 35 additions and 0 deletions

View file

@ -110,4 +110,10 @@ private:
double step;
};
class HTMLDelegate : public ProfilePrintDelegate {
Q_OBJECT
public:
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
};
#endif // MODELDELEGATES_H