109 lines
2.1 KiB
C#
109 lines
2.1 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
using BizHawk.Common.StringExtensions;
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
{
|
|
/// <summary>
|
|
/// A simple form that prompts the user for a single line of input
|
|
/// </summary>
|
|
public partial class InputPrompt : Form
|
|
{
|
|
public InputPrompt()
|
|
{
|
|
InitializeComponent();
|
|
StartLocation = new Point(-1, -1);
|
|
}
|
|
|
|
public enum InputType { Hex, Unsigned, Signed, Text }
|
|
|
|
public Point StartLocation { get; set; }
|
|
public InputType TextInputType { get; set; }
|
|
|
|
public string Message
|
|
{
|
|
get { return PromptLabel.Text; }
|
|
set { PromptLabel.Text = value ?? string.Empty; }
|
|
}
|
|
|
|
public string InitialValue
|
|
{
|
|
get { return PromptBox.Text; }
|
|
set { PromptBox.Text = value ?? string.Empty; }
|
|
}
|
|
|
|
public string PromptText
|
|
{
|
|
get { return PromptBox.Text ?? string.Empty; }
|
|
}
|
|
|
|
private void InputPrompt_Load(object sender, EventArgs e)
|
|
{
|
|
if (StartLocation.X > 0 && StartLocation.Y > 0)
|
|
{
|
|
Location = StartLocation;
|
|
}
|
|
}
|
|
|
|
private void Ok_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
|
|
private void Cancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
|
|
private void PromptBox_KeyPress(object sender, KeyPressEventArgs e)
|
|
{
|
|
switch (TextInputType)
|
|
{
|
|
default:
|
|
case InputType.Text:
|
|
break;
|
|
case InputType.Hex:
|
|
if (e.KeyChar == '\b' || e.KeyChar == 22 || e.KeyChar == 1 || e.KeyChar == 3)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!e.KeyChar.IsHex())
|
|
{
|
|
e.Handled = true;
|
|
}
|
|
|
|
break;
|
|
case InputType.Signed:
|
|
if (e.KeyChar == '\b' || e.KeyChar == 22 || e.KeyChar == 1 || e.KeyChar == 3)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!e.KeyChar.IsSigned())
|
|
{
|
|
e.Handled = true;
|
|
}
|
|
|
|
break;
|
|
case InputType.Unsigned:
|
|
if (e.KeyChar == '\b' || e.KeyChar == 22 || e.KeyChar == 1 || e.KeyChar == 3)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!e.KeyChar.IsUnsigned())
|
|
{
|
|
e.Handled = true;
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|