is there any possibility to rotate a whole widget with all components about 180 degrees??
thanks for help.
is there any possibility to rotate a whole widget with all components about 180 degrees??
thanks for help.
You mean like this?
yes
thats what i need.
Essentially you have two choices. One is QGraphicsView + Widgets-On-Canvas. The other is to implement a widget proxy like I did. Unfortunately I can't share it with you as it is not complete yet (and it's very far fromeven close to being usable).
could you give me some snippets?
markus.kuenkler@gmx.de
thanks![]()
Not really, you'd be laughing for hoursBasically I use QPixmap::grabWidget() and forward all events after applying the transformation matrix on their coordinates.
This should work (the principle, not the exact implementation):
http://vir.homelinux.org/blog/archiv...getrender.html
Unfortunately it only renders the widget, which is the easy part... Forwarding events is much more work, believe me![]()
hm... i know about it but i hoped there would be another solution. look at my skinlib. i use QWidget::render and redirect all events...
Bookmarks