mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 10:39:01 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
23 lines
609 B
C#
23 lines
609 B
C#
using Ryujinx.HLE.Ui;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
/// <summary>
|
|
/// TODO
|
|
/// </summary>
|
|
internal class SoftwareKeyboardUiState
|
|
{
|
|
public string InputText = "";
|
|
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;
|
|
}
|
|
}
|