12345678910111213141516171819 |
- using Avalonia.Metadata;
- namespace Avalonia.Input.TextInput
- {
- [Unstable]
- public interface ITextInputMethodImpl
- {
- void SetClient(ITextInputMethodClient? client);
- void SetCursorRect(Rect rect);
- void SetOptions(TextInputOptions options);
- void Reset();
- }
-
- [NotClientImplementable]
- public interface ITextInputMethodRoot : IInputRoot
- {
- ITextInputMethodImpl? InputMethod { get; }
- }
- }
|