diff options
author | Ian C <ianc@noddybox.co.uk> | 2012-05-08 22:53:35 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2012-05-08 22:53:35 +0000 |
commit | 2f12dcf3e6e9c3f4ee91d04cf8176322f60f2b8d (patch) | |
tree | 486206acd6255b6ce9bea17b939128b5b39bb870 /Native/EmuKeyboardDesigner/OpsForm.cs | |
parent | 8c98cdabb836dcc48c6b379203399c5b29e38383 (diff) |
Added ops dialog to allow easier mass editing.
Diffstat (limited to 'Native/EmuKeyboardDesigner/OpsForm.cs')
-rw-r--r-- | Native/EmuKeyboardDesigner/OpsForm.cs | 29 |
1 files changed, 29 insertions, 0 deletions
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;}}
+ }
+}
|