| 311 | } |
| 312 | |
| 313 | std::shared_ptr< LayoutCheckboxControl> LayoutSection::addCheckbox(Msg labelId, Msg helpId, bool value) { |
| 314 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
| 315 | return row->addCheckbox(value); |
| 316 | } |
| 317 | |
| 318 | std::shared_ptr<LayoutTextControl> LayoutSection::addText(Msg labelId, Msg helpId, BString text) { |
| 319 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
no test coverage detected