QTreeWidget expand animation on double click

2019-02-24 07:54发布

I have created a QTreeWidget and set animation to true (setAnimated(true)). When I'm clicking on a mark (triangle) at the left of item it expands smoothly, but when I'm double clicking on the item it expands too fast (almost like there is no "animated" flag set). I want smooth animation on double click too. How can I solve this problem?

QTreeView calls QTreeViewPrivate::expandOrCollapseItemAtPos on mark click and QTreeViewPrivate::expand on double click, so I have no access to these methods.

I'm using PySide for creating Qt application (but I've tried C++ and the problem is the same).

2条回答
家丑人穷心不美
2楼-- · 2019-02-24 08:24

The trick is, double click also rise a single click in default implementation. Before expand animation, the default implementation call QAbstractItemView::setState(AnimatingState) to set internal state for animation.

And in QAbstractItemView::mouseReleaseEvent(), QAbstractItemView::setState(NoState) is called before animation finished. After this, animation terminated immediately.

Use following code to work around:

void YourSubTreeView::mouseReleaseEvent(QMouseEvent* event)
{
    QAbstractItemView::State preState = state();
    QTreeView::mouseReleaseEvent(event);
    if (preState == QAbstractItemView::AnimatingState)
        setState(preState);
}
查看更多
趁早两清
3楼-- · 2019-02-24 08:39

You need to override the click behaviour. Check the event if it's a double click or not and then you can redirect the event to the appropriate call. You should check the state if it's already clicked or not to prevent a second animation which might happen.

查看更多
登录 后发表回答