prabhakaran
prabhakaran

Reputation: 5274

qt - How to override dragMoveEvent in QGraphicsScene with the same functionality

I derived a class from QGraphicsScene. Then I overrided the dragMoveEvent. But now I cant move any items in my QGraphicsScene. Somebody please help me to create the dragging movement.

Upvotes: 0

Views: 662

Answers (1)

InsertNickHere
InsertNickHere

Reputation: 3666

IIRC you can call directly call the overridden method by QGraphicsScene::dragMoveEvent from your own function.

Upvotes: 1

Related Questions