mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-04-26 02:22:51 +00:00
22 lines
619 B
C#
22 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;
|
|
}
|
|
}
|