
QIrExpanderBox
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
QIrExpanderBox is a QSplitter-based container for Qt applications that contains only QIrExpander widgets. 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 QIrExpanderBox is:
....
QIrExpanderBox * box = new QIrExpanderBox(this);
QIrExpander * expander = box->addWidget(QIcon(...),..,new QTreeView);
expander->setExpanded(false);
box->addExpander(new QIrExpander(QIcon(...),...,new QGroupBox(...)));
....
Please login or register to add a comment or rating