QTreeWidgetItem sizeHint returning QSize(-1,-1)
-
Hi,
What do you have in the model currently ? When are you calling that function ?
-
Currently I'm using a QTreeWidget populated with QTreeWidgetItems. I've tried calling the sizeHint function at different places, after the item has been set up with its text and other column data and also after the QTreeWidget has been completely set up.
-
And visible ?
-
The second call above mentioned was called after calling show() on the widget containing the scroll area and treewidget. I just added
qDebug() << "show" << sourceFilesLeft->sizeHint(0) << sourceFilesLeft->sizeHint(1);
to a slot called realtime from a checkbox and still getting this:
show QSize(-1, -1) QSize(-1, -1)
-
How are you using sourceFilesLeft exactly ?
-
I've tried the sizeHint() for various columns on various QTreeWidgetItems all with the same results. sourceFilesLeft is just a top-level QTreeWidgetItem for one of the QTreeWidgets. I've also tried sizeHint() on my QTreeWidgetItem subclass TreeFileDirItem with the same results.
-
I created a sample project and got the same results with stripped down code. Here it is if you could take a look:
https://www.dropbox.com/s/9v4irn1bvuptxmy/treetest2.zip?dl=0
Click the bullets in the upper right then download...
Thanks -
Ok, after having re-check the documentation and the code. That method returns the value you set for it thus since you never gave a size hint to start with you'll get the default value you are currently getting.
-
Here it says:
Sets the size hint for the tree item in the given column to be size. If no size hint is set, the item delegate will compute the size hint based on the item data.
http://doc.qt.io/qt-5/qtreewidgetitem.html#setSizeHint
Doesn't that sound like it should return an ideal sizehint based on the size of the column data or text?
-
The delegate will do the math, but it won't change the content of the model.
-
What is exactly your purpose ?
-
So you would like the column to resize so your tooltip fits in ?
-
So, in fact, you would like to show the full content of a cell in a QToolTip ?
-
so what you want is probably to use
setData
on the widget item to set the Qt::ToolTipRole at the same value as main cell content. this will solve the " you would like to show the full content of a cell in a QToolTip" partfor the "only for cells that dont fit the entire text in the column" part you have to subclass QTreeWidget, reimplement
viewportEvent(QEvent *event)
so that if the event type is Qt::ToolTip you check if it fits usingsizeHintForIndex
if it does reject the event otherwise just call the base class implementation