vnofocusitemdelegate.h 401 B

123456789101112131415
  1. #ifndef VNOFOCUSITEMDELEGATE_H
  2. #define VNOFOCUSITEMDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. class VNoFocusItemDelegate : public QStyledItemDelegate
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit VNoFocusItemDelegate(QWidget *parent = 0);
  9. void paint(QPainter *painter, const QStyleOptionViewItem &option,
  10. const QModelIndex &index) const Q_DECL_OVERRIDE;
  11. };
  12. #endif // VNOFOCUSITEMDELEGATE_H