| 1637 | } |
| 1638 | |
| 1639 | bool Gui::Widgets::textbox(const std::string& label, std::string& text, TextFlags flags) |
| 1640 | { |
| 1641 | return mpGui ? mpGui->mpWrapper->addTextbox(label.c_str(), text, 1, flags) : false; |
| 1642 | } |
| 1643 | |
| 1644 | bool Gui::Widgets::textbox(const char label[], char buf[], size_t bufSize, uint32_t lineCount, TextFlags flags) |
| 1645 | { |
no test coverage detected