I have a QTreeWidget subclass with drop enabled. As I drag into the tree widget, I want the QTreeWidgetItem to highlight indicating the tree node where the drop will occur.

I am receiving the events dragEnterEvent, dragMoveEvent, and dropEvent.

How do I get the highlight behavior as the drag is occurring?

Thank you in advance