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*, ::cohtml::TextInput::Selection);
20
21 virtual void OnTextChanged(::cohtml::IInputProxy*, char const*, uint, char const*, uint, uint);
22
23 virtual void OnFocus(::cohtml::IInputProxy*);
24
25 virtual void OnBlur(::cohtml::IInputProxy*);
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31
32 // NOLINTEND
33};
34
35} // namespace cohtml
Definition IInputProxy.h:7
Definition ITextInputHandler.h:7
Definition Selection.h:7