qheaderview

How do I add a header with data to a QTableWidget in Qt?

Hi, I'm still learning Qt and I am indebted to the SO community for providing me with great, very timely answers to my Qt questions. Thank you. I'm quite confused on the idea of adding a header to a QTableWidget. What I'd like to do is have a table that contains information about team members. Each row for a member should contain his f...

Adding Vertical headers to a QTreeView

I have a QTreeView subclass (and QAbstractItemModel subclass) which has a nice horizontal header. I would like to add vertical headers (going down the left side) to match. But unlike QTableView which has separate vertical (setVerticalHeader()) and horizontal headers (setHorizontalHeader()), QTreeView only allows a single header (setHeade...

setting QHeaderView background image

Im trying to set background-image for QHeaderView through a stylesheet. background-color works fine, but background-image does not. I've used the same stylesheet on another widget and it works. But wont work on QHeaderView... My stylesheet is: QHeaderView::section, QHeaderView { background-image:url(:/topgradient.png); backgroun...

Right clicking on QHeaderView inside of QTreeView

I've written a descendant of QTreeView with multiple columns. I want to create a popup menu that appears whe nthe user right-clicks over the column headers. I have tried catching signals from QTreeView for this, but QTreeView doesn't seem to emit signals on the headers. QTreeView.header() does. I therefore believe I must either: 1: conne...