Advertisement
Bruce314

RichTextDelegate.hpp

Jun 5th, 2013
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. #ifndef RICHTEXTDELEGATE_HPP
  2. #define RICHTEXTDELEGATE_HPP
  3.  
  4. #include <QStyledItemDelegate>
  5.  
  6. class QTextDocument;
  7.  
  8. class RichTextDelegate : public QStyledItemDelegate
  9. {
  10.     Q_OBJECT
  11.  
  12. public:
  13.     RichTextDelegate(QObject *parent);
  14.     ~RichTextDelegate();
  15.  
  16.  
  17.     virtual void paint ( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const;
  18. private:
  19.     QTextDocument* m_pFormatter;
  20. };
  21.  
  22. #endif // RICHTEXTDELEGATE_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement