PDA

View Full Version : Movable Widgets and QGraphicsWidget



ts66
30th October 2012, 18:33
Hi all,

I'm working on a application. In this application will have QWidgets that I want to be able to move freely within the application per drag'n'drop and I want to be able to resize them. My current aproach is to implement these QWidgets as QGraphicsWidget and place them in a QGraphicsScene. Before I put too much time into this, what do you think?

Do you think it would work? Should I rely on other classes? Can you suggest something else?

Thanks in advance!

wysota
30th October 2012, 20:02
How about QMdiArea?

ts66
30th October 2012, 20:08
This looks very good, thank you wysota.