#ifndef CUSTOMHEADERVIEW_H #define CUSTOMHEADERVIEW_H #include #include class CustomHeaderView : public QHeaderView { public: CustomHeaderView(Qt::Orientation orientation, QWidget *parent = nullptr); protected: void paintSection(QPainter *painter, const QRect &rect, int logicalIndex) const; }; #endif // CUSTOMHEADERVIEW_H