From 2f12dcf3e6e9c3f4ee91d04cf8176322f60f2b8d Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 8 May 2012 22:53:35 +0000 Subject: Added ops dialog to allow easier mass editing. --- Native/EmuKeyboardDesigner/OpsForm.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Native/EmuKeyboardDesigner/OpsForm.cs (limited to 'Native/EmuKeyboardDesigner/OpsForm.cs') diff --git a/Native/EmuKeyboardDesigner/OpsForm.cs b/Native/EmuKeyboardDesigner/OpsForm.cs new file mode 100644 index 0000000..60d98a2 --- /dev/null +++ b/Native/EmuKeyboardDesigner/OpsForm.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace EmuKeyboardDesigner +{ + public partial class OpsForm : Form + { + public OpsForm() + { + InitializeComponent(); + } + + public int RemoveFront {get {return Convert.ToInt32(rmFrontUpDown.Value);}} + public int RemoveRear {get {return Convert.ToInt32(rmRearUpDown.Value);}} + public int AdjustX {get {return Convert.ToInt32(adjXUpDown.Value);}} + public int AdjustY {get {return Convert.ToInt32(adjYUpDown.Value);}} + public int AdjustWidth {get {return Convert.ToInt32(adjWidthUpDown.Value);}} + public int AdjustHeight {get {return Convert.ToInt32(adjHeightUpDown.Value);}} + + public string Prefix {get {return prefixTextBox.Text;}} + public string Suffix {get {return suffixTextBox.Text;}} + } +} -- cgit v1.2.3