mytimedelegate.h 417 B

12345678910111213141516
  1. #ifndef MYTIMEDELEGATE_H
  2. #define MYTIMEDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. class MyTimeDelegate : public QStyledItemDelegate
  5. {
  6. Q_OBJECT
  7. public:
  8. const QColor c_bkColor = QColor(255,255,255);
  9. explicit MyTimeDelegate(QObject *parent = nullptr);
  10. protected:
  11. void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
  12. };
  13. #endif // MYTIMEDELEGATE_H