2020-08-03 03:30:58 +02:00
|
|
|
using Ryujinx.HLE.HOS.Applets;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE
|
|
|
|
{
|
|
|
|
public interface IHostUiHandler
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Displays an Input Dialog box to the user and blocks until text is entered.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="userText">Text that the user entered. Set to `null` on internal errors</param>
|
|
|
|
/// <returns>True when OK is pressed, False otherwise. Also returns True on internal errors</returns>
|
|
|
|
bool DisplayInputDialog(SoftwareKeyboardUiArgs args, out string userText);
|
2020-08-23 22:54:11 +02:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Displays a Message Dialog box to the user and blocks until it is closed.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>True when OK is pressed, False otherwise.</returns>
|
|
|
|
bool DisplayMessageDialog(string title, string message);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Displays a Message Dialog box specific to Controller Applet and blocks until it is closed.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>True when OK is pressed, False otherwise.</returns>
|
|
|
|
bool DisplayMessageDialog(ControllerAppletUiArgs args);
|
2020-08-03 03:30:58 +02:00
|
|
|
}
|
|
|
|
}
|