Printable View
Is possible “to draw†the contents of one widget in another one widget? How to make?
Yes. If you have widgets w1 and w2, and you want to draw w1 on w2 then you can use: Code: QPixmap w1Pix = QPixmap::grabWidget(w1); Now you have the contents of w1 in w1Pix. Nett you can use any means to draw this pixmap on to w2. Regards
QPixmap w1Pix = QPixmap::grabWidget(w1);