summaryrefslogtreecommitdiff
path: root/Native/EmuKeyboardDesigner/OpsForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Native/EmuKeyboardDesigner/OpsForm.cs')
-rw-r--r--Native/EmuKeyboardDesigner/OpsForm.cs29
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;}}
+ }
+}