You can't add a splitter in designer.
It is better to do it in code - there's no way better to learn.
For an example:
...
splitter->addWidget(table);
...
splitter->addWidget(label);
//next, add the splitter to some container widget.
QSplitter* splitter = new QSplitter(Qt::Vertical, someParentWidget);
QTableView *table = new QTableView;
...
splitter->addWidget(table);
QLabel *label = new QLabel; //for displaying the jpeg
...
splitter->addWidget(label);
//next, add the splitter to some container widget.
To copy to clipboard, switch view to plain text mode
You can find a lot more examples in the Qt Demos. Just browse around...
Bookmarks