* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
16 lines
444 B
C#
16 lines
444 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);
|
|
}
|
|
}
|