diff options
Diffstat (limited to 'src/Ryujinx.HLE/UI/IDynamicTextInputHandler.cs')
-rw-r--r-- | src/Ryujinx.HLE/UI/IDynamicTextInputHandler.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/UI/IDynamicTextInputHandler.cs b/src/Ryujinx.HLE/UI/IDynamicTextInputHandler.cs new file mode 100644 index 00000000..1ff451d1 --- /dev/null +++ b/src/Ryujinx.HLE/UI/IDynamicTextInputHandler.cs @@ -0,0 +1,16 @@ +using System; + +namespace Ryujinx.HLE.UI +{ + public interface IDynamicTextInputHandler : IDisposable + { + event DynamicTextChangedHandler TextChangedEvent; + event KeyPressedHandler KeyPressedEvent; + event KeyReleasedHandler KeyReleasedEvent; + + bool TextProcessingEnabled { get; set; } + + void SetText(string text, int cursorBegin); + void SetText(string text, int cursorBegin, int cursorEnd); + } +} |