mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
16 lines
443 B
C#
16 lines
443 B
C#
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);
|
|
}
|
|
} |