MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / addTextInputRow

Method addTextInputRow

source/ui/controls/ImGuiLayout.cpp:303–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

301}
302
303std::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
308std::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);

Callers 3

ContainersViewMethod · 0.80
createInstallTabMethod · 0.80
createGeneralTabMethod · 0.80

Calls 2

addRowMethod · 0.95
addTextInputMethod · 0.80

Tested by

no test coverage detected