
* Update SoftwareKeyboard to send KeyboardMode to UI * Update GTK UI to check text against KeyboardMode * Update Ava UI to check text against KeyboardMode * Restructure input validation * true when text is not empty * Add English validation text for SoftwareKeyboardMode * Add Chinese validation text for SoftwareKeyboardMode * Update base on feedback --------- Co-authored-by: TSR Berry <20988865+TSRBerry@users.noreply.github.com>
16 lines
425 B
C#
16 lines
425 B
C#
using Ryujinx.HLE.HOS.Applets.SoftwareKeyboard;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
{
|
|
public struct SoftwareKeyboardUiArgs
|
|
{
|
|
public KeyboardMode KeyboardMode;
|
|
public string HeaderText;
|
|
public string SubtitleText;
|
|
public string InitialText;
|
|
public string GuideText;
|
|
public string SubmitText;
|
|
public int StringLengthMin;
|
|
public int StringLengthMax;
|
|
}
|
|
} |