Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 621 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 621 Bytes

QT: Collapsible Section

This is a simple collapsable section for QT. It has been tested with QT5.6.

Special thanks to "x squared" who has posted the original code for this idea at StackOverflow: http://stackoverflow.com/a/37119983/2573127

Sample Code

Section* section = new Section("Section", 300, parentWidget);
auto* anyLayout = new QVBoxLayout();
anyLayout->addWidget(new QLabel("Some Text in Section", section));
anyLayout->addWidget(new QPushButton("Button in Section", section));

section->setContentLayout(*anyLayout);

Sample Animation

section opening and closing