I have such code (Qt):
Window::Window(QWidget *parent, const char *name)
: QScrollView(parent, name)
{
pwgt=new QWidget(this);
this->addChild(pwgt);
}

void Window:penImage()
{
QString str=QFileDialog::getOpenFileName("","*.bmp");
QPixmap pix(str);
pwgt->resize(pix.width(),pix.height());
pwgt->setBackgroundPixmap(pix);
}

it opens some picture. I want to open many pictures in one Window so as they open near each other and I could see them all. And this pictures must be in some order like table or in one line.
May be I must use QHbox? (I read doc, but I dont know how to do it )