tags:

views:

24

answers:

1

I am new to Qt. First look at the image.

http://i225.photobucket.com/albums/dd200/saravanan_comp2001/sample.png

i already created custom shape button (inherit the QWidget). now the problem is adding the buttons into another widget(Parent QWidget).

How to add this button in Fixed location and some times i need to add the buttons in overlap.

i can't use any Layout method. Please help me to fix the problem

+1  A: 

Just create your custom shape button with the QWidget as parent and set the position using the move function.

Patrice Bernassola