| 346 | } |
| 347 | |
| 348 | void OnQueryTextFinished(std::optional<std::string> str) override |
| 349 | { |
| 350 | if (!str.has_value()) return; |
| 351 | auto value = ParseInteger<int32_t>(*str, 10, true); |
| 352 | if (!value.has_value()) return; |
| 353 | this->SetValue(*value); |
| 354 | } |
| 355 | |
| 356 | void OnDropdownSelect(WidgetID widget, int index, int) override |
| 357 | { |