Guest User

Untitled

a guest
Jan 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #ifndef PROGRESS_DELEGATE_HH
  2. #define PROGRESS_DELEGATE_HH
  3.  
  4. #include <QItemDelegate>
  5.  
  6. class ProgressDelegate : public QItemDelegate {
  7. Q_OBJECT
  8.  
  9. public:
  10.  
  11. ProgressDelegate (QObject *parent = 0);
  12.  
  13. virtual void paint (QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
  14. };
  15.  
  16. #endif
Add Comment
Please, Sign In to add comment