mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 10:39:50 -06:00
23 lines
619 B
C#
23 lines
619 B
C#
using Ryujinx.HLE.UI;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
/// <summary>
|
|
/// TODO
|
|
/// </summary>
|
|
internal class SoftwareKeyboardUIState
|
|
{
|
|
public string InputText = string.Empty;
|
|
public int CursorBegin = 0;
|
|
public int CursorEnd = 0;
|
|
public bool AcceptPressed = false;
|
|
public bool CancelPressed = false;
|
|
public bool OverwriteMode = false;
|
|
public bool TypingEnabled = true;
|
|
public bool ControllerEnabled = true;
|
|
public int TextBoxBlinkCounter = 0;
|
|
|
|
public RenderingSurfaceInfo SurfaceInfo = null;
|
|
}
|
|
}
|