aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InitialCursorPosition.cs
blob: 727b6d27b1a1ca487ea8f34fc0413fabd72336f3 (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
    }
}