| 326 | } |
| 327 | |
| 328 | std::shared_ptr<LayoutButtonControl> LayoutSection::addButton(Msg labelId, Msg helpId, BString buttonLabel) { |
| 329 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
| 330 | return row->addButton(buttonLabel); |
| 331 | } |
| 332 | |
| 333 | std::shared_ptr<LayoutTextInputControl> LayoutRow::addTextInput(BString initialValue, bool readOnly) { |
| 334 | std::shared_ptr<LayoutTextInputControl> control = std::make_shared<LayoutTextInputControl>(shared_from_this()); |
no test coverage detected