Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
186 views

QTableWidget Horizontal Header CSS

I'm trying to style a QTableWidget using the latest Qt SDK (4.7.4). From Googling, I've seen that I need to do something like this: QHeaderView::section { background: red; /* ... */ } ...
2
votes
1answer
745 views

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 ...
1
vote
0answers
92 views

Painting a QTreeView - but with headers

I'm writing a QAbstractItemDelegate that renders arbitrary QWidgets (using Jambi, not that this matters). When my delegate tries to render a QTreeView (by calling paint) the data of the treeview is ...
1
vote
1answer
145 views

Header View title getting overwritten with Inherited controller

I am trying to access the properties and objects that are declared in one view controller in to the page where I need them.Did so by subclassing the view controller.But I have got a problem here,the ...
1
vote
1answer
161 views

How can i set labels of QHeaderView in PyQt?

In Pyqt, I am trying to make the QHeaderView of a QTableWidget respond to right mouse clicks. I have subclassed QHeaderView and i have overloaded the mousePressEvent. Then i can set it as as the ...
0
votes
1answer
168 views

Trouble understanding and handling QHeaderView Signals

I'm currently working on a basic QTGui table to be used for various applications. One feature I want is to be able to double click on a header of a column and call a sort function. I've been looking ...
0
votes
1answer
236 views

Customizing QHeaderView resize handle

I use the cleanlooks style for my application which fits best the look and feel I want. The annoying thing a stumbled on is that the QHeaderView (horizontal header of a QTableWidget for instance) ...
0
votes
0answers
197 views

Vertical header selection in QTableView

I'm wondering if it is possible to set a selectionBehaviour specifically on the vertical header of a QTableView? I'd like to be able to select the whole row when I click on the vertical header and ...
0
votes
1answer
133 views

In Qt4, is it possible to prevent specific QHeaderView columns from being moved?

Qt's QHeaderView class has an isMovable() method which returns whether or not the user is able to rearrange columns. The property is set via a call to setMovable(bool). I would like to be able to ...
0
votes
2answers
647 views

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 ...
0
votes
4answers
2k views

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

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 ...