I want to know your thoughts/ideas on how I can implement this:
I have a QGraphicsView/Scene project for designing.
I want to implement a little window following the mouse and showing/prompting for input from the user.
Look at the example in an autocad 8 environment:
http://www.softpedia.com/screenshots/AutoCAD_8.png
A little box saying "Specify Oposite Corner:" is following the mouse giving info and wanting input from the user.

I first thought to implement a QWidget with my litle dialog (QLabels, and QLineInputs) and use QGraphicsProxyWidget ... but this doesn't work well because the QWidget follows View scale,size. I want to remain the same size despite panning/zooming on the view.

Any ideas?