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..6e7b4c49 --- /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); + } +}
\ No newline at end of file |