aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs
blob: a95af67a87a08a686104b935f0e05e6b8151a8c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
    /// <summary>
    /// Identifies the initial position of the cursor displayed in the area.
    /// </summary>
    enum InitialCursorPosition : uint
    {
        /// <summary>
        /// Position the cursor at the beginning of the text
        /// </summary>
        Start,

        /// <summary>
        /// Position the cursor at the end of the text
        /// </summary>
        End,
    }
}