
QIrQuadSplitter
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
QIrQuadSplitter is a splitter for Qt applications that lays out at most four widgets in a grid. Its content can be resized horizontally, vertically or diagonally. This widget is part of QIron toolkit which depends on Qt 4.6 and upper. Like for most of QIron widgets, a plugin is provided to be used in Qt Designer.
A typical use of QIrQuadSplitter is:
....
QIrQuadSplitter * splitter = new QIrQuadSplitter(this);
splitter->addWidget(new QTextEdit,0,0);
splitter->addWidget(new QLineEdit,0,1);
splitter->addWidget(new QTreeView,1,0);
splitter->addWidget(new QGLWidget,1,1);
....
Kujjeh
3 years ago
Report