styledtypedelegate.h 369 B

12345678910111213141516
  1. #ifndef STYLEDTYPEDELEGATE_H
  2. #define STYLEDTYPEDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. #include <QObject>
  5. class StyledTypeDelegate : public QStyledItemDelegate
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit StyledTypeDelegate(QObject *parent = nullptr);
  10. QString displayText(const QVariant &value, const QLocale &locale) const override;
  11. };
  12. #endif // STYLEDTYPEDELEGATE_H