LeviLamina
Loading...
Searching...
No Matches
ITextInputHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cohtml { class IInputProxy; }
8namespace cohtml::TextInput { struct Selection; }
9// clang-format on
10
11namespace cohtml {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~ITextInputHandler() = default;
18
19 virtual void OnSelectionChanged(::cohtml::IInputProxy* proxy, ::cohtml::TextInput::Selection selection);
20
21 virtual void OnTextChanged(
22 ::cohtml::IInputProxy* proxy,
23 char const* addedChars,
24 uint addedCount,
25 char const* removedChars,
26 uint removedCount,
27 uint index
28 );
29
30 virtual void OnFocus(::cohtml::IInputProxy* proxy);
31
32 virtual void OnBlur(::cohtml::IInputProxy*);
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
41
42} // namespace cohtml
Definition IInputProxy.h:7
Definition ITextInputHandler.h:7
Definition Selection.h:7