InlineKeyboardState.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
  2. {
  3. /// <summary>
  4. /// Possible states for the software keyboard when running in inline mode.
  5. /// </summary>
  6. enum InlineKeyboardState : uint
  7. {
  8. /// <summary>
  9. /// The software keyboard has just been created or finalized and is uninitialized.
  10. /// </summary>
  11. Uninitialized = 0x0,
  12. /// <summary>
  13. /// The software keyboard is initialized, but it is not visible and not processing input.
  14. /// </summary>
  15. Initialized = 0x1,
  16. /// <summary>
  17. /// The software keyboard is transitioning to a visible state.
  18. /// </summary>
  19. Appearing = 0x2,
  20. /// <summary>
  21. /// The software keyboard is visible and receiving processing input.
  22. /// </summary>
  23. Shown = 0x3,
  24. /// <summary>
  25. /// software keyboard is transitioning to a hidden state because the user pressed either OK or Cancel.
  26. /// </summary>
  27. Disappearing = 0x4
  28. }
  29. }