| 484 | } |
| 485 | |
| 486 | void OnQueryTextFinished(std::optional<std::string> str) override |
| 487 | { |
| 488 | if (!str.has_value()) return; |
| 489 | auto value = ParseInteger<int32_t>(*str, 10, true); |
| 490 | if (!value.has_value()) return; |
| 491 | this->SetValue(*value); |
| 492 | } |
| 493 | |
| 494 | void OnDropdownSelect(WidgetID widget, int index, int) override |
| 495 | { |