| 301 | } |
| 302 | |
| 303 | std::shared_ptr<LayoutTextInputControl> LayoutSection::addTextInputRow(Msg labelId, Msg helpId, BString initialValue, bool readOnly) { |
| 304 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
| 305 | return row->addTextInput(initialValue, readOnly); |
| 306 | } |
| 307 | |
| 308 | std::shared_ptr<LayoutComboboxControl> LayoutSection::addComboboxRow(Msg labelId, Msg helpId, const std::vector<ComboboxItem>& options, int selected) { |
| 309 | std::shared_ptr<LayoutRow> row = this->addRow(labelId, helpId); |
no test coverage detected