3#include "mc/_HeaderOutputPredefine.h"
8namespace cohtml::TextInput {
struct Selection; }
17 virtual ~ITextInputHandler() =
default;
19 virtual void OnSelectionChanged(::cohtml::IInputProxy* proxy, ::cohtml::TextInput::Selection selection);
21 virtual void OnTextChanged(
22 ::cohtml::IInputProxy* proxy,
23 char const* addedChars,
25 char const* removedChars,
30 virtual void OnFocus(::cohtml::IInputProxy* proxy);
32 virtual void OnBlur(::cohtml::IInputProxy*);
Definition ITextInputHandler.h:7