| 600 | } |
| 601 | |
| 602 | void WindowUpdateTextbox() |
| 603 | { |
| 604 | if (_usingWidgetTextBox) |
| 605 | { |
| 606 | _textBoxFrameNo = 0; |
| 607 | auto* windowMgr = GetWindowManager(); |
| 608 | WindowBase* w = windowMgr->FindByNumber(_currentTextBox.window.classification, _currentTextBox.window.number); |
| 609 | windowMgr->InvalidateWidget(*w, _currentTextBox.widgetIndex); |
| 610 | w->onTextInput(_currentTextBox.widgetIndex, _textBoxInput); |
| 611 | } |
| 612 | } |
| 613 | const TextInputSession* GetTextboxSession() |
| 614 | { |
| 615 | return _textInput; |
no test coverage detected