I would like to create a simple effect with my qt gui, but i have no idea how to achieve this.

I have several widgets, that i implemented as subclasses of qwidget. These are part of another widget and live in a layout. When the mouse hovers over these widgets, i want them to appear bigger to highlight the selected one.

This is what i already tried: Override the paint event, and simply paint it bigger. But then, the other widgets that also live in the same layout overpaint the oversized areas.

I also tried to call the paint function "by hand" from the parent window, to get control over the painting order. But that didnt help either.

I think there has to be a possibility achieving this effect this qt, but i simply dont know how. Any ideas?

link|improve this question

75% accept rate
I don't think "painting it bigger" is a good idea, but did you try raise()ing the widget when you do that? – Mat Sep 8 '11 at 19:26
But i want to widget to really be bigger. Unfortunately raise() doesnt prevent the widget from being overpainted by the other widgets. If this helps: i want to have a similar effect to the auto hiding parts, like the solution explorer, of visual studio for example. – Valerie Sep 8 '11 at 19:36
Then make it bigger with resize(), but that's probably going to mess up your layout. You might manage to make it work with spacers. I don't know, and I don't like stuff moving under the mouse. Changing colors/highlighting is ok though. – Mat Sep 8 '11 at 19:40
You are right, but my input device is not the mouse. I use the hand positions from the kinect skeleton tracking. And if i design control elements, that are big enough to fit the hands on the screen, my screen will be complete full with control elements. Thats why i want to scale them when the hand hovers over them. – Valerie Sep 8 '11 at 19:48
feedback

1 Answer

You could either:

  • create your GUI inside a QGraphicsView, with QGraphicsWidgets and use setScale when the mouse enters or leave the widget, or
  • use QML.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.