Hi,

I add qpushbuttons on Form and set my buttons' positions with setGeometry. It's ok.
Now I want to divide these buttons into QFrame as the groups.

I add buttons on Form as follow:
myBtn[btn]=new QPushButton(this);
myBtn[btn]->setGeometry(intWidth*i,y,intWidth,intWidth);

How can I add these buttons into QFrame? VBoxLayout, HBoxLayout or GridLayout is not suitable for my buttons' position.
So I don't want to use layout.

Thanks.