From 5e8041b0d66b3f83daf3ce8eabc89c46440b7768 Mon Sep 17 00:00:00 2001
From: NanderTGA <65074195+NanderTGA@users.noreply.github.com>
Date: Fri, 20 Oct 2023 19:16:07 +0200
Subject: [PATCH 01/14] refactor: a lot
---
FunkeySelector/CustomFManager.cs | 4 +-
FunkeySelector/Form1.Designer.cs | 934 +++++++++---------
FunkeySelector/Form1.cs | 134 +--
FunkeySelector/Form1.resx | 2 +-
FunkeySelector/Form10.Designer.cs | 66 +-
FunkeySelector/Form10.cs | 66 +-
FunkeySelector/Form11.cs | 16 +-
FunkeySelector/Form12.cs | 18 +-
FunkeySelector/Form3.cs | 24 +-
FunkeySelector/Form4.cs | 24 +-
FunkeySelector/Form5.cs | 26 +-
FunkeySelector/Form6.cs | 32 +-
FunkeySelector/Form7.cs | 16 +-
FunkeySelector/Form8.cs | 24 +-
FunkeySelector/Form9.cs | 24 +-
FunkeySelector/FunkeySelector.csproj | 29 +-
...m2.designer.cs => FunkeysTown.Designer.cs} | 80 +-
FunkeySelector/{Form2.cs => FunkeysTown.cs} | 106 +-
.../{Form2.resx => FunkeysTown.resx} | 0
FunkeySelector/Program.cs | 2 +-
.../UserControls/CloseButton.Designer.cs | 70 ++
FunkeySelector/UserControls/CloseButton.cs | 38 +
FunkeySelector/UserControls/CloseButton.resx | 120 +++
.../UserControls/MinimizeButton.Designer.cs | 70 ++
FunkeySelector/UserControls/MinimizeButton.cs | 38 +
.../UserControls/MinimizeButton.resx | 120 +++
26 files changed, 1163 insertions(+), 920 deletions(-)
rename FunkeySelector/{Form2.designer.cs => FunkeysTown.Designer.cs} (91%)
rename FunkeySelector/{Form2.cs => FunkeysTown.cs} (57%)
rename FunkeySelector/{Form2.resx => FunkeysTown.resx} (100%)
create mode 100644 FunkeySelector/UserControls/CloseButton.Designer.cs
create mode 100644 FunkeySelector/UserControls/CloseButton.cs
create mode 100644 FunkeySelector/UserControls/CloseButton.resx
create mode 100644 FunkeySelector/UserControls/MinimizeButton.Designer.cs
create mode 100644 FunkeySelector/UserControls/MinimizeButton.cs
create mode 100644 FunkeySelector/UserControls/MinimizeButton.resx
diff --git a/FunkeySelector/CustomFManager.cs b/FunkeySelector/CustomFManager.cs
index f36c3c7..267eb93 100644
--- a/FunkeySelector/CustomFManager.cs
+++ b/FunkeySelector/CustomFManager.cs
@@ -9,9 +9,9 @@ namespace FunkeySelector
{
class CustomFManager
{
- public void setFunkey(string funkeyCodeNum) //This is the code to switch Funkeys, funkeyCodeNum is the code defined in funkeys.rdf.
+ public void SetFunkey(string funkeyCodeNum) //This is the code to switch Funkeys, funkeyCodeNum is the code defined in funkeys.rdf.
{
- using (StreamWriter writetext = new StreamWriter("customF.txt"))
+ using (StreamWriter writetext = new("customF.txt"))
{
writetext.Write("funkeyCodeNum=" + funkeyCodeNum); //Creates the customF.txt
}
diff --git a/FunkeySelector/Form1.Designer.cs b/FunkeySelector/Form1.Designer.cs
index 912dc82..54594e8 100644
--- a/FunkeySelector/Form1.Designer.cs
+++ b/FunkeySelector/Form1.Designer.cs
@@ -29,436 +29,410 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.button16 = new System.Windows.Forms.Button();
- this.button17 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
+ this.titleLabel = new System.Windows.Forms.Label();
+ this.FunkeysTownButton = new System.Windows.Forms.Button();
+ this.KelpyBasinButton = new System.Windows.Forms.Button();
+ this.MagmaGorgeButton = new System.Windows.Forms.Button();
+ this.LaputtaStationButton = new System.Windows.Forms.Button();
+ this.FunkikiIslandButton = new System.Windows.Forms.Button();
+ this.RoyaltonRacingComplexButton = new System.Windows.Forms.Button();
+ this.NightmareRiftButton = new System.Windows.Forms.Button();
+ this.DaydreamOasisButton = new System.Windows.Forms.Button();
+ this.HiddenRealmButton = new System.Windows.Forms.Button();
+ this.ParadoxGreenButton = new System.Windows.Forms.Button();
+ this.UBLabel = new System.Windows.Forms.Label();
+ this.UB = new System.Windows.Forms.Button();
+ this.UnusedFunkeysButton = new System.Windows.Forms.Button();
+ this.InsertCustomID = new System.Windows.Forms.Button();
+ this.CustomIDTextBox = new System.Windows.Forms.TextBox();
+ this.CustomFunkeysButton = new System.Windows.Forms.Button();
+ this.OptionsButton = new System.Windows.Forms.Button();
+ this.Series1Label = new System.Windows.Forms.Label();
+ this.Series2Label = new System.Windows.Forms.Label();
+ this.Series3Label = new System.Windows.Forms.Label();
+ this.Series4Label = new System.Windows.Forms.Label();
+ this.Series5Label = new System.Windows.Forms.Label();
+ this.OtherLabel = new System.Windows.Forms.Label();
+ this.closeButton1 = new FunkeySelector.CloseButton();
+ this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
this.SuspendLayout();
//
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(146, 18);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(435, 52);
- this.label2.TabIndex = 1;
- this.label2.Text = "FUNKEYSELECTORGUI";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(76, 167);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(174, 37);
- this.button1.TabIndex = 3;
- this.button1.Text = "FUNKEYSTOWN";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click_1);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button2.Location = new System.Drawing.Point(76, 248);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(174, 32);
- this.button2.TabIndex = 4;
- this.button2.Text = "KELPY BASIN";
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button3.Location = new System.Drawing.Point(76, 210);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(174, 32);
- this.button3.TabIndex = 5;
- this.button3.Text = "MAGMA GORGE";
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(74, 286);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(182, 31);
- this.button4.TabIndex = 6;
- this.button4.Text = "LAPUTTA STATION";
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(42, 359);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(245, 30);
- this.button5.TabIndex = 7;
- this.button5.Text = "FUNKIKI ISLAND";
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button6.Location = new System.Drawing.Point(33, 395);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(267, 31);
- this.button6.TabIndex = 8;
- this.button6.Text = "ROYALTON RACING COMPLEX";
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(293, 205);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(175, 31);
- this.button7.TabIndex = 9;
- this.button7.Text = "NIGHTMARE RIFT";
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(293, 167);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(175, 32);
- this.button8.TabIndex = 10;
- this.button8.Text = "DAYDREAM OASIS";
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button9.Location = new System.Drawing.Point(307, 298);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(151, 36);
- this.button9.TabIndex = 11;
- this.button9.Text = "HIDDEN REALM";
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(293, 391);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(175, 34);
- this.button10.TabIndex = 12;
- this.button10.Text = "PARADOX GREEN";
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button12.Location = new System.Drawing.Point(681, 18);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(26, 20);
- this.button12.TabIndex = 15;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- this.button12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button12_MouseDown);
- this.button12.MouseEnter += new System.EventHandler(this.button12_MouseEnter);
- this.button12.MouseLeave += new System.EventHandler(this.button12_MouseLeave);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(572, 328);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(45, 29);
- this.label5.TabIndex = 72;
- this.label5.Text = "U.B";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button11.Location = new System.Drawing.Point(568, 359);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 71;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(505, 177);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(177, 31);
- this.button13.TabIndex = 73;
- this.button13.Text = "UNUSED FUNKEYS";
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.Button13_Click);
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(486, 282);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(208, 52);
- this.button14.TabIndex = 74;
- this.button14.Text = "INSERT CUSTOM ID";
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.Button14_Click);
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(505, 256);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(177, 20);
- this.textBox1.TabIndex = 75;
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(486, 214);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(208, 36);
- this.button16.TabIndex = 77;
- this.button16.Text = "CUSTOM FUNKEYS";
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = global::FunkeySelector.Properties.Resources._679;
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button17.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.Color.Transparent;
- this.button17.Location = new System.Drawing.Point(668, 44);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(39, 44);
- this.button17.TabIndex = 78;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- this.button17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button17_MouseDown);
- this.button17.MouseEnter += new System.EventHandler(this.button17_MouseEnter);
- this.button17.MouseLeave += new System.EventHandler(this.button17_MouseLeave);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button15.Location = new System.Drawing.Point(642, 16);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(26, 22);
- this.button15.TabIndex = 79;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- this.button15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button15_MouseDown);
- this.button15.MouseEnter += new System.EventHandler(this.button15_MouseEnter);
- this.button15.MouseLeave += new System.EventHandler(this.button15_MouseLeave);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(113, 137);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(104, 27);
- this.label6.TabIndex = 80;
- this.label6.Text = "SERIES 1";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(110, 330);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(104, 27);
- this.label7.TabIndex = 81;
- this.label7.Text = "SERIES 2";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(332, 138);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(104, 27);
- this.label8.TabIndex = 82;
- this.label8.Text = "SERIES 3";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(332, 265);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 27);
- this.label9.TabIndex = 83;
- this.label9.Text = "SERIES 4";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label10.ForeColor = System.Drawing.SystemColors.Control;
- this.label10.Location = new System.Drawing.Point(332, 353);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(104, 27);
- this.label10.TabIndex = 84;
- this.label10.Text = "SERIES 5";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.ForeColor = System.Drawing.SystemColors.Control;
- this.label11.Location = new System.Drawing.Point(551, 141);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(79, 27);
- this.label11.TabIndex = 85;
- this.label11.Text = "OTHER";
+ // titleLabel
+ //
+ this.titleLabel.AutoSize = true;
+ this.titleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.titleLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.titleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.titleLabel.Location = new System.Drawing.Point(146, 18);
+ this.titleLabel.Name = "titleLabel";
+ this.titleLabel.Size = new System.Drawing.Size(435, 52);
+ this.titleLabel.TabIndex = 1;
+ this.titleLabel.Text = "FUNKEYSELECTORGUI";
+ //
+ // FunkeysTownButton
+ //
+ this.FunkeysTownButton.BackColor = System.Drawing.Color.Transparent;
+ this.FunkeysTownButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.FunkeysTownButton.FlatAppearance.BorderSize = 0;
+ this.FunkeysTownButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FunkeysTownButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkeysTownButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkeysTownButton.Location = new System.Drawing.Point(76, 167);
+ this.FunkeysTownButton.Name = "FunkeysTownButton";
+ this.FunkeysTownButton.Size = new System.Drawing.Size(174, 37);
+ this.FunkeysTownButton.TabIndex = 3;
+ this.FunkeysTownButton.Text = "FUNKEYSTOWN";
+ this.FunkeysTownButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FunkeysTownButton.UseVisualStyleBackColor = false;
+ this.FunkeysTownButton.Click += new System.EventHandler(this.FunkeysTown_Click);
+ //
+ // KelpyBasinButton
+ //
+ this.KelpyBasinButton.BackColor = System.Drawing.Color.Transparent;
+ this.KelpyBasinButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.KelpyBasinButton.FlatAppearance.BorderSize = 0;
+ this.KelpyBasinButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.KelpyBasinButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.KelpyBasinButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.KelpyBasinButton.Location = new System.Drawing.Point(76, 248);
+ this.KelpyBasinButton.Name = "KelpyBasinButton";
+ this.KelpyBasinButton.Size = new System.Drawing.Size(174, 32);
+ this.KelpyBasinButton.TabIndex = 4;
+ this.KelpyBasinButton.Text = "KELPY BASIN";
+ this.KelpyBasinButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.KelpyBasinButton.UseVisualStyleBackColor = false;
+ this.KelpyBasinButton.Click += new System.EventHandler(this.KelpyBasin_Click);
+ //
+ // MagmaGorgeButton
+ //
+ this.MagmaGorgeButton.BackColor = System.Drawing.Color.Transparent;
+ this.MagmaGorgeButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.MagmaGorgeButton.FlatAppearance.BorderSize = 0;
+ this.MagmaGorgeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MagmaGorgeButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MagmaGorgeButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MagmaGorgeButton.Location = new System.Drawing.Point(76, 210);
+ this.MagmaGorgeButton.Name = "MagmaGorgeButton";
+ this.MagmaGorgeButton.Size = new System.Drawing.Size(174, 32);
+ this.MagmaGorgeButton.TabIndex = 5;
+ this.MagmaGorgeButton.Text = "MAGMA GORGE";
+ this.MagmaGorgeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MagmaGorgeButton.UseVisualStyleBackColor = false;
+ this.MagmaGorgeButton.Click += new System.EventHandler(this.MagmaGorge_Click);
+ //
+ // LaputtaStationButton
+ //
+ this.LaputtaStationButton.BackColor = System.Drawing.Color.Transparent;
+ this.LaputtaStationButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.LaputtaStationButton.FlatAppearance.BorderSize = 0;
+ this.LaputtaStationButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LaputtaStationButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LaputtaStationButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LaputtaStationButton.Location = new System.Drawing.Point(74, 286);
+ this.LaputtaStationButton.Name = "LaputtaStationButton";
+ this.LaputtaStationButton.Size = new System.Drawing.Size(182, 31);
+ this.LaputtaStationButton.TabIndex = 6;
+ this.LaputtaStationButton.Text = "LAPUTTA STATION";
+ this.LaputtaStationButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LaputtaStationButton.UseVisualStyleBackColor = false;
+ this.LaputtaStationButton.Click += new System.EventHandler(this.LaputtaStation_Click);
+ //
+ // FunkikiIslandButton
+ //
+ this.FunkikiIslandButton.BackColor = System.Drawing.Color.Transparent;
+ this.FunkikiIslandButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.FunkikiIslandButton.FlatAppearance.BorderSize = 0;
+ this.FunkikiIslandButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FunkikiIslandButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkikiIslandButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkikiIslandButton.Location = new System.Drawing.Point(42, 359);
+ this.FunkikiIslandButton.Name = "FunkikiIslandButton";
+ this.FunkikiIslandButton.Size = new System.Drawing.Size(245, 30);
+ this.FunkikiIslandButton.TabIndex = 7;
+ this.FunkikiIslandButton.Text = "FUNKIKI ISLAND";
+ this.FunkikiIslandButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FunkikiIslandButton.UseVisualStyleBackColor = false;
+ this.FunkikiIslandButton.Click += new System.EventHandler(this.FunkikiIsland_Click);
+ //
+ // RoyaltonRacingComplexButton
+ //
+ this.RoyaltonRacingComplexButton.BackColor = System.Drawing.Color.Transparent;
+ this.RoyaltonRacingComplexButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.RoyaltonRacingComplexButton.FlatAppearance.BorderSize = 0;
+ this.RoyaltonRacingComplexButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RoyaltonRacingComplexButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RoyaltonRacingComplexButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RoyaltonRacingComplexButton.Location = new System.Drawing.Point(33, 395);
+ this.RoyaltonRacingComplexButton.Name = "RoyaltonRacingComplexButton";
+ this.RoyaltonRacingComplexButton.Size = new System.Drawing.Size(267, 31);
+ this.RoyaltonRacingComplexButton.TabIndex = 8;
+ this.RoyaltonRacingComplexButton.Text = "ROYALTON RACING COMPLEX";
+ this.RoyaltonRacingComplexButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RoyaltonRacingComplexButton.UseVisualStyleBackColor = false;
+ this.RoyaltonRacingComplexButton.Click += new System.EventHandler(this.RoyaltonRacingComplex_Click);
+ //
+ // NightmareRiftButton
+ //
+ this.NightmareRiftButton.BackColor = System.Drawing.Color.Transparent;
+ this.NightmareRiftButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.NightmareRiftButton.FlatAppearance.BorderSize = 0;
+ this.NightmareRiftButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NightmareRiftButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NightmareRiftButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NightmareRiftButton.Location = new System.Drawing.Point(293, 205);
+ this.NightmareRiftButton.Name = "NightmareRiftButton";
+ this.NightmareRiftButton.Size = new System.Drawing.Size(175, 31);
+ this.NightmareRiftButton.TabIndex = 9;
+ this.NightmareRiftButton.Text = "NIGHTMARE RIFT";
+ this.NightmareRiftButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NightmareRiftButton.UseVisualStyleBackColor = false;
+ this.NightmareRiftButton.Click += new System.EventHandler(this.NightmareRift_Click);
+ //
+ // DaydreamOasisButton
+ //
+ this.DaydreamOasisButton.BackColor = System.Drawing.Color.Transparent;
+ this.DaydreamOasisButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.DaydreamOasisButton.FlatAppearance.BorderSize = 0;
+ this.DaydreamOasisButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DaydreamOasisButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DaydreamOasisButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DaydreamOasisButton.Location = new System.Drawing.Point(293, 167);
+ this.DaydreamOasisButton.Name = "DaydreamOasisButton";
+ this.DaydreamOasisButton.Size = new System.Drawing.Size(175, 32);
+ this.DaydreamOasisButton.TabIndex = 10;
+ this.DaydreamOasisButton.Text = "DAYDREAM OASIS";
+ this.DaydreamOasisButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DaydreamOasisButton.UseVisualStyleBackColor = false;
+ this.DaydreamOasisButton.Click += new System.EventHandler(this.DaydreamOasis_Click);
+ //
+ // HiddenRealmButton
+ //
+ this.HiddenRealmButton.BackColor = System.Drawing.Color.Transparent;
+ this.HiddenRealmButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.HiddenRealmButton.FlatAppearance.BorderSize = 0;
+ this.HiddenRealmButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HiddenRealmButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HiddenRealmButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.HiddenRealmButton.Location = new System.Drawing.Point(307, 298);
+ this.HiddenRealmButton.Name = "HiddenRealmButton";
+ this.HiddenRealmButton.Size = new System.Drawing.Size(151, 36);
+ this.HiddenRealmButton.TabIndex = 11;
+ this.HiddenRealmButton.Text = "HIDDEN REALM";
+ this.HiddenRealmButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HiddenRealmButton.UseVisualStyleBackColor = false;
+ this.HiddenRealmButton.Click += new System.EventHandler(this.HiddenRealm_Click);
+ //
+ // ParadoxGreenButton
+ //
+ this.ParadoxGreenButton.BackColor = System.Drawing.Color.Transparent;
+ this.ParadoxGreenButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.ParadoxGreenButton.FlatAppearance.BorderSize = 0;
+ this.ParadoxGreenButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ParadoxGreenButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ParadoxGreenButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.ParadoxGreenButton.Location = new System.Drawing.Point(293, 391);
+ this.ParadoxGreenButton.Name = "ParadoxGreenButton";
+ this.ParadoxGreenButton.Size = new System.Drawing.Size(175, 34);
+ this.ParadoxGreenButton.TabIndex = 12;
+ this.ParadoxGreenButton.Text = "PARADOX GREEN";
+ this.ParadoxGreenButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ParadoxGreenButton.UseVisualStyleBackColor = false;
+ this.ParadoxGreenButton.Click += new System.EventHandler(this.ParadoxGreen_Click);
+ //
+ // UBLabel
+ //
+ this.UBLabel.AutoSize = true;
+ this.UBLabel.BackColor = System.Drawing.Color.Transparent;
+ this.UBLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UBLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.UBLabel.Location = new System.Drawing.Point(572, 328);
+ this.UBLabel.Name = "UBLabel";
+ this.UBLabel.Size = new System.Drawing.Size(45, 29);
+ this.UBLabel.TabIndex = 72;
+ this.UBLabel.Text = "U.B";
+ //
+ // UB
+ //
+ this.UB.BackColor = System.Drawing.Color.Transparent;
+ this.UB.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("UB.BackgroundImage")));
+ this.UB.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.UB.FlatAppearance.BorderSize = 0;
+ this.UB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.UB.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UB.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.UB.Location = new System.Drawing.Point(568, 359);
+ this.UB.Name = "UB";
+ this.UB.Size = new System.Drawing.Size(50, 63);
+ this.UB.TabIndex = 71;
+ this.UB.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.UB.UseVisualStyleBackColor = false;
+ this.UB.Click += new System.EventHandler(this.UB_Click);
+ //
+ // UnusedFunkeysButton
+ //
+ this.UnusedFunkeysButton.BackColor = System.Drawing.Color.Transparent;
+ this.UnusedFunkeysButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.UnusedFunkeysButton.FlatAppearance.BorderSize = 0;
+ this.UnusedFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.UnusedFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UnusedFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.UnusedFunkeysButton.Location = new System.Drawing.Point(505, 177);
+ this.UnusedFunkeysButton.Name = "UnusedFunkeysButton";
+ this.UnusedFunkeysButton.Size = new System.Drawing.Size(177, 31);
+ this.UnusedFunkeysButton.TabIndex = 73;
+ this.UnusedFunkeysButton.Text = "UNUSED FUNKEYS";
+ this.UnusedFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.UnusedFunkeysButton.UseVisualStyleBackColor = false;
+ this.UnusedFunkeysButton.Click += new System.EventHandler(this.UnusedFunkeys_Click);
+ //
+ // InsertCustomID
+ //
+ this.InsertCustomID.BackColor = System.Drawing.Color.Transparent;
+ this.InsertCustomID.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.InsertCustomID.FlatAppearance.BorderSize = 0;
+ this.InsertCustomID.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.InsertCustomID.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.InsertCustomID.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.InsertCustomID.Location = new System.Drawing.Point(486, 282);
+ this.InsertCustomID.Name = "InsertCustomID";
+ this.InsertCustomID.Size = new System.Drawing.Size(208, 52);
+ this.InsertCustomID.TabIndex = 74;
+ this.InsertCustomID.Text = "INSERT CUSTOM ID";
+ this.InsertCustomID.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.InsertCustomID.UseVisualStyleBackColor = false;
+ this.InsertCustomID.Click += new System.EventHandler(this.InsertCustomID_Click);
+ //
+ // CustomIDTextBox
+ //
+ this.CustomIDTextBox.Location = new System.Drawing.Point(505, 256);
+ this.CustomIDTextBox.Name = "CustomIDTextBox";
+ this.CustomIDTextBox.Size = new System.Drawing.Size(177, 20);
+ this.CustomIDTextBox.TabIndex = 75;
+ //
+ // CustomFunkeysButton
+ //
+ this.CustomFunkeysButton.BackColor = System.Drawing.Color.Transparent;
+ this.CustomFunkeysButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.CustomFunkeysButton.FlatAppearance.BorderSize = 0;
+ this.CustomFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.CustomFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.CustomFunkeysButton.Location = new System.Drawing.Point(486, 214);
+ this.CustomFunkeysButton.Name = "CustomFunkeysButton";
+ this.CustomFunkeysButton.Size = new System.Drawing.Size(208, 36);
+ this.CustomFunkeysButton.TabIndex = 77;
+ this.CustomFunkeysButton.Text = "CUSTOM FUNKEYS";
+ this.CustomFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.CustomFunkeysButton.UseVisualStyleBackColor = false;
+ this.CustomFunkeysButton.Click += new System.EventHandler(this.CustomFunkeys_Click);
+ //
+ // OptionsButton
+ //
+ this.OptionsButton.BackColor = System.Drawing.Color.Transparent;
+ this.OptionsButton.BackgroundImage = global::FunkeySelector.Properties.Resources._679;
+ this.OptionsButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
+ this.OptionsButton.FlatAppearance.BorderSize = 0;
+ this.OptionsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
+ this.OptionsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
+ this.OptionsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.OptionsButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.OptionsButton.ForeColor = System.Drawing.Color.Transparent;
+ this.OptionsButton.Location = new System.Drawing.Point(668, 44);
+ this.OptionsButton.Name = "OptionsButton";
+ this.OptionsButton.Size = new System.Drawing.Size(39, 44);
+ this.OptionsButton.TabIndex = 78;
+ this.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.OptionsButton.UseVisualStyleBackColor = false;
+ this.OptionsButton.Click += new System.EventHandler(this.OptionsButton_Click);
+ this.OptionsButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OptionsButton_MouseDown);
+ this.OptionsButton.MouseEnter += new System.EventHandler(this.OptionsButton_MouseEnter);
+ this.OptionsButton.MouseLeave += new System.EventHandler(this.OptionsButton_MouseLeave);
+ //
+ // Series1Label
+ //
+ this.Series1Label.AutoSize = true;
+ this.Series1Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series1Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series1Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series1Label.Location = new System.Drawing.Point(113, 137);
+ this.Series1Label.Name = "Series1Label";
+ this.Series1Label.Size = new System.Drawing.Size(104, 27);
+ this.Series1Label.TabIndex = 80;
+ this.Series1Label.Text = "SERIES 1";
+ //
+ // Series2Label
+ //
+ this.Series2Label.AutoSize = true;
+ this.Series2Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series2Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series2Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series2Label.Location = new System.Drawing.Point(110, 330);
+ this.Series2Label.Name = "Series2Label";
+ this.Series2Label.Size = new System.Drawing.Size(104, 27);
+ this.Series2Label.TabIndex = 81;
+ this.Series2Label.Text = "SERIES 2";
+ //
+ // Series3Label
+ //
+ this.Series3Label.AutoSize = true;
+ this.Series3Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series3Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series3Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series3Label.Location = new System.Drawing.Point(332, 138);
+ this.Series3Label.Name = "Series3Label";
+ this.Series3Label.Size = new System.Drawing.Size(104, 27);
+ this.Series3Label.TabIndex = 82;
+ this.Series3Label.Text = "SERIES 3";
+ //
+ // Series4Label
+ //
+ this.Series4Label.AutoSize = true;
+ this.Series4Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series4Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series4Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series4Label.Location = new System.Drawing.Point(332, 265);
+ this.Series4Label.Name = "Series4Label";
+ this.Series4Label.Size = new System.Drawing.Size(104, 27);
+ this.Series4Label.TabIndex = 83;
+ this.Series4Label.Text = "SERIES 4";
+ //
+ // Series5Label
+ //
+ this.Series5Label.AutoSize = true;
+ this.Series5Label.BackColor = System.Drawing.Color.Transparent;
+ this.Series5Label.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Series5Label.ForeColor = System.Drawing.SystemColors.Control;
+ this.Series5Label.Location = new System.Drawing.Point(332, 353);
+ this.Series5Label.Name = "Series5Label";
+ this.Series5Label.Size = new System.Drawing.Size(104, 27);
+ this.Series5Label.TabIndex = 84;
+ this.Series5Label.Text = "SERIES 5";
+ //
+ // OtherLabel
+ //
+ this.OtherLabel.AutoSize = true;
+ this.OtherLabel.BackColor = System.Drawing.Color.Transparent;
+ this.OtherLabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.OtherLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.OtherLabel.Location = new System.Drawing.Point(551, 141);
+ this.OtherLabel.Name = "OtherLabel";
+ this.OtherLabel.Size = new System.Drawing.Size(79, 27);
+ this.OtherLabel.TabIndex = 85;
+ this.OtherLabel.Text = "OTHER";
+ //
+ // closeButton1
+ //
+ this.closeButton1.Location = new System.Drawing.Point(681, 18);
+ this.closeButton1.Name = "closeButton1";
+ this.closeButton1.Size = new System.Drawing.Size(26, 20);
+ this.closeButton1.TabIndex = 86;
+ //
+ // minimizeButton1
+ //
+ this.minimizeButton1.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton1.Name = "minimizeButton1";
+ this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton1.TabIndex = 87;
//
// Form1
//
@@ -468,32 +442,32 @@ private void InitializeComponent()
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.ClientSize = new System.Drawing.Size(727, 563);
- this.Controls.Add(this.label11);
- this.Controls.Add(this.label10);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
+ this.Controls.Add(this.minimizeButton1);
+ this.Controls.Add(this.closeButton1);
+ this.Controls.Add(this.OtherLabel);
+ this.Controls.Add(this.Series5Label);
+ this.Controls.Add(this.Series4Label);
+ this.Controls.Add(this.Series3Label);
+ this.Controls.Add(this.Series2Label);
+ this.Controls.Add(this.Series1Label);
+ this.Controls.Add(this.OptionsButton);
+ this.Controls.Add(this.CustomFunkeysButton);
+ this.Controls.Add(this.CustomIDTextBox);
+ this.Controls.Add(this.InsertCustomID);
+ this.Controls.Add(this.UnusedFunkeysButton);
+ this.Controls.Add(this.UBLabel);
+ this.Controls.Add(this.UB);
+ this.Controls.Add(this.ParadoxGreenButton);
+ this.Controls.Add(this.HiddenRealmButton);
+ this.Controls.Add(this.DaydreamOasisButton);
+ this.Controls.Add(this.NightmareRiftButton);
+ this.Controls.Add(this.RoyaltonRacingComplexButton);
+ this.Controls.Add(this.FunkikiIslandButton);
+ this.Controls.Add(this.LaputtaStationButton);
+ this.Controls.Add(this.MagmaGorgeButton);
+ this.Controls.Add(this.KelpyBasinButton);
+ this.Controls.Add(this.FunkeysTownButton);
+ this.Controls.Add(this.titleLabel);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
@@ -506,32 +480,32 @@ private void InitializeComponent()
}
#endregion
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
+ private System.Windows.Forms.Label titleLabel;
+ private System.Windows.Forms.Button FunkeysTownButton;
+ private System.Windows.Forms.Button KelpyBasinButton;
+ private System.Windows.Forms.Button MagmaGorgeButton;
+ private System.Windows.Forms.Button LaputtaStationButton;
+ private System.Windows.Forms.Button FunkikiIslandButton;
+ private System.Windows.Forms.Button RoyaltonRacingComplexButton;
+ private System.Windows.Forms.Button NightmareRiftButton;
+ private System.Windows.Forms.Button DaydreamOasisButton;
+ private System.Windows.Forms.Button HiddenRealmButton;
+ private System.Windows.Forms.Button ParadoxGreenButton;
+ private System.Windows.Forms.Label UBLabel;
+ private System.Windows.Forms.Button UB;
+ private System.Windows.Forms.Button UnusedFunkeysButton;
+ private System.Windows.Forms.Button InsertCustomID;
+ private System.Windows.Forms.TextBox CustomIDTextBox;
+ private System.Windows.Forms.Button CustomFunkeysButton;
+ private System.Windows.Forms.Button OptionsButton;
+ private System.Windows.Forms.Label Series1Label;
+ private System.Windows.Forms.Label Series2Label;
+ private System.Windows.Forms.Label Series3Label;
+ private System.Windows.Forms.Label Series4Label;
+ private System.Windows.Forms.Label Series5Label;
+ private System.Windows.Forms.Label OtherLabel;
+ private CloseButton closeButton1;
+ private UserControls.MinimizeButton minimizeButton1;
}
}
diff --git a/FunkeySelector/Form1.cs b/FunkeySelector/Form1.cs
index 4c72c71..a271941 100644
--- a/FunkeySelector/Form1.cs
+++ b/FunkeySelector/Form1.cs
@@ -20,7 +20,7 @@ public partial class Form1 : Form
//Initial Setups
//
- CustomFManager customF = new CustomFManager(); //Sets the CustomFManager to customf.
+ CustomFManager customF = new(); //Sets the CustomFManager to customf.
bool firstStart = true;
public Form1() //When the form is opened.
@@ -60,7 +60,7 @@ public Form1() //When the form is opened.
{
if (Properties.Settings.Default.wineCompat == false) //If wine compatibility is on, it won't check as well, as there's no need to check and prompt for wine compatibility.
{
- if (checkMachineType() == true) //Calls the Wine checker
+ if (CheckMachineType() == true) //Calls the Wine checker
{
if (MessageBox.Show("FunkeySelectorGUI has detected it is running from Wine. If you want to enable Wine compatibility tweaks, which fixes the selection of Funkeys, click yes.", "Wine detected!", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
@@ -87,7 +87,7 @@ protected override void WndProc(ref Message m) //Allows the window to be dragged
base.WndProc(ref m);
}
- public static bool checkMachineType() //Checks if FSGUI is running from Wine or Windows.
+ public static bool CheckMachineType() //Checks if FSGUI is running from Wine or Windows.
{
var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Wine\"); //Checks if Wine is detected using a registry key that usually is only used on Wine.
if (key == null)
@@ -102,14 +102,10 @@ protected override void WndProc(ref Message m) //Allows the window to be dragged
static string CalculateMD5(string filename) //Generates the MD5 hash of the main.swf.
{
- using (var md5 = MD5.Create())
- {
- using (var stream = File.OpenRead(filename)) //Opens the main.swf.
- {
- var hash = md5.ComputeHash(stream); //Computes the MD5 hash of the swf.
- return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant(); //Converts the hash to a readable string to compare.
- }
- }
+ using var md5 = MD5.Create();
+ using var stream = File.OpenRead(filename); //Opens the main.swf.
+ var hash = md5.ComputeHash(stream); //Computes the MD5 hash of the swf.
+ return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant(); //Converts the hash to a readable string to compare.
}
//
@@ -121,23 +117,15 @@ static string CalculateMD5(string filename) //Generates the MD5 hash of the main
// Most of these just hide this form and shows another one.
//
- //Exit
- private void button1_Click(object sender, EventArgs e)
+ private void FunkeysTown_Click(object sender, EventArgs e)
{
- Application.Exit();
- }
-
- //Funkeystown
- private void button1_Click_1(object sender, EventArgs e)
- {
- Form2 funktown = new Form2();
+ FunkeysTown funktown = new FunkeysTown();
this.Hide();
funktown.StartPosition = FormStartPosition.CenterParent;
funktown.ShowDialog(this);
}
- //Kelpy Basin
- private void button2_Click(object sender, EventArgs e)
+ private void KelpyBasin_Click(object sender, EventArgs e)
{
Form3 kelp = new Form3();
this.Hide();
@@ -145,14 +133,7 @@ private void button2_Click(object sender, EventArgs e)
kelp.ShowDialog(this);
}
- //Exit (Again)
- private void button12_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Magma Gorge
- private void button3_Click(object sender, EventArgs e)
+ private void MagmaGorge_Click(object sender, EventArgs e)
{
Form4 magma = new Form4();
this.Hide();
@@ -160,8 +141,7 @@ private void button3_Click(object sender, EventArgs e)
magma.ShowDialog(this);
}
- //Laputta Station
- private void button4_Click(object sender, EventArgs e)
+ private void LaputtaStation_Click(object sender, EventArgs e)
{
Form5 laput = new Form5();
this.Hide();
@@ -169,8 +149,7 @@ private void button4_Click(object sender, EventArgs e)
laput.ShowDialog(this);
}
- //Funkiki Island
- private void button5_Click(object sender, EventArgs e)
+ private void FunkikiIsland_Click(object sender, EventArgs e)
{
Form6 funkiki = new Form6();
this.Hide();
@@ -179,8 +158,7 @@ private void button5_Click(object sender, EventArgs e)
}
- //Royalton Racing Complex
- private void button6_Click(object sender, EventArgs e)
+ private void RoyaltonRacingComplex_Click(object sender, EventArgs e)
{
Form7 rrc = new Form7();
this.Hide();
@@ -188,8 +166,7 @@ private void button6_Click(object sender, EventArgs e)
rrc.ShowDialog(this);
}
- //Nightmare Rift
- private void button7_Click(object sender, EventArgs e)
+ private void NightmareRift_Click(object sender, EventArgs e)
{
Form8 nightmare = new Form8();
this.Hide();
@@ -197,8 +174,7 @@ private void button7_Click(object sender, EventArgs e)
nightmare.ShowDialog(this);
}
- //Daydream Oasis
- private void button8_Click(object sender, EventArgs e)
+ private void DaydreamOasis_Click(object sender, EventArgs e)
{
Form9 daydream = new Form9();
this.Hide();
@@ -206,8 +182,7 @@ private void button8_Click(object sender, EventArgs e)
daydream.ShowDialog(this);
}
- //Hidden Realm
- private void button9_Click(object sender, EventArgs e)
+ private void HiddenRealm_Click(object sender, EventArgs e)
{
Form10 hrf = new Form10();
this.Hide();
@@ -215,8 +190,7 @@ private void button9_Click(object sender, EventArgs e)
hrf.ShowDialog(this);
}
- //Paradox Green
- private void button10_Click(object sender, EventArgs e)
+ private void ParadoxGreen_Click(object sender, EventArgs e)
{
Form11 paradox = new Form11();
this.Hide();
@@ -224,14 +198,12 @@ private void button10_Click(object sender, EventArgs e)
paradox.ShowDialog(this);
}
- //U.B.
- private void button11_Click(object sender, EventArgs e)
+ private void UB_Click(object sender, EventArgs e)
{
- customF.setFunkey("FFFFFFF0");
+ customF.SetFunkey("FFFFFFF0");
}
- //Unused Funkeys
- private void Button13_Click(object sender, EventArgs e)
+ private void UnusedFunkeys_Click(object sender, EventArgs e)
{
Form12 unused = new Form12();
this.Hide();
@@ -239,14 +211,12 @@ private void Button13_Click(object sender, EventArgs e)
unused.ShowDialog(this);
}
- //Insert Custom ID
- private void Button14_Click(object sender, EventArgs e)
+ private void InsertCustomID_Click(object sender, EventArgs e)
{
- customF.setFunkey(textBox1.Text); //Sets customF to the contents of textBox1.
+ customF.SetFunkey(CustomIDTextBox.Text);
}
- //Custom Funkeys
- private void button16_Click(object sender, EventArgs e)
+ private void CustomFunkeys_Click(object sender, EventArgs e)
{
Form13 customf = new Form13();
this.Hide();
@@ -254,16 +224,14 @@ private void button16_Click(object sender, EventArgs e)
customf.ShowDialog(this);
}
- //Options
- private void button17_Click(object sender, EventArgs e)
+ private void OptionsButton_Click(object sender, EventArgs e)
{
Form14 options = new Form14();
options.StartPosition = FormStartPosition.CenterParent;
options.ShowDialog();
}
- //Minimize
- private void button15_Click(object sender, EventArgs e)
+ private void MinimizeButton_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
@@ -272,58 +240,20 @@ private void button15_Click(object sender, EventArgs e)
//End of Button Clicks
//
- //
- //Button Image Swaps
- //
-
//Options
- private void button17_MouseEnter(object sender, EventArgs e)
- {
- button17.BackgroundImage = Properties.Resources._681;
- }
-
- private void button17_MouseLeave(object sender, EventArgs e)
+ private void OptionsButton_MouseEnter(object sender, EventArgs e)
{
- button17.BackgroundImage = Properties.Resources._679;
+ OptionsButton.BackgroundImage = Properties.Resources._681;
}
- private void button17_MouseDown(object sender, MouseEventArgs e)
+ private void OptionsButton_MouseLeave(object sender, EventArgs e)
{
- button17.BackgroundImage = Properties.Resources._683;
+ OptionsButton.BackgroundImage = Properties.Resources._679;
}
- //Minimize
- private void button15_MouseLeave(object sender, EventArgs e)
+ private void OptionsButton_MouseDown(object sender, MouseEventArgs e)
{
- button15.BackgroundImage = Properties.Resources._150;
+ OptionsButton.BackgroundImage = Properties.Resources._683;
}
-
- private void button15_MouseEnter(object sender, EventArgs e)
- {
- button15.BackgroundImage = Properties.Resources._154;
- }
- private void button15_MouseDown(object sender, MouseEventArgs e)
- {
- button15.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button12_MouseLeave(object sender, EventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._246;
- }
-
- private void button12_MouseEnter(object sender, EventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._248;
- }
- private void button12_MouseDown(object sender, MouseEventArgs e)
- {
- button12.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
}
}
\ No newline at end of file
diff --git a/FunkeySelector/Form1.resx b/FunkeySelector/Form1.resx
index e64574c..5120a5d 100644
--- a/FunkeySelector/Form1.resx
+++ b/FunkeySelector/Form1.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEONJREFUaEPtWWlUVFe25ke/7pX1Xidp5znOY4JGkzhH46wIKoMgMwIFFHMxj8VY
diff --git a/FunkeySelector/Form10.Designer.cs b/FunkeySelector/Form10.Designer.cs
index 7a1bd34..e93818b 100644
--- a/FunkeySelector/Form10.Designer.cs
+++ b/FunkeySelector/Form10.Designer.cs
@@ -51,12 +51,12 @@ private void InitializeComponent()
this.button14 = new System.Windows.Forms.Button();
this.button15 = new System.Windows.Forms.Button();
this.button16 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.button17 = new System.Windows.Forms.Button();
this.button18 = new System.Windows.Forms.Button();
this.button19 = new System.Windows.Forms.Button();
+ this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton1 = new FunkeySelector.CloseButton();
this.SuspendLayout();
//
// label5
@@ -403,46 +403,6 @@ private void InitializeComponent()
this.button16.UseVisualStyleBackColor = false;
this.button16.Click += new System.EventHandler(this.button16_Click);
//
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 97;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 96;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
// label7
//
this.label7.AutoSize = true;
@@ -506,6 +466,20 @@ private void InitializeComponent()
this.button19.UseVisualStyleBackColor = false;
this.button19.Click += new System.EventHandler(this.button19_Click);
//
+ // minimizeButton1
+ //
+ this.minimizeButton1.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton1.Name = "minimizeButton1";
+ this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton1.TabIndex = 102;
+ //
+ // closeButton1
+ //
+ this.closeButton1.Location = new System.Drawing.Point(680, 17);
+ this.closeButton1.Name = "closeButton1";
+ this.closeButton1.Size = new System.Drawing.Size(26, 20);
+ this.closeButton1.TabIndex = 103;
+ //
// Form10
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -513,12 +487,12 @@ private void InitializeComponent()
this.BackColor = System.Drawing.Color.Gold;
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton1);
+ this.Controls.Add(this.minimizeButton1);
this.Controls.Add(this.label7);
this.Controls.Add(this.button17);
this.Controls.Add(this.button18);
this.Controls.Add(this.button19);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
this.Controls.Add(this.label6);
this.Controls.Add(this.button14);
this.Controls.Add(this.button15);
@@ -575,11 +549,11 @@ private void InitializeComponent()
private System.Windows.Forms.Button button14;
private System.Windows.Forms.Button button15;
private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Button button17;
private System.Windows.Forms.Button button18;
private System.Windows.Forms.Button button19;
+ private UserControls.MinimizeButton minimizeButton1;
+ private CloseButton closeButton1;
}
}
\ No newline at end of file
diff --git a/FunkeySelector/Form10.cs b/FunkeySelector/Form10.cs
index 0a9c9a9..911e7c3 100644
--- a/FunkeySelector/Form10.cs
+++ b/FunkeySelector/Form10.cs
@@ -59,91 +59,91 @@ private void button1_Click(object sender, EventArgs e)
//Singe
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000102");
+ customF.SetFunkey("00000102");
}
//Singe R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000106");
+ customF.SetFunkey("00000106");
}
//Singe VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000010D");
+ customF.SetFunkey("0000010D");
}
//Raj
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000103");
+ customF.SetFunkey("00000103");
}
//Raj R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000107");
+ customF.SetFunkey("00000107");
}
//Raj VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000010E");
+ customF.SetFunkey("0000010E");
}
//Yang
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000104");
+ customF.SetFunkey("00000104");
}
//Yang R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000108");
+ customF.SetFunkey("00000108");
}
//Yang VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000010F");
+ customF.SetFunkey("0000010F");
}
//Bomble
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000105");
+ customF.SetFunkey("00000105");
}
//Bomble R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000010C");
+ customF.SetFunkey("0000010C");
}
//Bomble VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000110");
+ customF.SetFunkey("00000110");
}
//Maul
private void button16_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000011A");
+ customF.SetFunkey("0000011A");
}
//Maul R
private void button15_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000011E");
+ customF.SetFunkey("0000011E");
}
//Maul VR
private void button14_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000125");
+ customF.SetFunkey("00000125");
}
//Close
@@ -166,52 +166,24 @@ private void button22_Click(object sender, EventArgs e)
//Button Images
//
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
+
//Nectar
private void button19_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000119");
+ customF.SetFunkey("00000119");
}
//Nectar R
private void button18_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000011D");
+ customF.SetFunkey("0000011D");
}
//Nectar VR
private void button17_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000124");
+ customF.SetFunkey("00000124");
}
//
diff --git a/FunkeySelector/Form11.cs b/FunkeySelector/Form11.cs
index a2ca09d..9f5f0b5 100644
--- a/FunkeySelector/Form11.cs
+++ b/FunkeySelector/Form11.cs
@@ -59,49 +59,49 @@ private void button1_Click(object sender, EventArgs e)
//Rastro
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000117");
+ customF.SetFunkey("00000117");
}
//Rastro R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000011B");
+ customF.SetFunkey("0000011B");
}
//Rastro VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000122");
+ customF.SetFunkey("00000122");
}
//Tadd
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000118");
+ customF.SetFunkey("00000118");
}
//Tadd R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000011C");
+ customF.SetFunkey("0000011C");
}
//Tadd VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000123");
+ customF.SetFunkey("00000123");
}
//Mulch
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000126");
+ customF.SetFunkey("00000126");
}
//Ace
private void button15_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000127");
+ customF.SetFunkey("00000127");
}
//Close
diff --git a/FunkeySelector/Form12.cs b/FunkeySelector/Form12.cs
index 1ab8ca6..dfe7d92 100644
--- a/FunkeySelector/Form12.cs
+++ b/FunkeySelector/Form12.cs
@@ -49,55 +49,55 @@ protected override void WndProc(ref Message m) //Allows the window to be dragged
//Con
private void Button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("S0000001");
+ customF.SetFunkey("S0000001");
}
//TachB
private void Button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("T0000001");
+ customF.SetFunkey("T0000001");
}
//TachY
private void Button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("T0000002");
+ customF.SetFunkey("T0000002");
}
//TachR
private void Button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("T0000003");
+ customF.SetFunkey("T0000003");
}
//HenchmanP
private void Button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("h0000001");
+ customF.SetFunkey("h0000001");
}
//HenchmanG
private void Button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("h0000003");
+ customF.SetFunkey("h0000003");
}
//HenchmanB
private void Button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("h0000003");
+ customF.SetFunkey("h0000003");
}
//Dali
private void Button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("h0000007");
+ customF.SetFunkey("h0000007");
}
//Goya
private void Button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("h0000006");
+ customF.SetFunkey("h0000006");
}
//Back
diff --git a/FunkeySelector/Form3.cs b/FunkeySelector/Form3.cs
index 10d6828..b52640c 100644
--- a/FunkeySelector/Form3.cs
+++ b/FunkeySelector/Form3.cs
@@ -61,73 +61,73 @@ private void button1_Click(object sender, EventArgs e)
//Glub
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000014");
+ customF.SetFunkey("00000014");
}
//Glub R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000018");
+ customF.SetFunkey("00000018");
}
//Glub VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000019");
+ customF.SetFunkey("00000019");
}
//Sprout
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001A");
+ customF.SetFunkey("0000001A");
}
//Sprout R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001B");
+ customF.SetFunkey("0000001B");
}
//Sprout VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001C");
+ customF.SetFunkey("0000001C");
}
//Twinx
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001D");
+ customF.SetFunkey("0000001D");
}
//Twinx R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001E");
+ customF.SetFunkey("0000001E");
}
//Twinx VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000001F");
+ customF.SetFunkey("0000001F");
}
//Tiki
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000023");
+ customF.SetFunkey("00000023");
}
//Tiki R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000024");
+ customF.SetFunkey("00000024");
}
//Tiki VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000025");
+ customF.SetFunkey("00000025");
}
//Close
diff --git a/FunkeySelector/Form4.cs b/FunkeySelector/Form4.cs
index ed0a26d..24b9ea1 100644
--- a/FunkeySelector/Form4.cs
+++ b/FunkeySelector/Form4.cs
@@ -50,73 +50,73 @@ protected override void WndProc(ref Message m) //Allows the window to be dragged
//Stitch
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000026");
+ customF.SetFunkey("00000026");
}
//Stitch R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000027");
+ customF.SetFunkey("00000027");
}
//Stitch VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000028");
+ customF.SetFunkey("00000028");
}
//Deuce
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000029");
+ customF.SetFunkey("00000029");
}
//Deuce R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000002A");
+ customF.SetFunkey("0000002A");
}
//Deuce VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000002E");
+ customF.SetFunkey("0000002E");
}
//Wasabi
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000002F");
+ customF.SetFunkey("0000002F");
}
//Wasabi R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000030");
+ customF.SetFunkey("00000030");
}
//Wasabi VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000031");
+ customF.SetFunkey("00000031");
}
//Bones
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000032");
+ customF.SetFunkey("00000032");
}
//Bones R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000033");
+ customF.SetFunkey("00000033");
}
//Bones VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000034");
+ customF.SetFunkey("00000034");
}
//Back
diff --git a/FunkeySelector/Form5.cs b/FunkeySelector/Form5.cs
index 733c18a..7cec82a 100644
--- a/FunkeySelector/Form5.cs
+++ b/FunkeySelector/Form5.cs
@@ -50,79 +50,79 @@ protected override void WndProc(ref Message m) //Allows the window to be dragged
//Xener
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000035");
+ customF.SetFunkey("00000035");
}
//Xener R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000039");
+ customF.SetFunkey("00000039");
}
//Xener VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003A");
+ customF.SetFunkey("0000003A");
}
//Fallout
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003B");
+ customF.SetFunkey("0000003B");
}
//Fallout R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003C");
+ customF.SetFunkey("0000003C");
}
//Fallout VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003D");
+ customF.SetFunkey("0000003D");
}
//Boggle
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003E");
+ customF.SetFunkey("0000003E");
}
//Boggle R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000003F");
+ customF.SetFunkey("0000003F");
}
//Boggle VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000040");
+ customF.SetFunkey("00000040");
}
//Vroom
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000044");
+ customF.SetFunkey("00000044");
}
//Vroom R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000045");
+ customF.SetFunkey("00000045");
}
//Vroom VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000046");
+ customF.SetFunkey("00000046");
}
//Rom
private void button14_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CE");
+ customF.SetFunkey("000000CE");
}
private void button1_Click(object sender, EventArgs e)
diff --git a/FunkeySelector/Form6.cs b/FunkeySelector/Form6.cs
index ad2e12b..4eceba2 100644
--- a/FunkeySelector/Form6.cs
+++ b/FunkeySelector/Form6.cs
@@ -59,97 +59,97 @@ private void button1_Click(object sender, EventArgs e)
//Flurry
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000050");
+ customF.SetFunkey("00000050");
}
//Flurry R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000051");
+ customF.SetFunkey("00000051");
}
//Flurry VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000052");
+ customF.SetFunkey("00000052");
}
//Nibble
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000053");
+ customF.SetFunkey("00000053");
}
//Nibble R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000054");
+ customF.SetFunkey("00000054");
}
//Nibble VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000055");
+ customF.SetFunkey("00000055");
}
//Sol
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000056");
+ customF.SetFunkey("00000056");
}
//Sol R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005A");
+ customF.SetFunkey("0000005A");
}
//Sol VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005B");
+ customF.SetFunkey("0000005B");
}
//Webley
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005C");
+ customF.SetFunkey("0000005C");
}
//Webley R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005D");
+ customF.SetFunkey("0000005D");
}
//Webley VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005E");
+ customF.SetFunkey("0000005E");
}
//Pineapple King
private void button14_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000F2");
+ customF.SetFunkey("000000F2");
}
//Native
private void button15_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000F6");
+ customF.SetFunkey("000000F6");
}
//Jerry
private void button16_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000F1");
+ customF.SetFunkey("000000F1");
}
//Rewind
private void button17_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CC");
+ customF.SetFunkey("000000CC");
}
//Close
diff --git a/FunkeySelector/Form7.cs b/FunkeySelector/Form7.cs
index b950123..40442d8 100644
--- a/FunkeySelector/Form7.cs
+++ b/FunkeySelector/Form7.cs
@@ -59,49 +59,49 @@ private void button1_Click(object sender, EventArgs e)
//Racer X
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000005F");
+ customF.SetFunkey("0000005F");
}
//Trixie
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000083");
+ customF.SetFunkey("00000083");
}
//Cannonball Taylor
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000088");
+ customF.SetFunkey("00000088");
}
//Snake Oiler
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000008C");
+ customF.SetFunkey("0000008C");
}
//Speed Racer
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000093");
+ customF.SetFunkey("00000093");
}
//Speed Racer Pinball
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000095");
+ customF.SetFunkey("00000095");
}
//Chim-Chim
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000096");
+ customF.SetFunkey("00000096");
}
//Taejo
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000094");
+ customF.SetFunkey("00000094");
}
//Close
diff --git a/FunkeySelector/Form8.cs b/FunkeySelector/Form8.cs
index af3f0c1..d2ba842 100644
--- a/FunkeySelector/Form8.cs
+++ b/FunkeySelector/Form8.cs
@@ -59,73 +59,73 @@ private void button1_Click(object sender, EventArgs e)
//Ptep
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A0");
+ customF.SetFunkey("000000A0");
}
//Ptep R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AD");
+ customF.SetFunkey("000000AD");
}
//Ptep VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000BA");
+ customF.SetFunkey("000000BA");
}
//Sprocket
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A4");
+ customF.SetFunkey("000000A4");
}
//Sprocket R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B4");
+ customF.SetFunkey("000000B4");
}
//Sprocket VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C1");
+ customF.SetFunkey("000000C1");
}
//Vlurp
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A8");
+ customF.SetFunkey("000000A8");
}
//Vlurp R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B5");
+ customF.SetFunkey("000000B5");
}
//Vlurp VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C2");
+ customF.SetFunkey("000000C2");
}
//Snipe
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AC");
+ customF.SetFunkey("000000AC");
}
//Snipe R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B9");
+ customF.SetFunkey("000000B9");
}
//Snipe VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CA");
+ customF.SetFunkey("000000CA");
}
//Close
diff --git a/FunkeySelector/Form9.cs b/FunkeySelector/Form9.cs
index 811196c..1c95fff 100644
--- a/FunkeySelector/Form9.cs
+++ b/FunkeySelector/Form9.cs
@@ -59,73 +59,73 @@ private void button1_Click(object sender, EventArgs e)
//Dyer
private void button2_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A1");
+ customF.SetFunkey("000000A1");
}
//Dyer R
private void button3_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AE");
+ customF.SetFunkey("000000AE");
}
//Dyer VR
private void button4_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000BE");
+ customF.SetFunkey("000000BE");
}
//Lucky
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A2");
+ customF.SetFunkey("000000A2");
}
//Lucky R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AF");
+ customF.SetFunkey("000000AF");
}
//Lucky VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000BF");
+ customF.SetFunkey("000000BF");
}
//Tank
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A3");
+ customF.SetFunkey("000000A3");
}
//Tank R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B3");
+ customF.SetFunkey("000000B3");
}
//Tank VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C0");
+ customF.SetFunkey("000000C0");
}
//Berger
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000A9");
+ customF.SetFunkey("000000A9");
}
//Berger R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B6");
+ customF.SetFunkey("000000B6");
}
//Berger VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C3");
+ customF.SetFunkey("000000C3");
}
//Close
diff --git a/FunkeySelector/FunkeySelector.csproj b/FunkeySelector/FunkeySelector.csproj
index 246dde7..cd4711f 100644
--- a/FunkeySelector/FunkeySelector.csproj
+++ b/FunkeySelector/FunkeySelector.csproj
@@ -57,6 +57,12 @@
+
+ UserControl
+
+
+ CloseButton.cs
+
Form
@@ -100,11 +106,11 @@
Form15.cs
-
+
Form
-
- Form2.cs
+
+ FunkeysTown.cs
Form
@@ -150,6 +156,12 @@
+
+ UserControl
+
+
+ MinimizeButton.cs
+
Form1.cs
@@ -171,8 +183,8 @@
Form15.cs
-
- Form2.cs
+
+ FunkeysTown.cs
Form3.cs
@@ -205,6 +217,12 @@
Resources.resx
True
+
+ CloseButton.cs
+
+
+ MinimizeButton.cs
+
SettingsSingleFileGenerator
Settings.Designer.cs
@@ -241,5 +259,6 @@
+
\ No newline at end of file
diff --git a/FunkeySelector/Form2.designer.cs b/FunkeySelector/FunkeysTown.Designer.cs
similarity index 91%
rename from FunkeySelector/Form2.designer.cs
rename to FunkeySelector/FunkeysTown.Designer.cs
index 4295b9a..0fc05e2 100644
--- a/FunkeySelector/Form2.designer.cs
+++ b/FunkeySelector/FunkeysTown.Designer.cs
@@ -1,6 +1,6 @@
namespace FunkeySelector
{
- partial class Form2
+ partial class FunkeysTown
{
///
/// Required designer variable.
@@ -28,7 +28,7 @@ protected override void Dispose(bool disposing)
///
private void InitializeComponent()
{
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunkeysTown));
this.label2 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
@@ -61,8 +61,8 @@ private void InitializeComponent()
this.button20 = new System.Windows.Forms.Button();
this.label11 = new System.Windows.Forms.Label();
this.button21 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
+ this.closeButton1 = new FunkeySelector.CloseButton();
+ this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
this.SuspendLayout();
//
// label2
@@ -109,7 +109,7 @@ private void InitializeComponent()
this.button2.TabIndex = 5;
this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
+ this.button2.Click += new System.EventHandler(this.Scratch_Click);
//
// button3
//
@@ -126,7 +126,7 @@ private void InitializeComponent()
this.button3.TabIndex = 6;
this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
+ this.button3.Click += new System.EventHandler(this.ScratchR_Click);
//
// button4
//
@@ -143,7 +143,7 @@ private void InitializeComponent()
this.button4.TabIndex = 7;
this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
+ this.button4.Click += new System.EventHandler(this.ScratchVR_Click);
//
// label1
//
@@ -554,55 +554,29 @@ private void InitializeComponent()
this.button21.UseVisualStyleBackColor = false;
this.button21.Click += new System.EventHandler(this.button21_Click);
//
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 81;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 80;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form2
+ // closeButton1
+ //
+ this.closeButton1.Location = new System.Drawing.Point(681, 18);
+ this.closeButton1.Name = "closeButton1";
+ this.closeButton1.Size = new System.Drawing.Size(26, 20);
+ this.closeButton1.TabIndex = 82;
+ //
+ // minimizeButton1
+ //
+ this.minimizeButton1.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton1.Name = "minimizeButton1";
+ this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton1.TabIndex = 83;
+ //
+ // FunkeysTown
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Gold;
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
+ this.Controls.Add(this.minimizeButton1);
+ this.Controls.Add(this.closeButton1);
this.Controls.Add(this.label11);
this.Controls.Add(this.button21);
this.Controls.Add(this.label10);
@@ -638,7 +612,7 @@ private void InitializeComponent()
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
- this.Name = "Form2";
+ this.Name = "FunkeysTown";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FunkeySelectorGUI";
this.ResumeLayout(false);
@@ -680,7 +654,7 @@ private void InitializeComponent()
private System.Windows.Forms.Button button20;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
+ private CloseButton closeButton1;
+ private UserControls.MinimizeButton minimizeButton1;
}
}
\ No newline at end of file
diff --git a/FunkeySelector/Form2.cs b/FunkeySelector/FunkeysTown.cs
similarity index 57%
rename from FunkeySelector/Form2.cs
rename to FunkeySelector/FunkeysTown.cs
index 636334b..238990a 100644
--- a/FunkeySelector/Form2.cs
+++ b/FunkeySelector/FunkeysTown.cs
@@ -12,14 +12,14 @@
namespace FunkeySelector
{
- public partial class Form2 : Form
+ public partial class FunkeysTown : Form
{
//
// Initial Setups
//
CustomFManager customF = new CustomFManager(); //Assigns CustomFManager to customF.
- public Form2()
+ public FunkeysTown()
{
InitializeComponent();
this.TransparencyKey = System.Drawing.Color.Gold; //Cuts out gold parts to be rounded.
@@ -57,181 +57,125 @@ private void button1_Click(object sender, EventArgs e)
form1.ShowDialog(this);
}
- //Scratch
- private void button2_Click(object sender, EventArgs e)
+ private void Scratch_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000047");
+ customF.SetFunkey("00000047");
}
- //Scratch R
- private void button3_Click(object sender, EventArgs e)
+ private void ScratchR_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000048");
+ customF.SetFunkey("00000048");
}
- //Scratch VR
- private void button4_Click(object sender, EventArgs e)
+ private void ScratchVR_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000049");
+ customF.SetFunkey("00000049");
}
//Lotus
private void button10_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000004A");
+ customF.SetFunkey("0000004A");
}
//Lotus R
private void button9_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000004B");
+ customF.SetFunkey("0000004B");
}
//Lotus VR
private void button8_Click(object sender, EventArgs e)
{
- customF.setFunkey("0000004F");
+ customF.SetFunkey("0000004F");
}
//Drift
private void button7_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AA");
+ customF.SetFunkey("000000AA");
}
//Drift R
private void button6_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B7");
+ customF.SetFunkey("000000B7");
}
//Drift VR
private void button5_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C4");
+ customF.SetFunkey("000000C4");
}
//Waggs
private void button13_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000AB");
+ customF.SetFunkey("000000AB");
}
//Waggs R
private void button12_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000B8");
+ customF.SetFunkey("000000B8");
}
//Waggs VR
private void button11_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000C5");
+ customF.SetFunkey("000000C5");
}
//Dot
private void button16_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000FC");
+ customF.SetFunkey("000000FC");
}
//Dot R
private void button15_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000FD");
+ customF.SetFunkey("000000FD");
}
//Dot VR
private void button14_Click(object sender, EventArgs e)
{
- customF.setFunkey("00000101");
+ customF.SetFunkey("00000101");
}
//Holler
private void button20_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CD");
+ customF.SetFunkey("000000CD");
}
//Gabby
private void button21_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CB");
+ customF.SetFunkey("000000CB");
}
//Henchman
private void button18_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000CF");
+ customF.SetFunkey("000000CF");
}
//Master Lox
private void button17_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000F7");
+ customF.SetFunkey("000000F7");
}
//Mayor Sayso
private void button19_Click(object sender, EventArgs e)
{
- customF.setFunkey("000000F8");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
+ customF.SetFunkey("000000F8");
}
//
//End of Button Clicks
//
-
- //
- //Button Images
- //
-
- //Exit
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
-
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
-
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //
- // End of Button Images
- //
-
}
}
diff --git a/FunkeySelector/Form2.resx b/FunkeySelector/FunkeysTown.resx
similarity index 100%
rename from FunkeySelector/Form2.resx
rename to FunkeySelector/FunkeysTown.resx
diff --git a/FunkeySelector/Program.cs b/FunkeySelector/Program.cs
index f7b2bd1..cb35761 100644
--- a/FunkeySelector/Program.cs
+++ b/FunkeySelector/Program.cs
@@ -21,7 +21,7 @@ static void Main(string[] args)
if (args != null && args.Length > 0) //If there's an argument in the execution.
{
string funkeyCodeNum = args[0];
- customF.setFunkey(funkeyCodeNum);
+ customF.SetFunkey(funkeyCodeNum);
}
else
{
diff --git a/FunkeySelector/UserControls/CloseButton.Designer.cs b/FunkeySelector/UserControls/CloseButton.Designer.cs
new file mode 100644
index 0000000..79225b9
--- /dev/null
+++ b/FunkeySelector/UserControls/CloseButton.Designer.cs
@@ -0,0 +1,70 @@
+
+namespace FunkeySelector
+{
+ partial class CloseButton
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.close = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // close
+ //
+ this.close.BackColor = System.Drawing.Color.Transparent;
+ this.close.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
+ this.close.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.close.FlatAppearance.BorderSize = 0;
+ this.close.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.close.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.close.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.close.Location = new System.Drawing.Point(0, 0);
+ this.close.Name = "close";
+ this.close.Size = new System.Drawing.Size(26, 20);
+ this.close.TabIndex = 16;
+ this.close.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.close.UseVisualStyleBackColor = false;
+ this.close.Click += new System.EventHandler(this.Close_Click);
+ this.close.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Close_MouseDown);
+ this.close.MouseEnter += new System.EventHandler(this.Close_MouseEnter);
+ this.close.MouseLeave += new System.EventHandler(this.Close_MouseLeave);
+ //
+ // CloseButton
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.close);
+ this.Name = "CloseButton";
+ this.Size = new System.Drawing.Size(26, 20);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button close;
+ }
+}
diff --git a/FunkeySelector/UserControls/CloseButton.cs b/FunkeySelector/UserControls/CloseButton.cs
new file mode 100644
index 0000000..df5a5fc
--- /dev/null
+++ b/FunkeySelector/UserControls/CloseButton.cs
@@ -0,0 +1,38 @@
+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 FunkeySelector
+{
+ public partial class CloseButton : UserControl
+ {
+ public CloseButton()
+ {
+ InitializeComponent();
+ }
+
+ private void Close_Click(object sender, EventArgs e)
+ {
+ Application.Exit();
+ }
+
+ private void Close_MouseLeave(object sender, EventArgs e)
+ {
+ close.BackgroundImage = Properties.Resources._246;
+ }
+
+ private void Close_MouseEnter(object sender, EventArgs e)
+ {
+ close.BackgroundImage = Properties.Resources._248;
+ }
+ private void Close_MouseDown(object sender, MouseEventArgs e)
+ {
+ close.BackgroundImage = Properties.Resources._250;
+ }
+ }
+}
diff --git a/FunkeySelector/UserControls/CloseButton.resx b/FunkeySelector/UserControls/CloseButton.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/FunkeySelector/UserControls/CloseButton.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/FunkeySelector/UserControls/MinimizeButton.Designer.cs b/FunkeySelector/UserControls/MinimizeButton.Designer.cs
new file mode 100644
index 0000000..f380bc0
--- /dev/null
+++ b/FunkeySelector/UserControls/MinimizeButton.Designer.cs
@@ -0,0 +1,70 @@
+
+namespace FunkeySelector.UserControls
+{
+ partial class MinimizeButton
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.minimize = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // minimize
+ //
+ this.minimize.BackColor = System.Drawing.Color.Transparent;
+ this.minimize.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
+ this.minimize.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.minimize.FlatAppearance.BorderSize = 0;
+ this.minimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.minimize.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.minimize.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.minimize.Location = new System.Drawing.Point(0, 0);
+ this.minimize.Name = "minimize";
+ this.minimize.Size = new System.Drawing.Size(26, 22);
+ this.minimize.TabIndex = 80;
+ this.minimize.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.minimize.UseVisualStyleBackColor = false;
+ this.minimize.Click += new System.EventHandler(this.Minimize_Click);
+ this.minimize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Minimize_MouseDown);
+ this.minimize.MouseEnter += new System.EventHandler(this.Minimize_MouseEnter);
+ this.minimize.MouseLeave += new System.EventHandler(this.Minimize_MouseLeave);
+ //
+ // MinimizeButton
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.minimize);
+ this.Name = "MinimizeButton";
+ this.Size = new System.Drawing.Size(26, 22);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button minimize;
+ }
+}
diff --git a/FunkeySelector/UserControls/MinimizeButton.cs b/FunkeySelector/UserControls/MinimizeButton.cs
new file mode 100644
index 0000000..3f7824b
--- /dev/null
+++ b/FunkeySelector/UserControls/MinimizeButton.cs
@@ -0,0 +1,38 @@
+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 FunkeySelector.UserControls
+{
+ public partial class MinimizeButton : UserControl
+ {
+ public MinimizeButton()
+ {
+ InitializeComponent();
+ }
+
+ private void Minimize_Click(object sender, EventArgs e)
+ {
+ ParentForm.WindowState = FormWindowState.Minimized;
+ }
+
+ private void Minimize_MouseLeave(object sender, EventArgs e)
+ {
+ minimize.BackgroundImage = Properties.Resources._150;
+ }
+
+ private void Minimize_MouseEnter(object sender, EventArgs e)
+ {
+ minimize.BackgroundImage = Properties.Resources._154;
+ }
+ private void Minimize_MouseDown(object sender, MouseEventArgs e)
+ {
+ minimize.BackgroundImage = Properties.Resources._157;
+ }
+ }
+}
diff --git a/FunkeySelector/UserControls/MinimizeButton.resx b/FunkeySelector/UserControls/MinimizeButton.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/FunkeySelector/UserControls/MinimizeButton.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
From 7934dbd99d2169c8d3cede76beb1d9bee261c23f Mon Sep 17 00:00:00 2001
From: NanderTGA <65074195+NanderTGA@users.noreply.github.com>
Date: Tue, 31 Oct 2023 23:40:17 +0100
Subject: [PATCH 02/14] refactor: a lot
also fixes several small bugs
---
FunkeySelector/About.Designer.cs | 125 ++
FunkeySelector/About.cs | 14 +
FunkeySelector/{Form15.resx => About.resx} | 0
FunkeySelector/CustomFManager.cs | 25 +-
FunkeySelector/CustomFunkeys.Designer.cs | 154 +++
FunkeySelector/CustomFunkeys.cs | 49 +
.../{Form13.resx => CustomFunkeys.resx} | 0
FunkeySelector/DaydreamOasis.Designer.cs | 411 ++++++
FunkeySelector/DaydreamOasis.cs | 23 +
.../{Form9.resx => DaydreamOasis.resx} | 24 +-
FunkeySelector/Form1.Designer.cs | 207 ++-
FunkeySelector/Form1.cs | 267 +---
FunkeySelector/Form10.Designer.cs | 559 --------
FunkeySelector/Form10.cs | 193 ---
FunkeySelector/Form11.Designer.cs | 355 -----
FunkeySelector/Form11.cs | 161 ---
FunkeySelector/Form12.Designer.cs | 389 ------
FunkeySelector/Form12.cs | 166 ---
FunkeySelector/Form13.Designer.cs | 180 ---
FunkeySelector/Form13.cs | 139 --
FunkeySelector/Form14.Designer.cs | 177 ---
FunkeySelector/Form14.cs | 108 --
FunkeySelector/Form15.Designer.cs | 134 --
FunkeySelector/Form15.cs | 52 -
FunkeySelector/Form3.Designer.cs | 435 ------
FunkeySelector/Form3.cs | 187 ---
FunkeySelector/Form4.Designer.cs | 435 ------
FunkeySelector/Form4.cs | 185 ---
FunkeySelector/Form5.Designer.cs | 470 -------
FunkeySelector/Form5.cs | 190 ---
FunkeySelector/Form6.Designer.cs | 575 --------
FunkeySelector/Form6.cs | 209 ---
FunkeySelector/Form7.Designer.cs | 415 ------
FunkeySelector/Form7.cs | 161 ---
FunkeySelector/Form8.Designer.cs | 434 ------
FunkeySelector/Form8.cs | 185 ---
FunkeySelector/Form9.Designer.cs | 435 ------
FunkeySelector/Form9.cs | 185 ---
FunkeySelector/FunkeySelector.csproj | 165 ++-
FunkeySelector/FunkeysTown.Designer.cs | 1210 +++++++++--------
FunkeySelector/FunkeysTown.cs | 162 +--
FunkeySelector/FunkeysTown.resx | 40 +-
FunkeySelector/FunkikiIsland.Designer.cs | 551 ++++++++
FunkeySelector/FunkikiIsland.cs | 23 +
.../{Form6.resx => FunkikiIsland.resx} | 32 +-
FunkeySelector/HiddenRealm.Designer.cs | 560 ++++++++
FunkeySelector/HiddenRealm.cs | 23 +
.../{Form10.resx => HiddenRealm.resx} | 36 +-
FunkeySelector/KelpyBasin.Designer.cs | 411 ++++++
FunkeySelector/KelpyBasin.cs | 24 +
.../{Form3.resx => KelpyBasin.resx} | 24 +-
FunkeySelector/LaputtaStation.Designer.cs | 446 ++++++
FunkeySelector/LaputtaStation.cs | 23 +
.../{Form5.resx => LaputtaStation.resx} | 26 +-
FunkeySelector/MagmaGorge.Designer.cs | 411 ++++++
FunkeySelector/MagmaGorge.cs | 23 +
.../{Form4.resx => MagmaGorge.resx} | 24 +-
FunkeySelector/NightmareRift.Designer.cs | 410 ++++++
FunkeySelector/NightmareRift.cs | 23 +
.../{Form8.resx => NightmareRift.resx} | 24 +-
FunkeySelector/Options.Designer.cs | 168 +++
FunkeySelector/Options.cs | 20 +
FunkeySelector/{Form14.resx => Options.resx} | 0
FunkeySelector/ParadoxGreen.Designer.cs | 331 +++++
FunkeySelector/ParadoxGreen.cs | 23 +
.../{Form11.resx => ParadoxGreen.resx} | 16 +-
FunkeySelector/Program.cs | 18 +-
.../RoyaltonRacingComplex.Designer.cs | 391 ++++++
FunkeySelector/RoyaltonRacingComplex.cs | 23 +
...{Form7.resx => RoyaltonRacingComplex.resx} | 16 +-
FunkeySelector/UnusedFunkeys.Designer.cs | 365 +++++
FunkeySelector/UnusedFunkeys.cs | 22 +
.../{Form12.resx => UnusedFunkeys.resx} | 18 +-
FunkeySelector/UserControls/BasicForm.cs | 19 +
.../UserControls/ChangeFormButton.cs | 70 +
.../UserControls/CloseButton.Designer.cs | 2 +-
FunkeySelector/UserControls/CloseButton.cs | 8 +-
.../UserControls/FunkeyChangerButton.cs | 25 +
FunkeySelector/UserControls/MinimizeButton.cs | 6 -
.../UserControls/OKButton.Designer.cs | 69 +
FunkeySelector/UserControls/OKButton.cs | 41 +
FunkeySelector/UserControls/OKButton.resx | 120 ++
.../UserControls/OptionsButton.Designer.cs | 73 +
FunkeySelector/UserControls/OptionsButton.cs | 28 +
.../UserControls/OptionsButton.resx | 120 ++
.../UserControls/SettingCheckBox.cs | 54 +
FunkeySelector/packages.config | 4 +
87 files changed, 6687 insertions(+), 8447 deletions(-)
create mode 100644 FunkeySelector/About.Designer.cs
create mode 100644 FunkeySelector/About.cs
rename FunkeySelector/{Form15.resx => About.resx} (100%)
create mode 100644 FunkeySelector/CustomFunkeys.Designer.cs
create mode 100644 FunkeySelector/CustomFunkeys.cs
rename FunkeySelector/{Form13.resx => CustomFunkeys.resx} (100%)
create mode 100644 FunkeySelector/DaydreamOasis.Designer.cs
create mode 100644 FunkeySelector/DaydreamOasis.cs
rename FunkeySelector/{Form9.resx => DaydreamOasis.resx} (99%)
delete mode 100644 FunkeySelector/Form10.Designer.cs
delete mode 100644 FunkeySelector/Form10.cs
delete mode 100644 FunkeySelector/Form11.Designer.cs
delete mode 100644 FunkeySelector/Form11.cs
delete mode 100644 FunkeySelector/Form12.Designer.cs
delete mode 100644 FunkeySelector/Form12.cs
delete mode 100644 FunkeySelector/Form13.Designer.cs
delete mode 100644 FunkeySelector/Form13.cs
delete mode 100644 FunkeySelector/Form14.Designer.cs
delete mode 100644 FunkeySelector/Form14.cs
delete mode 100644 FunkeySelector/Form15.Designer.cs
delete mode 100644 FunkeySelector/Form15.cs
delete mode 100644 FunkeySelector/Form3.Designer.cs
delete mode 100644 FunkeySelector/Form3.cs
delete mode 100644 FunkeySelector/Form4.Designer.cs
delete mode 100644 FunkeySelector/Form4.cs
delete mode 100644 FunkeySelector/Form5.Designer.cs
delete mode 100644 FunkeySelector/Form5.cs
delete mode 100644 FunkeySelector/Form6.Designer.cs
delete mode 100644 FunkeySelector/Form6.cs
delete mode 100644 FunkeySelector/Form7.Designer.cs
delete mode 100644 FunkeySelector/Form7.cs
delete mode 100644 FunkeySelector/Form8.Designer.cs
delete mode 100644 FunkeySelector/Form8.cs
delete mode 100644 FunkeySelector/Form9.Designer.cs
delete mode 100644 FunkeySelector/Form9.cs
create mode 100644 FunkeySelector/FunkikiIsland.Designer.cs
create mode 100644 FunkeySelector/FunkikiIsland.cs
rename FunkeySelector/{Form6.resx => FunkikiIsland.resx} (99%)
create mode 100644 FunkeySelector/HiddenRealm.Designer.cs
create mode 100644 FunkeySelector/HiddenRealm.cs
rename FunkeySelector/{Form10.resx => HiddenRealm.resx} (99%)
create mode 100644 FunkeySelector/KelpyBasin.Designer.cs
create mode 100644 FunkeySelector/KelpyBasin.cs
rename FunkeySelector/{Form3.resx => KelpyBasin.resx} (99%)
create mode 100644 FunkeySelector/LaputtaStation.Designer.cs
create mode 100644 FunkeySelector/LaputtaStation.cs
rename FunkeySelector/{Form5.resx => LaputtaStation.resx} (99%)
create mode 100644 FunkeySelector/MagmaGorge.Designer.cs
create mode 100644 FunkeySelector/MagmaGorge.cs
rename FunkeySelector/{Form4.resx => MagmaGorge.resx} (99%)
create mode 100644 FunkeySelector/NightmareRift.Designer.cs
create mode 100644 FunkeySelector/NightmareRift.cs
rename FunkeySelector/{Form8.resx => NightmareRift.resx} (99%)
create mode 100644 FunkeySelector/Options.Designer.cs
create mode 100644 FunkeySelector/Options.cs
rename FunkeySelector/{Form14.resx => Options.resx} (100%)
create mode 100644 FunkeySelector/ParadoxGreen.Designer.cs
create mode 100644 FunkeySelector/ParadoxGreen.cs
rename FunkeySelector/{Form11.resx => ParadoxGreen.resx} (99%)
create mode 100644 FunkeySelector/RoyaltonRacingComplex.Designer.cs
create mode 100644 FunkeySelector/RoyaltonRacingComplex.cs
rename FunkeySelector/{Form7.resx => RoyaltonRacingComplex.resx} (99%)
create mode 100644 FunkeySelector/UnusedFunkeys.Designer.cs
create mode 100644 FunkeySelector/UnusedFunkeys.cs
rename FunkeySelector/{Form12.resx => UnusedFunkeys.resx} (99%)
create mode 100644 FunkeySelector/UserControls/BasicForm.cs
create mode 100644 FunkeySelector/UserControls/ChangeFormButton.cs
create mode 100644 FunkeySelector/UserControls/FunkeyChangerButton.cs
create mode 100644 FunkeySelector/UserControls/OKButton.Designer.cs
create mode 100644 FunkeySelector/UserControls/OKButton.cs
create mode 100644 FunkeySelector/UserControls/OKButton.resx
create mode 100644 FunkeySelector/UserControls/OptionsButton.Designer.cs
create mode 100644 FunkeySelector/UserControls/OptionsButton.cs
create mode 100644 FunkeySelector/UserControls/OptionsButton.resx
create mode 100644 FunkeySelector/UserControls/SettingCheckBox.cs
create mode 100644 FunkeySelector/packages.config
diff --git a/FunkeySelector/About.Designer.cs b/FunkeySelector/About.Designer.cs
new file mode 100644
index 0000000..2d588cc
--- /dev/null
+++ b/FunkeySelector/About.Designer.cs
@@ -0,0 +1,125 @@
+namespace FunkeySelector
+{
+ partial class About
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.AboutFSGUILabel = new System.Windows.Forms.Label();
+ this.DevelopedByLabel = new System.Windows.Forms.Label();
+ this.MadeForLabel = new System.Windows.Forms.Label();
+ this.CreditsToLabel = new System.Windows.Forms.Label();
+ this.okButton = new FunkeySelector.UserControls.OKButton();
+ this.SuspendLayout();
+ //
+ // AboutFSGUILabel
+ //
+ this.AboutFSGUILabel.AutoSize = true;
+ this.AboutFSGUILabel.BackColor = System.Drawing.Color.Transparent;
+ this.AboutFSGUILabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.AboutFSGUILabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.AboutFSGUILabel.Location = new System.Drawing.Point(137, 25);
+ this.AboutFSGUILabel.Name = "AboutFSGUILabel";
+ this.AboutFSGUILabel.Size = new System.Drawing.Size(297, 26);
+ this.AboutFSGUILabel.TabIndex = 3;
+ this.AboutFSGUILabel.Text = "ABOUT FUNKEYSELECTORGUI";
+ //
+ // DevelopedByLabel
+ //
+ this.DevelopedByLabel.AutoSize = true;
+ this.DevelopedByLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DevelopedByLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DevelopedByLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DevelopedByLabel.Location = new System.Drawing.Point(155, 84);
+ this.DevelopedByLabel.Name = "DevelopedByLabel";
+ this.DevelopedByLabel.Size = new System.Drawing.Size(260, 20);
+ this.DevelopedByLabel.TabIndex = 4;
+ this.DevelopedByLabel.Text = "DEVELOPED BY GITTYMAC (LAKO)";
+ //
+ // MadeForLabel
+ //
+ this.MadeForLabel.AutoSize = true;
+ this.MadeForLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MadeForLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MadeForLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MadeForLabel.Location = new System.Drawing.Point(122, 126);
+ this.MadeForLabel.Name = "MadeForLabel";
+ this.MadeForLabel.Size = new System.Drawing.Size(327, 20);
+ this.MadeForLabel.TabIndex = 5;
+ this.MadeForLabel.Text = "MADE FOR THE FUNKEYS SELECTION MOD";
+ //
+ // CreditsToLabel
+ //
+ this.CreditsToLabel.AutoSize = true;
+ this.CreditsToLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CreditsToLabel.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CreditsToLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.CreditsToLabel.Location = new System.Drawing.Point(90, 168);
+ this.CreditsToLabel.Name = "CreditsToLabel";
+ this.CreditsToLabel.Size = new System.Drawing.Size(390, 20);
+ this.CreditsToLabel.TabIndex = 6;
+ this.CreditsToLabel.Text = "CREDITS TO DUALSCAR FOR THE ICONS AND IDEA";
+ //
+ // okButton
+ //
+ this.okButton.BackColor = System.Drawing.Color.Transparent;
+ this.okButton.CloseForm = true;
+ this.okButton.Location = new System.Drawing.Point(242, 244);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(86, 23);
+ this.okButton.TabIndex = 7;
+ //
+ // About
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(570, 272);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.CreditsToLabel);
+ this.Controls.Add(this.MadeForLabel);
+ this.Controls.Add(this.DevelopedByLabel);
+ this.Controls.Add(this.AboutFSGUILabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Name = "About";
+ this.Text = "Form15";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label AboutFSGUILabel;
+ private System.Windows.Forms.Label DevelopedByLabel;
+ private System.Windows.Forms.Label MadeForLabel;
+ private System.Windows.Forms.Label CreditsToLabel;
+ private UserControls.OKButton okButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/About.cs b/FunkeySelector/About.cs
new file mode 100644
index 0000000..c89a10c
--- /dev/null
+++ b/FunkeySelector/About.cs
@@ -0,0 +1,14 @@
+using FunkeySelector.UserControls;
+using System;
+using System.Windows.Forms;
+
+namespace FunkeySelector
+{
+ public partial class About : BasicForm
+ {
+ public About()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form15.resx b/FunkeySelector/About.resx
similarity index 100%
rename from FunkeySelector/Form15.resx
rename to FunkeySelector/About.resx
diff --git a/FunkeySelector/CustomFManager.cs b/FunkeySelector/CustomFManager.cs
index 267eb93..956acb9 100644
--- a/FunkeySelector/CustomFManager.cs
+++ b/FunkeySelector/CustomFManager.cs
@@ -7,23 +7,18 @@
namespace FunkeySelector
{
- class CustomFManager
+ static class CustomF
{
- public void SetFunkey(string funkeyCodeNum) //This is the code to switch Funkeys, funkeyCodeNum is the code defined in funkeys.rdf.
+ // the FunkeyIDs and other information about funkeys can be found in RadicaGame/data/system/funkeys.rdf
+ public static void SetFunkey(string funkeyID)
{
- using (StreamWriter writetext = new("customF.txt"))
- {
- writetext.Write("funkeyCodeNum=" + funkeyCodeNum); //Creates the customF.txt
- }
- if (Properties.Settings.Default.wineCompat == false) //Checks if Wine/Mono compatibility is not enabled.
- {
- Process[] pname = Process.GetProcessesByName("UBFunkeys");
- if (pname.Length == 0) //Prevents crashing if UBFunkeys.exe isn't running.
- {
- }
- else Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow(); //Closes the game to trigger the mod.
- }
- //It saves a lot of time to have a simple function to call rather than individual statements.
+ File.WriteAllText("customF.txt", $"funkeyCodeNum={funkeyID}");
+
+ if (Properties.Settings.Default.wineCompat == true) return;
+ Process[] processes = Process.GetProcessesByName("UBFunkeys");
+ if (processes.Length == 0) return;
+ // Close the main window to trigger the mod
+ processes[0].CloseMainWindow();
}
}
}
diff --git a/FunkeySelector/CustomFunkeys.Designer.cs b/FunkeySelector/CustomFunkeys.Designer.cs
new file mode 100644
index 0000000..11c6250
--- /dev/null
+++ b/FunkeySelector/CustomFunkeys.Designer.cs
@@ -0,0 +1,154 @@
+namespace FunkeySelector
+{
+ partial class CustomFunkeys
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomFunkeys));
+ this.CustomFunkeysLabel = new System.Windows.Forms.Label();
+ this.backButton = new UserControls.ChangeFormButton();
+ this.helpButton = new System.Windows.Forms.Button();
+ this.Imagelist = new System.Windows.Forms.ImageList(this.components);
+ this.CustomFunkeysListBox = new System.Windows.Forms.ListBox();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // CustomFunkeysLabel
+ //
+ this.CustomFunkeysLabel.AutoSize = true;
+ this.CustomFunkeysLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CustomFunkeysLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.CustomFunkeysLabel.Location = new System.Drawing.Point(241, 31);
+ this.CustomFunkeysLabel.Name = "CustomFunkeysLabel";
+ this.CustomFunkeysLabel.Size = new System.Drawing.Size(371, 52);
+ this.CustomFunkeysLabel.TabIndex = 58;
+ this.CustomFunkeysLabel.Text = "CUSTOM FUNKEYS";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 59;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // helpButton
+ //
+ this.helpButton.BackColor = System.Drawing.Color.Transparent;
+ this.helpButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.helpButton.FlatAppearance.BorderSize = 0;
+ this.helpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.helpButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.helpButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.helpButton.Location = new System.Drawing.Point(119, 12);
+ this.helpButton.Name = "helpButton";
+ this.helpButton.Size = new System.Drawing.Size(101, 48);
+ this.helpButton.TabIndex = 60;
+ this.helpButton.Text = "HELP";
+ this.helpButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.helpButton.UseVisualStyleBackColor = false;
+ this.helpButton.Click += new System.EventHandler(this.Help_Click);
+ //
+ // Imagelist
+ //
+ this.Imagelist.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
+ this.Imagelist.ImageSize = new System.Drawing.Size(128, 128);
+ this.Imagelist.TransparentColor = System.Drawing.Color.Transparent;
+ //
+ // CustomFunkeysListBox
+ //
+ this.CustomFunkeysListBox.BackColor = System.Drawing.SystemColors.HotTrack;
+ this.CustomFunkeysListBox.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CustomFunkeysListBox.ForeColor = System.Drawing.SystemColors.Info;
+ this.CustomFunkeysListBox.FormattingEnabled = true;
+ this.CustomFunkeysListBox.ItemHeight = 29;
+ this.CustomFunkeysListBox.Location = new System.Drawing.Point(31, 104);
+ this.CustomFunkeysListBox.Name = "CustomFunkeysListBox";
+ this.CustomFunkeysListBox.Size = new System.Drawing.Size(667, 410);
+ this.CustomFunkeysListBox.TabIndex = 61;
+ this.CustomFunkeysListBox.SelectedIndexChanged += new System.EventHandler(this.CustomFunkeysListBox_SelectedIndexChanged);
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 106;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 107;
+ //
+ // Form13
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.CustomFunkeysListBox);
+ this.Controls.Add(this.helpButton);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.CustomFunkeysLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "Form13";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.Load += new System.EventHandler(this.CustomFunkeys_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label CustomFunkeysLabel;
+ private UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Button helpButton;
+ private System.Windows.Forms.ImageList Imagelist;
+ private System.Windows.Forms.ListBox CustomFunkeysListBox;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/CustomFunkeys.cs b/FunkeySelector/CustomFunkeys.cs
new file mode 100644
index 0000000..39fb1d6
--- /dev/null
+++ b/FunkeySelector/CustomFunkeys.cs
@@ -0,0 +1,49 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class CustomFunkeys : BasicForm
+ {
+ public CustomFunkeys()
+ {
+ InitializeComponent();
+ }
+
+ //Initializes the listbox with customfunkeys.
+ private void CustomFunkeys_Load(object sender, EventArgs e)
+ {
+ CustomFunkeysListBox.Items.Clear();
+ string[] files = Directory.GetFiles("./CustomFunkeys");
+
+ foreach (string file in files)
+ {
+ CustomFunkeysListBox.Items.Add(file);
+ }
+ }
+
+ private void Help_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show("This shows all of the custom Funkeys in the CustomFunkeys folder in the RadicaGame folder. Put the custom Funkey's txt inside the folder, it'll show up here. Click on the custom Funkey you want, and it'll show up in game!");
+ }
+
+ //Will select Funkey when listbox item is selected.
+ private void CustomFunkeysListBox_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ File.Copy(CustomFunkeysListBox.SelectedItem.ToString(), "customF.txt", true); //This does not use CustomFManager as it uses a different method.
+ if (Properties.Settings.Default.wineCompat == false)
+ {
+ Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow();
+ }
+ }
+ }
+}
diff --git a/FunkeySelector/Form13.resx b/FunkeySelector/CustomFunkeys.resx
similarity index 100%
rename from FunkeySelector/Form13.resx
rename to FunkeySelector/CustomFunkeys.resx
diff --git a/FunkeySelector/DaydreamOasis.Designer.cs b/FunkeySelector/DaydreamOasis.Designer.cs
new file mode 100644
index 0000000..766dac3
--- /dev/null
+++ b/FunkeySelector/DaydreamOasis.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class DaydreamOasis
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DaydreamOasis));
+ this.BergerLabel = new System.Windows.Forms.Label();
+ this.BergerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BergerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Berger = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LuckyLabel = new System.Windows.Forms.Label();
+ this.LuckyVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LuckyR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Lucky = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TankLabel = new System.Windows.Forms.Label();
+ this.TankVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TankR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tank = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DyerLabel = new System.Windows.Forms.Label();
+ this.DyerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DyerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Dyer = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.DayDreamOasisLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BergerLabel
+ //
+ this.BergerLabel.AutoSize = true;
+ this.BergerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BergerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BergerLabel.Location = new System.Drawing.Point(320, 431);
+ this.BergerLabel.Name = "BergerLabel";
+ this.BergerLabel.Size = new System.Drawing.Size(92, 29);
+ this.BergerLabel.TabIndex = 74;
+ this.BergerLabel.Text = "BERGER";
+ //
+ // BergerVR
+ //
+ this.BergerVR.BackColor = System.Drawing.Color.Transparent;
+ this.BergerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BergerVR.BackgroundImage")));
+ this.BergerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BergerVR.FlatAppearance.BorderSize = 0;
+ this.BergerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BergerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BergerVR.FunkeyID = "000000C3";
+ this.BergerVR.Location = new System.Drawing.Point(389, 471);
+ this.BergerVR.Name = "BergerVR";
+ this.BergerVR.Size = new System.Drawing.Size(50, 63);
+ this.BergerVR.TabIndex = 73;
+ this.BergerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BergerVR.UseVisualStyleBackColor = false;
+ //
+ // BergerR
+ //
+ this.BergerR.BackColor = System.Drawing.Color.Transparent;
+ this.BergerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BergerR.BackgroundImage")));
+ this.BergerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BergerR.FlatAppearance.BorderSize = 0;
+ this.BergerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BergerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BergerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BergerR.FunkeyID = "000000B6";
+ this.BergerR.Location = new System.Drawing.Point(338, 471);
+ this.BergerR.Name = "BergerR";
+ this.BergerR.Size = new System.Drawing.Size(50, 63);
+ this.BergerR.TabIndex = 72;
+ this.BergerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BergerR.UseVisualStyleBackColor = false;
+ //
+ // Berger
+ //
+ this.Berger.BackColor = System.Drawing.Color.Transparent;
+ this.Berger.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Berger.BackgroundImage")));
+ this.Berger.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Berger.FlatAppearance.BorderSize = 0;
+ this.Berger.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Berger.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Berger.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Berger.FunkeyID = "000000A9";
+ this.Berger.Location = new System.Drawing.Point(287, 471);
+ this.Berger.Name = "Berger";
+ this.Berger.Size = new System.Drawing.Size(50, 63);
+ this.Berger.TabIndex = 71;
+ this.Berger.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Berger.UseVisualStyleBackColor = false;
+ //
+ // LuckyLabel
+ //
+ this.LuckyLabel.AutoSize = true;
+ this.LuckyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LuckyLabel.Location = new System.Drawing.Point(320, 222);
+ this.LuckyLabel.Name = "LuckyLabel";
+ this.LuckyLabel.Size = new System.Drawing.Size(79, 29);
+ this.LuckyLabel.TabIndex = 70;
+ this.LuckyLabel.Text = "LUCKY";
+ //
+ // LuckyVR
+ //
+ this.LuckyVR.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LuckyVR.BackgroundImage")));
+ this.LuckyVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LuckyVR.FlatAppearance.BorderSize = 0;
+ this.LuckyVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LuckyVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LuckyVR.FunkeyID = "000000BF";
+ this.LuckyVR.Location = new System.Drawing.Point(389, 260);
+ this.LuckyVR.Name = "LuckyVR";
+ this.LuckyVR.Size = new System.Drawing.Size(50, 63);
+ this.LuckyVR.TabIndex = 69;
+ this.LuckyVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LuckyVR.UseVisualStyleBackColor = false;
+ //
+ // LuckyR
+ //
+ this.LuckyR.BackColor = System.Drawing.Color.Transparent;
+ this.LuckyR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LuckyR.BackgroundImage")));
+ this.LuckyR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LuckyR.FlatAppearance.BorderSize = 0;
+ this.LuckyR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LuckyR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LuckyR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.LuckyR.FunkeyID = "000000AF";
+ this.LuckyR.Location = new System.Drawing.Point(338, 260);
+ this.LuckyR.Name = "LuckyR";
+ this.LuckyR.Size = new System.Drawing.Size(50, 63);
+ this.LuckyR.TabIndex = 68;
+ this.LuckyR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LuckyR.UseVisualStyleBackColor = false;
+ //
+ // Lucky
+ //
+ this.Lucky.BackColor = System.Drawing.Color.Transparent;
+ this.Lucky.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Lucky.BackgroundImage")));
+ this.Lucky.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Lucky.FlatAppearance.BorderSize = 0;
+ this.Lucky.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Lucky.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Lucky.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Lucky.FunkeyID = "000000A2";
+ this.Lucky.Location = new System.Drawing.Point(287, 260);
+ this.Lucky.Name = "Lucky";
+ this.Lucky.Size = new System.Drawing.Size(50, 63);
+ this.Lucky.TabIndex = 67;
+ this.Lucky.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Lucky.UseVisualStyleBackColor = false;
+ //
+ // TankLabel
+ //
+ this.TankLabel.AutoSize = true;
+ this.TankLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TankLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TankLabel.Location = new System.Drawing.Point(327, 328);
+ this.TankLabel.Name = "TankLabel";
+ this.TankLabel.Size = new System.Drawing.Size(72, 29);
+ this.TankLabel.TabIndex = 66;
+ this.TankLabel.Text = "TANK";
+ //
+ // TankVR
+ //
+ this.TankVR.BackColor = System.Drawing.Color.Transparent;
+ this.TankVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TankVR.BackgroundImage")));
+ this.TankVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TankVR.FlatAppearance.BorderSize = 0;
+ this.TankVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TankVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TankVR.FunkeyID = "000000C0";
+ this.TankVR.Location = new System.Drawing.Point(389, 363);
+ this.TankVR.Name = "TankVR";
+ this.TankVR.Size = new System.Drawing.Size(50, 63);
+ this.TankVR.TabIndex = 65;
+ this.TankVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TankVR.UseVisualStyleBackColor = false;
+ //
+ // TankR
+ //
+ this.TankR.BackColor = System.Drawing.Color.Transparent;
+ this.TankR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TankR.BackgroundImage")));
+ this.TankR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TankR.FlatAppearance.BorderSize = 0;
+ this.TankR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TankR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TankR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TankR.FunkeyID = "000000B3";
+ this.TankR.Location = new System.Drawing.Point(338, 363);
+ this.TankR.Name = "TankR";
+ this.TankR.Size = new System.Drawing.Size(50, 63);
+ this.TankR.TabIndex = 64;
+ this.TankR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TankR.UseVisualStyleBackColor = false;
+ //
+ // Tank
+ //
+ this.Tank.BackColor = System.Drawing.Color.Transparent;
+ this.Tank.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tank.BackgroundImage")));
+ this.Tank.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tank.FlatAppearance.BorderSize = 0;
+ this.Tank.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tank.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tank.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tank.FunkeyID = "000000A3";
+ this.Tank.Location = new System.Drawing.Point(287, 363);
+ this.Tank.Name = "Tank";
+ this.Tank.Size = new System.Drawing.Size(50, 63);
+ this.Tank.TabIndex = 63;
+ this.Tank.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tank.UseVisualStyleBackColor = false;
+ //
+ // DyerLabel
+ //
+ this.DyerLabel.AutoSize = true;
+ this.DyerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DyerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DyerLabel.Location = new System.Drawing.Point(328, 101);
+ this.DyerLabel.Name = "DyerLabel";
+ this.DyerLabel.Size = new System.Drawing.Size(67, 29);
+ this.DyerLabel.TabIndex = 62;
+ this.DyerLabel.Text = "DYER";
+ //
+ // DyerVR
+ //
+ this.DyerVR.BackColor = System.Drawing.Color.Transparent;
+ this.DyerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DyerVR.BackgroundImage")));
+ this.DyerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DyerVR.FlatAppearance.BorderSize = 0;
+ this.DyerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DyerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DyerVR.FunkeyID = "000000BE";
+ this.DyerVR.Location = new System.Drawing.Point(389, 142);
+ this.DyerVR.Name = "DyerVR";
+ this.DyerVR.Size = new System.Drawing.Size(50, 63);
+ this.DyerVR.TabIndex = 61;
+ this.DyerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DyerVR.UseVisualStyleBackColor = false;
+ //
+ // DyerR
+ //
+ this.DyerR.BackColor = System.Drawing.Color.Transparent;
+ this.DyerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DyerR.BackgroundImage")));
+ this.DyerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DyerR.FlatAppearance.BorderSize = 0;
+ this.DyerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DyerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DyerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DyerR.FunkeyID = "000000AE";
+ this.DyerR.Location = new System.Drawing.Point(338, 142);
+ this.DyerR.Name = "DyerR";
+ this.DyerR.Size = new System.Drawing.Size(50, 63);
+ this.DyerR.TabIndex = 60;
+ this.DyerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DyerR.UseVisualStyleBackColor = false;
+ //
+ // Dyer
+ //
+ this.Dyer.BackColor = System.Drawing.Color.Transparent;
+ this.Dyer.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dyer.BackgroundImage")));
+ this.Dyer.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dyer.FlatAppearance.BorderSize = 0;
+ this.Dyer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dyer.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dyer.ForeColor = System.Drawing.Color.Transparent;
+ this.Dyer.FunkeyID = "000000A1";
+ this.Dyer.Location = new System.Drawing.Point(287, 142);
+ this.Dyer.Name = "Dyer";
+ this.Dyer.Size = new System.Drawing.Size(50, 63);
+ this.Dyer.TabIndex = 59;
+ this.Dyer.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dyer.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // DayDreamOasisLabel
+ //
+ this.DayDreamOasisLabel.AutoSize = true;
+ this.DayDreamOasisLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DayDreamOasisLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DayDreamOasisLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DayDreamOasisLabel.Location = new System.Drawing.Point(176, 24);
+ this.DayDreamOasisLabel.Name = "DayDreamOasisLabel";
+ this.DayDreamOasisLabel.Size = new System.Drawing.Size(374, 52);
+ this.DayDreamOasisLabel.TabIndex = 57;
+ this.DayDreamOasisLabel.Text = "DAYDREAM OASIS";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 95;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 96;
+ //
+ // DaydreamOasis
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.BergerLabel);
+ this.Controls.Add(this.BergerVR);
+ this.Controls.Add(this.BergerR);
+ this.Controls.Add(this.Berger);
+ this.Controls.Add(this.LuckyLabel);
+ this.Controls.Add(this.LuckyVR);
+ this.Controls.Add(this.LuckyR);
+ this.Controls.Add(this.Lucky);
+ this.Controls.Add(this.TankLabel);
+ this.Controls.Add(this.TankVR);
+ this.Controls.Add(this.TankR);
+ this.Controls.Add(this.Tank);
+ this.Controls.Add(this.DyerLabel);
+ this.Controls.Add(this.DyerVR);
+ this.Controls.Add(this.DyerR);
+ this.Controls.Add(this.Dyer);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.DayDreamOasisLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "DaydreamOasis";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BergerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BergerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BergerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Berger;
+ private System.Windows.Forms.Label LuckyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton LuckyVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton LuckyR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Lucky;
+ private System.Windows.Forms.Label TankLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TankVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TankR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tank;
+ private System.Windows.Forms.Label DyerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DyerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DyerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dyer;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label DayDreamOasisLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/DaydreamOasis.cs b/FunkeySelector/DaydreamOasis.cs
new file mode 100644
index 0000000..5a4d5da
--- /dev/null
+++ b/FunkeySelector/DaydreamOasis.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class DaydreamOasis : BasicForm
+ {
+ public DaydreamOasis()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form9.resx b/FunkeySelector/DaydreamOasis.resx
similarity index 99%
rename from FunkeySelector/Form9.resx
rename to FunkeySelector/DaydreamOasis.resx
index ae32e4b..e11ddca 100644
--- a/FunkeySelector/Form9.resx
+++ b/FunkeySelector/DaydreamOasis.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpZJREFUaEPtWXlQm/eZpk3TI9trp9Om2c220862mTpJk3WaxC6JHQ6DzWHEfQok
@@ -203,7 +203,7 @@
OxeOq6srr9fWutPq+Hts+1a/Db7ES7zES/y/hIHBfwKLHFpVnfk/lAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuFJREFUaEPtWXlUT/2+3u88cXhNlVBKisqUIeGNRlGEonnu1zz8mjXPRUlzSika
@@ -290,7 +290,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdVJREFUaEPtmXl002W6xzvDOHodHb3e6+AyoLIIdqC00NJ9TfekTdI23dI2XdO9
@@ -372,7 +372,7 @@
PctkYn/lfSSP5JE8kv9XYmb2T8FK2/tbzKkCAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElFJREFUaEPtWGdU2/e5JnFvRpv2uE7T4SRO2qYrja9z254mzWjS5iRx3eHaDa0z
@@ -456,7 +456,7 @@
lobvpXXvyy+tD/EQD/EQD/F/Bzu7/wXYRAkshvU/jwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEGxJREFUaEPtWHlU1Pe1HxeWGWb7zb7vMzAMM6wjiyOIG8gmGkAQBAQFBRFwwQBR
@@ -532,7 +532,7 @@
DHffWu/hHu7hHu7hHwce738BURYdzanD6zAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmhJREFUaEPtWHdY1Ge6HU0xzRQ3u5s1emM2WTfJWhLTzKZcY9ysSTYaE0tUmpSB
@@ -617,7 +617,7 @@
TkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuBJREFUaEPtWHdUlPe2RY2JGnvuTbmmrJvc5GmqBmsECwIKCNJ7ncYMZYCZAYaB
@@ -704,7 +704,7 @@
TkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEipJREFUaEPtWXlw0+eZFgbMnQtwGm6MbXwj41uWLcuSD8nWad33fd+HLUuyZS4D
@@ -788,7 +788,7 @@
rkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpJJREFUaEPtWXlw2+WZVpw7IQQMOSFOYjuOHd+3fEiyrPu0DuuwJEvWfd+SJVs+
@@ -873,7 +873,7 @@
IPvwT79Zwnv8QcbGwo/fxE3cxE3cxP9HMBj/DS/wvBXycVAxAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEvZJREFUaEPtWXdYm/edp3EzPNnTbLGHAQktxJ4CiY3YiCUkQGwhBJKQACGGQAyB
@@ -960,7 +960,7 @@
8AhfH6ys/hs3+6FoUZJlQAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnJJREFUaEPtWXdwlPeZ/m3vvfe+2qJdlS1qq15WIFRASEIIDBgsRDHFmGKKMBKm
@@ -1045,7 +1045,7 @@
j09lCwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEv9JREFUaEPtWXl0k3W6Tpe0SbM3W5MmTZq0Tdq0ado03TdK6b636b7TNaULbelO
diff --git a/FunkeySelector/Form1.Designer.cs b/FunkeySelector/Form1.Designer.cs
index 54594e8..3fe938e 100644
--- a/FunkeySelector/Form1.Designer.cs
+++ b/FunkeySelector/Form1.Designer.cs
@@ -30,31 +30,31 @@ private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.titleLabel = new System.Windows.Forms.Label();
- this.FunkeysTownButton = new System.Windows.Forms.Button();
- this.KelpyBasinButton = new System.Windows.Forms.Button();
- this.MagmaGorgeButton = new System.Windows.Forms.Button();
- this.LaputtaStationButton = new System.Windows.Forms.Button();
- this.FunkikiIslandButton = new System.Windows.Forms.Button();
- this.RoyaltonRacingComplexButton = new System.Windows.Forms.Button();
- this.NightmareRiftButton = new System.Windows.Forms.Button();
- this.DaydreamOasisButton = new System.Windows.Forms.Button();
- this.HiddenRealmButton = new System.Windows.Forms.Button();
- this.ParadoxGreenButton = new System.Windows.Forms.Button();
+ this.KelpyBasinButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.MagmaGorgeButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.LaputtaStationButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.FunkikiIslandButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.RoyaltonRacingComplexButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.NightmareRiftButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.DaydreamOasisButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.HiddenRealmButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.ParadoxGreenButton = new FunkeySelector.UserControls.ChangeFormButton();
this.UBLabel = new System.Windows.Forms.Label();
- this.UB = new System.Windows.Forms.Button();
- this.UnusedFunkeysButton = new System.Windows.Forms.Button();
+ this.UnusedFunkeysButton = new FunkeySelector.UserControls.ChangeFormButton();
this.InsertCustomID = new System.Windows.Forms.Button();
this.CustomIDTextBox = new System.Windows.Forms.TextBox();
- this.CustomFunkeysButton = new System.Windows.Forms.Button();
- this.OptionsButton = new System.Windows.Forms.Button();
+ this.CustomFunkeysButton = new FunkeySelector.UserControls.ChangeFormButton();
this.Series1Label = new System.Windows.Forms.Label();
this.Series2Label = new System.Windows.Forms.Label();
this.Series3Label = new System.Windows.Forms.Label();
this.Series4Label = new System.Windows.Forms.Label();
this.Series5Label = new System.Windows.Forms.Label();
this.OtherLabel = new System.Windows.Forms.Label();
- this.closeButton1 = new FunkeySelector.CloseButton();
this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton1 = new FunkeySelector.UserControls.CloseButton();
+ this.UB = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FunkeysTownButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.optionsButton = new FunkeySelector.UserControls.OptionsButton();
this.SuspendLayout();
//
// titleLabel
@@ -69,23 +69,6 @@ private void InitializeComponent()
this.titleLabel.TabIndex = 1;
this.titleLabel.Text = "FUNKEYSELECTORGUI";
//
- // FunkeysTownButton
- //
- this.FunkeysTownButton.BackColor = System.Drawing.Color.Transparent;
- this.FunkeysTownButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.FunkeysTownButton.FlatAppearance.BorderSize = 0;
- this.FunkeysTownButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.FunkeysTownButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.FunkeysTownButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.FunkeysTownButton.Location = new System.Drawing.Point(76, 167);
- this.FunkeysTownButton.Name = "FunkeysTownButton";
- this.FunkeysTownButton.Size = new System.Drawing.Size(174, 37);
- this.FunkeysTownButton.TabIndex = 3;
- this.FunkeysTownButton.Text = "FUNKEYSTOWN";
- this.FunkeysTownButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.FunkeysTownButton.UseVisualStyleBackColor = false;
- this.FunkeysTownButton.Click += new System.EventHandler(this.FunkeysTown_Click);
- //
// KelpyBasinButton
//
this.KelpyBasinButton.BackColor = System.Drawing.Color.Transparent;
@@ -94,6 +77,8 @@ private void InitializeComponent()
this.KelpyBasinButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.KelpyBasinButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.KelpyBasinButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.KelpyBasinButton.FormToOpen = "KelpyBasin";
+ this.KelpyBasinButton.KeepCurrentForm = false;
this.KelpyBasinButton.Location = new System.Drawing.Point(76, 248);
this.KelpyBasinButton.Name = "KelpyBasinButton";
this.KelpyBasinButton.Size = new System.Drawing.Size(174, 32);
@@ -101,7 +86,6 @@ private void InitializeComponent()
this.KelpyBasinButton.Text = "KELPY BASIN";
this.KelpyBasinButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.KelpyBasinButton.UseVisualStyleBackColor = false;
- this.KelpyBasinButton.Click += new System.EventHandler(this.KelpyBasin_Click);
//
// MagmaGorgeButton
//
@@ -111,6 +95,8 @@ private void InitializeComponent()
this.MagmaGorgeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.MagmaGorgeButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MagmaGorgeButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MagmaGorgeButton.FormToOpen = "MagmaGorge";
+ this.MagmaGorgeButton.KeepCurrentForm = false;
this.MagmaGorgeButton.Location = new System.Drawing.Point(76, 210);
this.MagmaGorgeButton.Name = "MagmaGorgeButton";
this.MagmaGorgeButton.Size = new System.Drawing.Size(174, 32);
@@ -118,7 +104,6 @@ private void InitializeComponent()
this.MagmaGorgeButton.Text = "MAGMA GORGE";
this.MagmaGorgeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.MagmaGorgeButton.UseVisualStyleBackColor = false;
- this.MagmaGorgeButton.Click += new System.EventHandler(this.MagmaGorge_Click);
//
// LaputtaStationButton
//
@@ -128,6 +113,8 @@ private void InitializeComponent()
this.LaputtaStationButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.LaputtaStationButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.LaputtaStationButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LaputtaStationButton.FormToOpen = "LaputtaStation";
+ this.LaputtaStationButton.KeepCurrentForm = false;
this.LaputtaStationButton.Location = new System.Drawing.Point(74, 286);
this.LaputtaStationButton.Name = "LaputtaStationButton";
this.LaputtaStationButton.Size = new System.Drawing.Size(182, 31);
@@ -135,7 +122,6 @@ private void InitializeComponent()
this.LaputtaStationButton.Text = "LAPUTTA STATION";
this.LaputtaStationButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.LaputtaStationButton.UseVisualStyleBackColor = false;
- this.LaputtaStationButton.Click += new System.EventHandler(this.LaputtaStation_Click);
//
// FunkikiIslandButton
//
@@ -145,6 +131,8 @@ private void InitializeComponent()
this.FunkikiIslandButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.FunkikiIslandButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FunkikiIslandButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkikiIslandButton.FormToOpen = "FunkikiIsland";
+ this.FunkikiIslandButton.KeepCurrentForm = false;
this.FunkikiIslandButton.Location = new System.Drawing.Point(42, 359);
this.FunkikiIslandButton.Name = "FunkikiIslandButton";
this.FunkikiIslandButton.Size = new System.Drawing.Size(245, 30);
@@ -152,7 +140,6 @@ private void InitializeComponent()
this.FunkikiIslandButton.Text = "FUNKIKI ISLAND";
this.FunkikiIslandButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.FunkikiIslandButton.UseVisualStyleBackColor = false;
- this.FunkikiIslandButton.Click += new System.EventHandler(this.FunkikiIsland_Click);
//
// RoyaltonRacingComplexButton
//
@@ -162,6 +149,8 @@ private void InitializeComponent()
this.RoyaltonRacingComplexButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.RoyaltonRacingComplexButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RoyaltonRacingComplexButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RoyaltonRacingComplexButton.FormToOpen = "RoyaltonRacingComplex";
+ this.RoyaltonRacingComplexButton.KeepCurrentForm = false;
this.RoyaltonRacingComplexButton.Location = new System.Drawing.Point(33, 395);
this.RoyaltonRacingComplexButton.Name = "RoyaltonRacingComplexButton";
this.RoyaltonRacingComplexButton.Size = new System.Drawing.Size(267, 31);
@@ -169,7 +158,6 @@ private void InitializeComponent()
this.RoyaltonRacingComplexButton.Text = "ROYALTON RACING COMPLEX";
this.RoyaltonRacingComplexButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.RoyaltonRacingComplexButton.UseVisualStyleBackColor = false;
- this.RoyaltonRacingComplexButton.Click += new System.EventHandler(this.RoyaltonRacingComplex_Click);
//
// NightmareRiftButton
//
@@ -179,6 +167,8 @@ private void InitializeComponent()
this.NightmareRiftButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.NightmareRiftButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.NightmareRiftButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NightmareRiftButton.FormToOpen = "NightmareRift";
+ this.NightmareRiftButton.KeepCurrentForm = false;
this.NightmareRiftButton.Location = new System.Drawing.Point(293, 205);
this.NightmareRiftButton.Name = "NightmareRiftButton";
this.NightmareRiftButton.Size = new System.Drawing.Size(175, 31);
@@ -186,7 +176,6 @@ private void InitializeComponent()
this.NightmareRiftButton.Text = "NIGHTMARE RIFT";
this.NightmareRiftButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.NightmareRiftButton.UseVisualStyleBackColor = false;
- this.NightmareRiftButton.Click += new System.EventHandler(this.NightmareRift_Click);
//
// DaydreamOasisButton
//
@@ -196,6 +185,8 @@ private void InitializeComponent()
this.DaydreamOasisButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.DaydreamOasisButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.DaydreamOasisButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DaydreamOasisButton.FormToOpen = "DaydreamOasis";
+ this.DaydreamOasisButton.KeepCurrentForm = false;
this.DaydreamOasisButton.Location = new System.Drawing.Point(293, 167);
this.DaydreamOasisButton.Name = "DaydreamOasisButton";
this.DaydreamOasisButton.Size = new System.Drawing.Size(175, 32);
@@ -203,7 +194,6 @@ private void InitializeComponent()
this.DaydreamOasisButton.Text = "DAYDREAM OASIS";
this.DaydreamOasisButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.DaydreamOasisButton.UseVisualStyleBackColor = false;
- this.DaydreamOasisButton.Click += new System.EventHandler(this.DaydreamOasis_Click);
//
// HiddenRealmButton
//
@@ -213,6 +203,8 @@ private void InitializeComponent()
this.HiddenRealmButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.HiddenRealmButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.HiddenRealmButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.HiddenRealmButton.FormToOpen = "HiddenRealm";
+ this.HiddenRealmButton.KeepCurrentForm = false;
this.HiddenRealmButton.Location = new System.Drawing.Point(307, 298);
this.HiddenRealmButton.Name = "HiddenRealmButton";
this.HiddenRealmButton.Size = new System.Drawing.Size(151, 36);
@@ -220,7 +212,6 @@ private void InitializeComponent()
this.HiddenRealmButton.Text = "HIDDEN REALM";
this.HiddenRealmButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.HiddenRealmButton.UseVisualStyleBackColor = false;
- this.HiddenRealmButton.Click += new System.EventHandler(this.HiddenRealm_Click);
//
// ParadoxGreenButton
//
@@ -230,6 +221,8 @@ private void InitializeComponent()
this.ParadoxGreenButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.ParadoxGreenButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ParadoxGreenButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.ParadoxGreenButton.FormToOpen = "ParadoxGreen";
+ this.ParadoxGreenButton.KeepCurrentForm = false;
this.ParadoxGreenButton.Location = new System.Drawing.Point(293, 391);
this.ParadoxGreenButton.Name = "ParadoxGreenButton";
this.ParadoxGreenButton.Size = new System.Drawing.Size(175, 34);
@@ -237,7 +230,6 @@ private void InitializeComponent()
this.ParadoxGreenButton.Text = "PARADOX GREEN";
this.ParadoxGreenButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.ParadoxGreenButton.UseVisualStyleBackColor = false;
- this.ParadoxGreenButton.Click += new System.EventHandler(this.ParadoxGreen_Click);
//
// UBLabel
//
@@ -245,29 +237,12 @@ private void InitializeComponent()
this.UBLabel.BackColor = System.Drawing.Color.Transparent;
this.UBLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.UBLabel.ForeColor = System.Drawing.SystemColors.Control;
- this.UBLabel.Location = new System.Drawing.Point(572, 328);
+ this.UBLabel.Location = new System.Drawing.Point(572, 337);
this.UBLabel.Name = "UBLabel";
this.UBLabel.Size = new System.Drawing.Size(45, 29);
this.UBLabel.TabIndex = 72;
this.UBLabel.Text = "U.B";
//
- // UB
- //
- this.UB.BackColor = System.Drawing.Color.Transparent;
- this.UB.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("UB.BackgroundImage")));
- this.UB.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.UB.FlatAppearance.BorderSize = 0;
- this.UB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.UB.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.UB.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.UB.Location = new System.Drawing.Point(568, 359);
- this.UB.Name = "UB";
- this.UB.Size = new System.Drawing.Size(50, 63);
- this.UB.TabIndex = 71;
- this.UB.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.UB.UseVisualStyleBackColor = false;
- this.UB.Click += new System.EventHandler(this.UB_Click);
- //
// UnusedFunkeysButton
//
this.UnusedFunkeysButton.BackColor = System.Drawing.Color.Transparent;
@@ -276,6 +251,8 @@ private void InitializeComponent()
this.UnusedFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.UnusedFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.UnusedFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.UnusedFunkeysButton.FormToOpen = "UnusedFunkeys";
+ this.UnusedFunkeysButton.KeepCurrentForm = false;
this.UnusedFunkeysButton.Location = new System.Drawing.Point(505, 177);
this.UnusedFunkeysButton.Name = "UnusedFunkeysButton";
this.UnusedFunkeysButton.Size = new System.Drawing.Size(177, 31);
@@ -283,7 +260,6 @@ private void InitializeComponent()
this.UnusedFunkeysButton.Text = "UNUSED FUNKEYS";
this.UnusedFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.UnusedFunkeysButton.UseVisualStyleBackColor = false;
- this.UnusedFunkeysButton.Click += new System.EventHandler(this.UnusedFunkeys_Click);
//
// InsertCustomID
//
@@ -317,6 +293,8 @@ private void InitializeComponent()
this.CustomFunkeysButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.CustomFunkeysButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.CustomFunkeysButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.CustomFunkeysButton.FormToOpen = "CustomFunkeys";
+ this.CustomFunkeysButton.KeepCurrentForm = false;
this.CustomFunkeysButton.Location = new System.Drawing.Point(486, 214);
this.CustomFunkeysButton.Name = "CustomFunkeysButton";
this.CustomFunkeysButton.Size = new System.Drawing.Size(208, 36);
@@ -324,29 +302,6 @@ private void InitializeComponent()
this.CustomFunkeysButton.Text = "CUSTOM FUNKEYS";
this.CustomFunkeysButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.CustomFunkeysButton.UseVisualStyleBackColor = false;
- this.CustomFunkeysButton.Click += new System.EventHandler(this.CustomFunkeys_Click);
- //
- // OptionsButton
- //
- this.OptionsButton.BackColor = System.Drawing.Color.Transparent;
- this.OptionsButton.BackgroundImage = global::FunkeySelector.Properties.Resources._679;
- this.OptionsButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.OptionsButton.FlatAppearance.BorderSize = 0;
- this.OptionsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.OptionsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.OptionsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.OptionsButton.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.OptionsButton.ForeColor = System.Drawing.Color.Transparent;
- this.OptionsButton.Location = new System.Drawing.Point(668, 44);
- this.OptionsButton.Name = "OptionsButton";
- this.OptionsButton.Size = new System.Drawing.Size(39, 44);
- this.OptionsButton.TabIndex = 78;
- this.OptionsButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.OptionsButton.UseVisualStyleBackColor = false;
- this.OptionsButton.Click += new System.EventHandler(this.OptionsButton_Click);
- this.OptionsButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OptionsButton_MouseDown);
- this.OptionsButton.MouseEnter += new System.EventHandler(this.OptionsButton_MouseEnter);
- this.OptionsButton.MouseLeave += new System.EventHandler(this.OptionsButton_MouseLeave);
//
// Series1Label
//
@@ -420,6 +375,13 @@ private void InitializeComponent()
this.OtherLabel.TabIndex = 85;
this.OtherLabel.Text = "OTHER";
//
+ // minimizeButton1
+ //
+ this.minimizeButton1.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton1.Name = "minimizeButton1";
+ this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton1.TabIndex = 87;
+ //
// closeButton1
//
this.closeButton1.Location = new System.Drawing.Point(681, 18);
@@ -427,12 +389,48 @@ private void InitializeComponent()
this.closeButton1.Size = new System.Drawing.Size(26, 20);
this.closeButton1.TabIndex = 86;
//
- // minimizeButton1
+ // UB
//
- this.minimizeButton1.Location = new System.Drawing.Point(642, 16);
- this.minimizeButton1.Name = "minimizeButton1";
- this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
- this.minimizeButton1.TabIndex = 87;
+ this.UB.BackColor = System.Drawing.Color.Transparent;
+ this.UB.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("UB.BackgroundImage")));
+ this.UB.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.UB.FlatAppearance.BorderSize = 0;
+ this.UB.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.UB.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UB.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.UB.FunkeyID = "FFFFFFF0";
+ this.UB.Location = new System.Drawing.Point(568, 359);
+ this.UB.Name = "UB";
+ this.UB.Size = new System.Drawing.Size(50, 63);
+ this.UB.TabIndex = 71;
+ this.UB.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.UB.UseVisualStyleBackColor = false;
+ //
+ // FunkeysTownButton
+ //
+ this.FunkeysTownButton.BackColor = System.Drawing.Color.Transparent;
+ this.FunkeysTownButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.FunkeysTownButton.FlatAppearance.BorderSize = 0;
+ this.FunkeysTownButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FunkeysTownButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkeysTownButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FunkeysTownButton.FormToOpen = "FunkeysTown";
+ this.FunkeysTownButton.KeepCurrentForm = false;
+ this.FunkeysTownButton.Location = new System.Drawing.Point(76, 167);
+ this.FunkeysTownButton.Name = "FunkeysTownButton";
+ this.FunkeysTownButton.Size = new System.Drawing.Size(174, 37);
+ this.FunkeysTownButton.TabIndex = 3;
+ this.FunkeysTownButton.Text = "FUNKEYSTOWN";
+ this.FunkeysTownButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FunkeysTownButton.UseVisualStyleBackColor = false;
+ //
+ // optionsButton
+ //
+ this.optionsButton.BackColor = System.Drawing.Color.Transparent;
+ this.optionsButton.Location = new System.Drawing.Point(668, 44);
+ this.optionsButton.Name = "optionsButton";
+ this.optionsButton.Size = new System.Drawing.Size(39, 44);
+ this.optionsButton.TabIndex = 88;
//
// Form1
//
@@ -442,6 +440,7 @@ private void InitializeComponent()
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.ClientSize = new System.Drawing.Size(727, 563);
+ this.Controls.Add(this.optionsButton);
this.Controls.Add(this.minimizeButton1);
this.Controls.Add(this.closeButton1);
this.Controls.Add(this.OtherLabel);
@@ -450,7 +449,6 @@ private void InitializeComponent()
this.Controls.Add(this.Series3Label);
this.Controls.Add(this.Series2Label);
this.Controls.Add(this.Series1Label);
- this.Controls.Add(this.OptionsButton);
this.Controls.Add(this.CustomFunkeysButton);
this.Controls.Add(this.CustomIDTextBox);
this.Controls.Add(this.InsertCustomID);
@@ -474,6 +472,7 @@ private void InitializeComponent()
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
this.ResumeLayout(false);
this.PerformLayout();
@@ -481,31 +480,31 @@ private void InitializeComponent()
#endregion
private System.Windows.Forms.Label titleLabel;
- private System.Windows.Forms.Button FunkeysTownButton;
- private System.Windows.Forms.Button KelpyBasinButton;
- private System.Windows.Forms.Button MagmaGorgeButton;
- private System.Windows.Forms.Button LaputtaStationButton;
- private System.Windows.Forms.Button FunkikiIslandButton;
- private System.Windows.Forms.Button RoyaltonRacingComplexButton;
- private System.Windows.Forms.Button NightmareRiftButton;
- private System.Windows.Forms.Button DaydreamOasisButton;
- private System.Windows.Forms.Button HiddenRealmButton;
- private System.Windows.Forms.Button ParadoxGreenButton;
+ private FunkeySelector.UserControls.ChangeFormButton FunkeysTownButton;
+ private FunkeySelector.UserControls.ChangeFormButton MagmaGorgeButton;
+ private FunkeySelector.UserControls.ChangeFormButton LaputtaStationButton;
+ private FunkeySelector.UserControls.ChangeFormButton FunkikiIslandButton;
+ private FunkeySelector.UserControls.ChangeFormButton RoyaltonRacingComplexButton;
+ private FunkeySelector.UserControls.ChangeFormButton NightmareRiftButton;
+ private FunkeySelector.UserControls.ChangeFormButton DaydreamOasisButton;
+ private FunkeySelector.UserControls.ChangeFormButton HiddenRealmButton;
+ private FunkeySelector.UserControls.ChangeFormButton ParadoxGreenButton;
private System.Windows.Forms.Label UBLabel;
- private System.Windows.Forms.Button UB;
- private System.Windows.Forms.Button UnusedFunkeysButton;
+ private FunkeySelector.UserControls.FunkeyChangerButton UB;
private System.Windows.Forms.Button InsertCustomID;
private System.Windows.Forms.TextBox CustomIDTextBox;
- private System.Windows.Forms.Button CustomFunkeysButton;
- private System.Windows.Forms.Button OptionsButton;
+ private FunkeySelector.UserControls.ChangeFormButton CustomFunkeysButton;
private System.Windows.Forms.Label Series1Label;
private System.Windows.Forms.Label Series2Label;
private System.Windows.Forms.Label Series3Label;
private System.Windows.Forms.Label Series4Label;
private System.Windows.Forms.Label Series5Label;
private System.Windows.Forms.Label OtherLabel;
- private CloseButton closeButton1;
+ private UserControls.CloseButton closeButton1;
private UserControls.MinimizeButton minimizeButton1;
+ private UserControls.ChangeFormButton KelpyBasinButton;
+ private UserControls.OptionsButton optionsButton;
+ private FunkeySelector.UserControls.ChangeFormButton UnusedFunkeysButton;
}
}
diff --git a/FunkeySelector/Form1.cs b/FunkeySelector/Form1.cs
index a271941..3604ea7 100644
--- a/FunkeySelector/Form1.cs
+++ b/FunkeySelector/Form1.cs
@@ -11,249 +11,74 @@
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using FunkeySelector.UserControls;
namespace FunkeySelector
{
- public partial class Form1 : Form
+ public partial class Form1 : BasicForm
{
- //
- //Initial Setups
- //
+ static bool firstStart = true;
- CustomFManager customF = new(); //Sets the CustomFManager to customf.
- bool firstStart = true;
-
- public Form1() //When the form is opened.
+ public Form1()
{
InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- if (firstStart == true)
+ if (firstStart == false) return;
+ firstStart = false;
+
+ if (
+ Properties.Settings.Default.disableGameCheck == false &&
+ !File.Exists("UBFunkeys.exe") && !File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("The U.B. Funkeys game was not found! Did you put FunkeySelectorGUI in the RadicaGame folder?");
+
+ if (
+ Properties.Settings.Default.disableModCheck == false &&
+ File.Exists("Main.swf")
+ )
{
- if (Properties.Settings.Default.disableGameCheck == false) //If the game check is allowed.
- {
- if (!File.Exists("UBFunkeys.exe")) //Checks if it's in the RadicaGame folder.
- {
- if (!File.Exists("OpenFK.exe")) //Ensures that OpenFK users won't get warned.
- {
- MessageBox.Show("The U.B. Funkeys game was not found! Did you put FunkeySelectorGUI in the RadicaGame folder?");
- }
- }
- }
- if (Properties.Settings.Default.disableModCheck == false) // Checks if mod check is allowed.
- {
- if (File.Exists("Main.swf")) //Checks if the main.swf is in the directory, to prevent null errors.
- {
- if (CalculateMD5("Main.swf") != "93261ce3dc332fdee5d4335eab0a8e63") //Compares the MD5 hash of the local main.swf with the mod's main.swf.
- {
- if (File.Exists("OpenFK.exe")) //Ensures that OpenFK users won't get warned.
- {
- Debug.WriteLine("OpenFK detected! Skipping mod check.");
- }
- else MessageBox.Show("Could not detect the Funkeys Selection Mod! Did you install the mod?");
- }else if (CalculateMD5("Main.swf") == "93261ce3dc332fdee5d4335eab0a8e63" && File.Exists("OpenFK.exe"))
- {
- MessageBox.Show("You are using OpenFK with the Funkeys Selection Mod. Please use the original Main.swf with OpenFK's customF mode for a better experience.");
- }
- }
- }
- if (Properties.Settings.Default.disableWineCheck == false) //Checks if Wine check is allowed.
- {
- if (Properties.Settings.Default.wineCompat == false) //If wine compatibility is on, it won't check as well, as there's no need to check and prompt for wine compatibility.
- {
- if (CheckMachineType() == true) //Calls the Wine checker
- {
- if (MessageBox.Show("FunkeySelectorGUI has detected it is running from Wine. If you want to enable Wine compatibility tweaks, which fixes the selection of Funkeys, click yes.", "Wine detected!", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- Properties.Settings.Default.wineCompat = true;
- }
- }
- }
- }
- firstStart = false; //Prevents the checks from running after first start.
- }
- }
+ string mainSWFMD5 = CalculateMD5("Main.swf");
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
+ if (
+ mainSWFMD5 != "93261ce3dc332fdee5d4335eab0a8e63" &&
+ !File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("Could not detect the Funkeys Selection Mod! Did you install the mod?");
- public static bool CheckMachineType() //Checks if FSGUI is running from Wine or Windows.
- {
- var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Wine\"); //Checks if Wine is detected using a registry key that usually is only used on Wine.
- if (key == null)
- {
- return false; //Windows
- }
- else
- {
- return true; //Wine
+ else if (
+ mainSWFMD5 == "93261ce3dc332fdee5d4335eab0a8e63" &&
+ File.Exists("OpenFK.exe")
+ ) _ = MessageBox.Show("You are using OpenFK with the Funkeys Selection Mod. Please use the original Main.swf with OpenFK's customF mode for a better experience.");
}
- }
-
- static string CalculateMD5(string filename) //Generates the MD5 hash of the main.swf.
- {
- using var md5 = MD5.Create();
- using var stream = File.OpenRead(filename); //Opens the main.swf.
- var hash = md5.ComputeHash(stream); //Computes the MD5 hash of the swf.
- return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant(); //Converts the hash to a readable string to compare.
- }
-
- //
- // End of Initial Setups
- //
-
- //
- // Button Clicks
- // Most of these just hide this form and shows another one.
- //
-
- private void FunkeysTown_Click(object sender, EventArgs e)
- {
- FunkeysTown funktown = new FunkeysTown();
- this.Hide();
- funktown.StartPosition = FormStartPosition.CenterParent;
- funktown.ShowDialog(this);
- }
-
- private void KelpyBasin_Click(object sender, EventArgs e)
- {
- Form3 kelp = new Form3();
- this.Hide();
- kelp.StartPosition = FormStartPosition.CenterParent;
- kelp.ShowDialog(this);
- }
-
- private void MagmaGorge_Click(object sender, EventArgs e)
- {
- Form4 magma = new Form4();
- this.Hide();
- magma.StartPosition = FormStartPosition.CenterParent;
- magma.ShowDialog(this);
- }
-
- private void LaputtaStation_Click(object sender, EventArgs e)
- {
- Form5 laput = new Form5();
- this.Hide();
- laput.StartPosition = FormStartPosition.CenterParent;
- laput.ShowDialog(this);
- }
-
- private void FunkikiIsland_Click(object sender, EventArgs e)
- {
- Form6 funkiki = new Form6();
- this.Hide();
- funkiki.StartPosition = FormStartPosition.CenterParent;
- funkiki.ShowDialog(this);
- }
-
- private void RoyaltonRacingComplex_Click(object sender, EventArgs e)
- {
- Form7 rrc = new Form7();
- this.Hide();
- rrc.StartPosition = FormStartPosition.CenterParent;
- rrc.ShowDialog(this);
- }
-
- private void NightmareRift_Click(object sender, EventArgs e)
- {
- Form8 nightmare = new Form8();
- this.Hide();
- nightmare.StartPosition = FormStartPosition.CenterParent;
- nightmare.ShowDialog(this);
+ // Asks user to enable wine tweaks
+ if (
+ Properties.Settings.Default.disableWineCheck == false &&
+ Properties.Settings.Default.wineCompat == false &&
+ IsWine() &&
+ MessageBox.Show(
+ "FunkeySelectorGUI has detected it is running from Wine. If you want to enable Wine compatibility tweaks, which fixes the selection of Funkeys, click yes.",
+ "Wine detected!",
+ MessageBoxButtons.YesNo
+ ) == DialogResult.Yes
+ ) Properties.Settings.Default.wineCompat = true;
}
- private void DaydreamOasis_Click(object sender, EventArgs e)
+ public static bool IsWine()
{
- Form9 daydream = new Form9();
- this.Hide();
- daydream.StartPosition = FormStartPosition.CenterParent;
- daydream.ShowDialog(this);
+ // This registry key is usually only present when running from Wine
+ var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Wine\");
+ return key != null;
}
- private void HiddenRealm_Click(object sender, EventArgs e)
+ static string CalculateMD5(string filename)
{
- Form10 hrf = new Form10();
- this.Hide();
- hrf.StartPosition = FormStartPosition.CenterParent;
- hrf.ShowDialog(this);
- }
-
- private void ParadoxGreen_Click(object sender, EventArgs e)
- {
- Form11 paradox = new Form11();
- this.Hide();
- paradox.StartPosition = FormStartPosition.CenterParent;
- paradox.ShowDialog(this);
- }
-
- private void UB_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("FFFFFFF0");
- }
-
- private void UnusedFunkeys_Click(object sender, EventArgs e)
- {
- Form12 unused = new Form12();
- this.Hide();
- unused.StartPosition = FormStartPosition.CenterParent;
- unused.ShowDialog(this);
+ using var md5 = MD5.Create();
+ using var stream = File.OpenRead(filename);
+ var hash = md5.ComputeHash(stream); // Converts the hash to a readable string to compare.
+ return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant();
}
private void InsertCustomID_Click(object sender, EventArgs e)
{
- customF.SetFunkey(CustomIDTextBox.Text);
- }
-
- private void CustomFunkeys_Click(object sender, EventArgs e)
- {
- Form13 customf = new Form13();
- this.Hide();
- customf.StartPosition = FormStartPosition.CenterParent;
- customf.ShowDialog(this);
- }
-
- private void OptionsButton_Click(object sender, EventArgs e)
- {
- Form14 options = new Form14();
- options.StartPosition = FormStartPosition.CenterParent;
- options.ShowDialog();
- }
-
- private void MinimizeButton_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //Options
- private void OptionsButton_MouseEnter(object sender, EventArgs e)
- {
- OptionsButton.BackgroundImage = Properties.Resources._681;
- }
-
- private void OptionsButton_MouseLeave(object sender, EventArgs e)
- {
- OptionsButton.BackgroundImage = Properties.Resources._679;
- }
-
- private void OptionsButton_MouseDown(object sender, MouseEventArgs e)
- {
- OptionsButton.BackgroundImage = Properties.Resources._683;
+ CustomF.SetFunkey(CustomIDTextBox.Text);
}
}
}
\ No newline at end of file
diff --git a/FunkeySelector/Form10.Designer.cs b/FunkeySelector/Form10.Designer.cs
deleted file mode 100644
index e93818b..0000000
--- a/FunkeySelector/Form10.Designer.cs
+++ /dev/null
@@ -1,559 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form10
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form10));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
- this.closeButton1 = new FunkeySelector.CloseButton();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(320, 353);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(100, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "BOMBLE";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(389, 385);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(338, 385);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(287, 385);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(333, 164);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(55, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "RAJ";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(389, 196);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(338, 196);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(287, 196);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(312, 262);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(72, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "YANG";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(389, 297);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(338, 297);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(287, 297);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(317, 58);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(83, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "SINGE";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(389, 98);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(338, 98);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(287, 98);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 9);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(225, 9);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(314, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "HIDDEN REALM";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(216, 449);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(74, 29);
- this.label6.TabIndex = 78;
- this.label6.Text = "MAUL";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(285, 481);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 77;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(234, 481);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 76;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(183, 481);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 75;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(407, 446);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(98, 29);
- this.label7.TabIndex = 101;
- this.label7.Text = "NECTAR";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button17.Location = new System.Drawing.Point(484, 481);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 100;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.Transparent;
- this.button18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button18.BackgroundImage")));
- this.button18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button18.FlatAppearance.BorderSize = 0;
- this.button18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button18.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button18.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button18.Location = new System.Drawing.Point(433, 481);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(50, 63);
- this.button18.TabIndex = 99;
- this.button18.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.Transparent;
- this.button19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button19.BackgroundImage")));
- this.button19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button19.FlatAppearance.BorderSize = 0;
- this.button19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button19.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button19.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button19.Location = new System.Drawing.Point(382, 481);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(50, 63);
- this.button19.TabIndex = 98;
- this.button19.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // minimizeButton1
- //
- this.minimizeButton1.Location = new System.Drawing.Point(641, 15);
- this.minimizeButton1.Name = "minimizeButton1";
- this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
- this.minimizeButton1.TabIndex = 102;
- //
- // closeButton1
- //
- this.closeButton1.Location = new System.Drawing.Point(680, 17);
- this.closeButton1.Name = "closeButton1";
- this.closeButton1.Size = new System.Drawing.Size(26, 20);
- this.closeButton1.TabIndex = 103;
- //
- // Form10
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.closeButton1);
- this.Controls.Add(this.minimizeButton1);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.button18);
- this.Controls.Add(this.button19);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form10";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button19;
- private UserControls.MinimizeButton minimizeButton1;
- private CloseButton closeButton1;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form10.cs b/FunkeySelector/Form10.cs
deleted file mode 100644
index 911e7c3..0000000
--- a/FunkeySelector/Form10.cs
+++ /dev/null
@@ -1,193 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form10 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form10()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Singe
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000102");
- }
-
- //Singe R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000106");
- }
-
- //Singe VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000010D");
- }
-
- //Raj
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000103");
- }
-
- //Raj R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000107");
- }
-
- //Raj VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000010E");
- }
-
- //Yang
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000104");
- }
-
- //Yang R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000108");
- }
-
- //Yang VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000010F");
- }
-
- //Bomble
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000105");
- }
-
- //Bomble R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000010C");
- }
-
- //Bomble VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000110");
- }
-
- //Maul
- private void button16_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000011A");
- }
-
- //Maul R
- private void button15_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000011E");
- }
-
- //Maul VR
- private void button14_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000125");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
-
-
- //Nectar
- private void button19_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000119");
- }
-
- //Nectar R
- private void button18_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000011D");
- }
-
- //Nectar VR
- private void button17_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000124");
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form11.Designer.cs b/FunkeySelector/Form11.Designer.cs
deleted file mode 100644
index b965bdc..0000000
--- a/FunkeySelector/Form11.Designer.cs
+++ /dev/null
@@ -1,355 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form11
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form11));
- this.label6 = new System.Windows.Forms.Label();
- this.button15 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button12 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(363, 413);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(54, 29);
- this.label6.TabIndex = 100;
- this.label6.Text = "ACE";
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(368, 445);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 98;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(350, 315);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(88, 29);
- this.label5.TabIndex = 96;
- this.label5.Text = "MULCH";
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(368, 347);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 94;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(363, 195);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(72, 29);
- this.label4.TabIndex = 92;
- this.label4.Text = "TADD";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(419, 227);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 91;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(368, 227);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 90;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(317, 227);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 89;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(206, 10);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(337, 52);
- this.label2.TabIndex = 79;
- this.label2.Text = "PARADOX GREEN";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 10);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 80;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(317, 129);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 81;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(368, 129);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 82;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(419, 129);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 83;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(350, 97);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(100, 29);
- this.label1.TabIndex = 84;
- this.label1.Text = "RASTRO";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 14);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 102;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 16);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 101;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form11
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form11";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form11.cs b/FunkeySelector/Form11.cs
deleted file mode 100644
index 9f5f0b5..0000000
--- a/FunkeySelector/Form11.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form11 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form11()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Rastro
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000117");
- }
-
- //Rastro R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000011B");
- }
-
- //Rastro VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000122");
- }
-
- //Tadd
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000118");
- }
-
- //Tadd R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000011C");
- }
-
- //Tadd VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000123");
- }
-
- //Mulch
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000126");
- }
-
- //Ace
- private void button15_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000127");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form12.Designer.cs b/FunkeySelector/Form12.Designer.cs
deleted file mode 100644
index 340a9c2..0000000
--- a/FunkeySelector/Form12.Designer.cs
+++ /dev/null
@@ -1,389 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form12
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form12));
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button10 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(330, 65);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(71, 29);
- this.label1.TabIndex = 90;
- this.label1.Text = "TACH";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(398, 103);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 89;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.Button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(342, 103);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 88;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.Button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(291, 103);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 87;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.Button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 86;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.Button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(185, 13);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(367, 52);
- this.label2.TabIndex = 85;
- this.label2.Text = "UNUSED FUNKEYS";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(341, 169);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(60, 29);
- this.label3.TabIndex = 92;
- this.label3.Text = "CON";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button5.Location = new System.Drawing.Point(346, 210);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 91;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.Button5_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(311, 276);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(137, 29);
- this.label4.TabIndex = 96;
- this.label4.Text = "HENCHMEN";
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button6.Location = new System.Drawing.Point(398, 313);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 95;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.Button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button7.Location = new System.Drawing.Point(342, 313);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 94;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.Button7_Click);
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.Color.Transparent;
- this.button8.Location = new System.Drawing.Point(291, 313);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 93;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.Button8_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(341, 378);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(66, 29);
- this.label5.TabIndex = 100;
- this.label5.Text = "DALI";
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button10.Location = new System.Drawing.Point(342, 410);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 98;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.Button10_Click);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(341, 459);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(72, 29);
- this.label6.TabIndex = 102;
- this.label6.Text = "GOYA";
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(342, 491);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 101;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.Button9_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 104;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 103;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form12
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Form12";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form12.cs b/FunkeySelector/Form12.cs
deleted file mode 100644
index dfe7d92..0000000
--- a/FunkeySelector/Form12.cs
+++ /dev/null
@@ -1,166 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form12 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form12()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Con
- private void Button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("S0000001");
- }
-
- //TachB
- private void Button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("T0000001");
- }
-
- //TachY
- private void Button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("T0000002");
- }
-
- //TachR
- private void Button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("T0000003");
- }
-
- //HenchmanP
- private void Button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("h0000001");
- }
-
- //HenchmanG
- private void Button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("h0000003");
- }
-
- //HenchmanB
- private void Button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("h0000003");
- }
-
- //Dali
- private void Button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("h0000007");
- }
-
- //Goya
- private void Button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("h0000006");
- }
-
- //Back
- private void Button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form13.Designer.cs b/FunkeySelector/Form13.Designer.cs
deleted file mode 100644
index 5e27653..0000000
--- a/FunkeySelector/Form13.Designer.cs
+++ /dev/null
@@ -1,180 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form13
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form13));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.Imagelist = new System.Windows.Forms.ImageList(this.components);
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(241, 31);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(371, 52);
- this.label2.TabIndex = 58;
- this.label2.Text = "CUSTOM FUNKEYS";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 59;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button2.Location = new System.Drawing.Point(119, 12);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(101, 48);
- this.button2.TabIndex = 60;
- this.button2.Text = "HELP";
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // Imagelist
- //
- this.Imagelist.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
- this.Imagelist.ImageSize = new System.Drawing.Size(128, 128);
- this.Imagelist.TransparentColor = System.Drawing.Color.Transparent;
- //
- // listBox1
- //
- this.listBox1.BackColor = System.Drawing.SystemColors.HotTrack;
- this.listBox1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.listBox1.ForeColor = System.Drawing.SystemColors.Info;
- this.listBox1.FormattingEnabled = true;
- this.listBox1.ItemHeight = 29;
- this.listBox1.Location = new System.Drawing.Point(31, 104);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(667, 410);
- this.listBox1.TabIndex = 61;
- this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged_1);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 106;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 105;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form13
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.listBox1);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "Form13";
- this.Text = "FunkeySelectorGUI";
- this.Load += new System.EventHandler(this.Form13_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.ImageList Imagelist;
- private System.Windows.Forms.ListBox listBox1;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form13.cs b/FunkeySelector/Form13.cs
deleted file mode 100644
index 8d99296..0000000
--- a/FunkeySelector/Form13.cs
+++ /dev/null
@@ -1,139 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form13 : Form
- {
- //
- //Initial setup
- //
-
- public Form13()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //Initializes the listbox with customfunkeys.
- private void Form13_Load(object sender, EventArgs e)
- {
- listBox1.Items.Clear();
- string[] files = Directory.GetFiles("./CustomFunkeys");
-
- foreach (string file in files)
- {
- listBox1.Items.Add(file);
- }
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Help
- private void button2_Click(object sender, EventArgs e)
- {
- MessageBox.Show("This shows all of the custom Funkeys in the CustomFunkeys folder in the RadicaGame folder. Put the custom Funkey's txt inside the folder, it'll show up here. Click on the custom Funkey you want, and it'll show up in game!");
- }
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Will select Funkey when listbox item is selected.
- private void listBox1_SelectedIndexChanged_1(object sender, EventArgs e)
- {
- System.IO.File.Copy(listBox1.SelectedItem.ToString(), "customF.txt", true); //This does not use CustomFManager as it uses a different method.
- if (Properties.Settings.Default.wineCompat == false)
- {
- Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow();
- }
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form14.Designer.cs b/FunkeySelector/Form14.Designer.cs
deleted file mode 100644
index 5bd9f6f..0000000
--- a/FunkeySelector/Form14.Designer.cs
+++ /dev/null
@@ -1,177 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form14
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form14));
- this.button1 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.checkBox2 = new System.Windows.Forms.CheckBox();
- this.checkBox3 = new System.Windows.Forms.CheckBox();
- this.checkBox4 = new System.Windows.Forms.CheckBox();
- this.button2 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImage = global::FunkeySelector.Properties.Resources._230;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Location = new System.Drawing.Point(242, 244);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(86, 23);
- this.button1.TabIndex = 0;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- this.button1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button1_MouseDown);
- this.button1.MouseEnter += new System.EventHandler(this.button1_MouseEnter);
- this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label1.Location = new System.Drawing.Point(234, 25);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(103, 26);
- this.label1.TabIndex = 1;
- this.label1.Text = "OPTIONS";
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.BackColor = System.Drawing.Color.Transparent;
- this.checkBox1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox1.Location = new System.Drawing.Point(111, 66);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(351, 24);
- this.checkBox1.TabIndex = 2;
- this.checkBox1.Text = "DISABLE FUNKEYS SELECTION MOD CHECK";
- this.checkBox1.UseVisualStyleBackColor = false;
- this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.BackColor = System.Drawing.Color.Transparent;
- this.checkBox2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox2.Location = new System.Drawing.Point(111, 89);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(297, 24);
- this.checkBox2.TabIndex = 3;
- this.checkBox2.Text = "DISABLE U.B. FUNKEYS GAME CHECK";
- this.checkBox2.UseVisualStyleBackColor = false;
- this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
- //
- // checkBox3
- //
- this.checkBox3.AutoSize = true;
- this.checkBox3.BackColor = System.Drawing.Color.Transparent;
- this.checkBox3.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox3.Location = new System.Drawing.Point(111, 135);
- this.checkBox3.Name = "checkBox3";
- this.checkBox3.Size = new System.Drawing.Size(257, 24);
- this.checkBox3.TabIndex = 4;
- this.checkBox3.Text = "WINE/MONO COMPATIBILITY";
- this.checkBox3.UseVisualStyleBackColor = false;
- this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
- //
- // checkBox4
- //
- this.checkBox4.AutoSize = true;
- this.checkBox4.BackColor = System.Drawing.Color.Transparent;
- this.checkBox4.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.checkBox4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.checkBox4.Location = new System.Drawing.Point(111, 112);
- this.checkBox4.Name = "checkBox4";
- this.checkBox4.Size = new System.Drawing.Size(194, 24);
- this.checkBox4.TabIndex = 5;
- this.checkBox4.Text = "DISABLE WINE CHECK";
- this.checkBox4.UseVisualStyleBackColor = false;
- this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ButtonFace;
- this.button2.Location = new System.Drawing.Point(146, 187);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(262, 31);
- this.button2.TabIndex = 6;
- this.button2.Text = "ABOUT FUNKEYSELECTORGUI";
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // Form14
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
- this.ClientSize = new System.Drawing.Size(570, 273);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.checkBox4);
- this.Controls.Add(this.checkBox3);
- this.Controls.Add(this.checkBox2);
- this.Controls.Add(this.checkBox1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form14";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.CheckBox checkBox2;
- private System.Windows.Forms.CheckBox checkBox3;
- private System.Windows.Forms.CheckBox checkBox4;
- private System.Windows.Forms.Button button2;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form14.cs b/FunkeySelector/Form14.cs
deleted file mode 100644
index c7e2107..0000000
--- a/FunkeySelector/Form14.cs
+++ /dev/null
@@ -1,108 +0,0 @@
-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 FunkeySelector
-{
- public partial class Form14 : Form
- {
- public Form14()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold;
- checkBox1.Checked = Properties.Settings.Default.disableModCheck;
- checkBox2.Checked = Properties.Settings.Default.disableGameCheck;
- checkBox3.Checked = Properties.Settings.Default.wineCompat;
- checkBox4.Checked = Properties.Settings.Default.disableWineCheck;
- }
-
- private void checkBox1_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox1.Checked)
- {
- Properties.Settings.Default.disableModCheck = true;
- }
- else
- Properties.Settings.Default.disableModCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void checkBox2_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox2.Checked)
- {
- Properties.Settings.Default.disableGameCheck = true;
- }
- else
- Properties.Settings.Default.disableGameCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- this.Close();
- }
-
- private void checkBox3_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox3.Checked)
- {
- Properties.Settings.Default.wineCompat = true;
- }
- else
- Properties.Settings.Default.wineCompat = false;
- Properties.Settings.Default.Save();
- }
-
- private void checkBox4_CheckedChanged(object sender, EventArgs e)
- {
- if (checkBox4.Checked)
- {
- Properties.Settings.Default.disableWineCheck = true;
- }
- else
- Properties.Settings.Default.disableWineCheck = false;
- Properties.Settings.Default.Save();
- }
-
- private void button1_MouseEnter(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._232;
- }
-
- private void button1_MouseLeave(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._230;
- }
-
- private void button1_MouseDown(object sender, MouseEventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._234;
- }
- protected override void WndProc(ref Message m)
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- private void button2_Click(object sender, EventArgs e)
- {
- Form15 form15 = new Form15();
- form15.StartPosition = FormStartPosition.CenterParent;
- form15.ShowDialog();
- }
- }
-}
diff --git a/FunkeySelector/Form15.Designer.cs b/FunkeySelector/Form15.Designer.cs
deleted file mode 100644
index 323a2d6..0000000
--- a/FunkeySelector/Form15.Designer.cs
+++ /dev/null
@@ -1,134 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form15
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label1.Location = new System.Drawing.Point(137, 25);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(297, 26);
- this.label1.TabIndex = 3;
- this.label1.Text = "ABOUT FUNKEYSELECTORGUI";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImage = global::FunkeySelector.Properties.Resources._230;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Location = new System.Drawing.Point(242, 244);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(86, 23);
- this.button1.TabIndex = 2;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- this.button1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button1_MouseDown);
- this.button1.MouseEnter += new System.EventHandler(this.button1_MouseEnter);
- this.button1.MouseLeave += new System.EventHandler(this.button1_MouseLeave);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label2.Location = new System.Drawing.Point(155, 84);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(260, 20);
- this.label2.TabIndex = 4;
- this.label2.Text = "DEVELOPED BY GITTYMAC (LAKO)";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label3.Location = new System.Drawing.Point(122, 126);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(327, 20);
- this.label3.TabIndex = 5;
- this.label3.Text = "MADE FOR THE FUNKEYS SELECTION MOD";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.label4.Location = new System.Drawing.Point(90, 168);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(390, 20);
- this.label4.TabIndex = 6;
- this.label4.Text = "CREDITS TO DUALSCAR FOR THE ICONS AND IDEA";
- //
- // Form15
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
- this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.ClientSize = new System.Drawing.Size(570, 272);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "Form15";
- this.Text = "Form15";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form15.cs b/FunkeySelector/Form15.cs
deleted file mode 100644
index 3a35712..0000000
--- a/FunkeySelector/Form15.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-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 FunkeySelector
-{
- public partial class Form15 : Form
- {
- public Form15()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- this.Hide();
- }
- private void button1_MouseEnter(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._232;
- }
-
- private void button1_MouseLeave(object sender, EventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._230;
- }
-
- private void button1_MouseDown(object sender, MouseEventArgs e)
- {
- button1.BackgroundImage = Properties.Resources._234;
- }
- protected override void WndProc(ref Message m)
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
- }
-}
diff --git a/FunkeySelector/Form3.Designer.cs b/FunkeySelector/Form3.Designer.cs
deleted file mode 100644
index 1de4c06..0000000
--- a/FunkeySelector/Form3.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form3
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form3));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(319, 427);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(91, 29);
- this.label5.TabIndex = 38;
- this.label5.Text = "TWINX";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(395, 465);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 37;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(344, 465);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 36;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(293, 465);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 35;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(326, 216);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(98, 29);
- this.label4.TabIndex = 34;
- this.label4.Text = "SPROUT";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(395, 254);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 33;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(344, 254);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 32;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(293, 254);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 31;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(332, 319);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(62, 29);
- this.label3.TabIndex = 30;
- this.label3.Text = "TIKI";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(395, 357);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 29;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(344, 357);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 28;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(293, 357);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 27;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(334, 97);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 29);
- this.label1.TabIndex = 26;
- this.label1.Text = "GLUB";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(395, 136);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 25;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(344, 136);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 24;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(293, 136);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 23;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 22;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(232, 16);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(268, 52);
- this.label2.TabIndex = 21;
- this.label2.Text = "KELPY BASIN";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 83;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 82;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form3
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form3";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form3.cs b/FunkeySelector/Form3.cs
deleted file mode 100644
index b52640c..0000000
--- a/FunkeySelector/Form3.cs
+++ /dev/null
@@ -1,187 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form3 : Form
- {
- //
- //Initial Startup
- //
-
- CustomFManager customF = new CustomFManager(); //Assigns CustomFManager to customF.
-
- public Form3()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of Initial Startup
- //
-
- //
- //Start of Button Clicks
- //Most of them switches the customF code.
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Glub
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000014");
- }
-
- //Glub R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000018");
- }
-
- //Glub VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000019");
- }
-
- //Sprout
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001A");
- }
-
- //Sprout R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001B");
- }
-
- //Sprout VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001C");
- }
-
- //Twinx
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001D");
- }
-
- //Twinx R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001E");
- }
-
- //Twinx VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000001F");
- }
-
- //Tiki
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000023");
- }
-
- //Tiki R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000024");
- }
-
- //Tiki VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000025");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form4.Designer.cs b/FunkeySelector/Form4.Designer.cs
deleted file mode 100644
index a163b6b..0000000
--- a/FunkeySelector/Form4.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form4
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form4));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(331, 435);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(88, 29);
- this.label5.TabIndex = 56;
- this.label5.Text = "BONES";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(400, 475);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 55;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(349, 475);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 54;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(298, 475);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 53;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(331, 226);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(82, 29);
- this.label4.TabIndex = 52;
- this.label4.Text = "DEUCE";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(400, 264);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 51;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(349, 264);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 50;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(298, 264);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 49;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(323, 332);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(104, 29);
- this.label3.TabIndex = 48;
- this.label3.Text = "WASABI";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(400, 367);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 47;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(349, 367);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 46;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(298, 367);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 45;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(328, 106);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(96, 29);
- this.label1.TabIndex = 44;
- this.label1.Text = "STITCH";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(400, 146);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 43;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(349, 146);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 42;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(298, 146);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 41;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 40;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(212, 27);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(305, 52);
- this.label2.TabIndex = 39;
- this.label2.Text = "MAGMA GORGE";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 85;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 84;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form4
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form4";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form4.cs b/FunkeySelector/Form4.cs
deleted file mode 100644
index 24b9ea1..0000000
--- a/FunkeySelector/Form4.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form4 : Form
- {
- //
- //Initial Startup
- //
-
- CustomFManager customF = new CustomFManager(); //Initializes CustomFManager.
- public Form4()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Stitch
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000026");
- }
-
- //Stitch R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000027");
- }
-
- //Stitch VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000028");
- }
-
- //Deuce
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000029");
- }
-
- //Deuce R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000002A");
- }
-
- //Deuce VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000002E");
- }
-
- //Wasabi
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000002F");
- }
-
- //Wasabi R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000030");
- }
-
- //Wasabi VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000031");
- }
-
- //Bones
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000032");
- }
-
- //Bones R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000033");
- }
-
- //Bones VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000034");
- }
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form5.Designer.cs b/FunkeySelector/Form5.Designer.cs
deleted file mode 100644
index 43808c0..0000000
--- a/FunkeySelector/Form5.Designer.cs
+++ /dev/null
@@ -1,470 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form5
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form5));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(341, 420);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(93, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "VROOM";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(410, 460);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(359, 460);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(308, 460);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(333, 206);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(111, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "FALLOUT";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(410, 249);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(359, 249);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(308, 249);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(339, 317);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(96, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "BOGGLE";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(410, 352);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(359, 352);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(308, 352);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(338, 91);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(84, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "XENER";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(410, 131);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(359, 131);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(308, 131);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(185, 12);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(386, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "LAPUTTA STATION";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(119, 270);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(62, 29);
- this.label6.TabIndex = 75;
- this.label6.Text = "ROM";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(126, 303);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 76;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 16);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 87;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 18);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 86;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form5
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form5";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form5.cs b/FunkeySelector/Form5.cs
deleted file mode 100644
index 7cec82a..0000000
--- a/FunkeySelector/Form5.cs
+++ /dev/null
@@ -1,190 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form5 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form5()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button clicks
- //
-
- //Xener
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000035");
- }
-
- //Xener R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000039");
- }
-
- //Xener VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003A");
- }
-
- //Fallout
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003B");
- }
-
- //Fallout R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003C");
- }
-
- //Fallout VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003D");
- }
-
- //Boggle
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003E");
- }
-
- //Boggle R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000003F");
- }
-
- //Boggle VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000040");
- }
-
- //Vroom
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000044");
- }
-
- //Vroom R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000045");
- }
-
- //Vroom VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000046");
- }
-
- //Rom
- private void button14_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CE");
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form6.Designer.cs b/FunkeySelector/Form6.Designer.cs
deleted file mode 100644
index 4bce1f2..0000000
--- a/FunkeySelector/Form6.Designer.cs
+++ /dev/null
@@ -1,575 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form6
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form6));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button15 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button16 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(325, 425);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(99, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "WEBLEY";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(401, 467);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(350, 467);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(299, 467);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(332, 218);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(92, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "NIBBLE";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(401, 256);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(350, 256);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(299, 256);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(347, 324);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(57, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "SOL";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(401, 359);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(350, 359);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(299, 359);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(329, 98);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(92, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "FLURRY";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(401, 138);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(350, 138);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(299, 138);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(205, 19);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(347, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "FUNKIKI ISLAND";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(52, 149);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(173, 29);
- this.label6.TabIndex = 76;
- this.label6.Text = "PINEPPLE KING";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button14.Location = new System.Drawing.Point(108, 184);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 75;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(87, 362);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(97, 29);
- this.label7.TabIndex = 78;
- this.label7.Text = "NATIVE";
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(108, 402);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 77;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(549, 144);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(79, 29);
- this.label8.TabIndex = 80;
- this.label8.Text = "JERRY";
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button16.Location = new System.Drawing.Point(570, 184);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 79;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(557, 371);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 29);
- this.label9.TabIndex = 82;
- this.label9.Text = "REWIND";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button17.Location = new System.Drawing.Point(578, 411);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 81;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(641, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 89;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- this.button22.MouseHover += new System.EventHandler(this.button22_MouseEnter);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(680, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 88;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form6
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form6";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form6.cs b/FunkeySelector/Form6.cs
deleted file mode 100644
index 4eceba2..0000000
--- a/FunkeySelector/Form6.cs
+++ /dev/null
@@ -1,209 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form6 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form6()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Flurry
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000050");
- }
-
- //Flurry R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000051");
- }
-
- //Flurry VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000052");
- }
-
- //Nibble
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000053");
- }
-
- //Nibble R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000054");
- }
-
- //Nibble VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000055");
- }
-
- //Sol
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000056");
- }
-
- //Sol R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005A");
- }
-
- //Sol VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005B");
- }
-
- //Webley
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005C");
- }
-
- //Webley R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005D");
- }
-
- //Webley VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005E");
- }
-
- //Pineapple King
- private void button14_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000F2");
- }
-
- //Native
- private void button15_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000F6");
- }
-
- //Jerry
- private void button16_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000F1");
- }
-
- //Rewind
- private void button17_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CC");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form7.Designer.cs b/FunkeySelector/Form7.Designer.cs
deleted file mode 100644
index be589dc..0000000
--- a/FunkeySelector/Form7.Designer.cs
+++ /dev/null
@@ -1,415 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form7
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
- this.label5 = new System.Windows.Forms.Label();
- this.button12 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button9 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button6 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button3 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.button2 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(152, 436);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(158, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "SNAKE OILER";
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(205, 471);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(187, 222);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(90, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "TRIXIE";
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(205, 260);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(113, 329);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(251, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "CANNONBALL TAYLOR";
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(205, 363);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(184, 102);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(101, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "RACER X";
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(205, 142);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 21.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(150, 20);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(449, 41);
- this.label2.TabIndex = 57;
- this.label2.Text = "ROYALTON RACING COMPLEX";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(463, 435);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(86, 29);
- this.label6.TabIndex = 82;
- this.label6.Text = "TAEJO";
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button2.Location = new System.Drawing.Point(479, 471);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 81;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(374, 219);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(266, 29);
- this.label7.TabIndex = 80;
- this.label7.Text = "SPEED RACER (PINBALL)";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button4.Location = new System.Drawing.Point(479, 260);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 79;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(434, 329);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(140, 29);
- this.label8.TabIndex = 78;
- this.label8.Text = "CHIM-CHIM";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button5.Location = new System.Drawing.Point(479, 363);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 77;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(431, 102);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(153, 29);
- this.label9.TabIndex = 76;
- this.label9.Text = "SPEED RACER";
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button7.Location = new System.Drawing.Point(479, 142);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 75;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 91;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 90;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form7
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form7";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form7.cs b/FunkeySelector/Form7.cs
deleted file mode 100644
index 40442d8..0000000
--- a/FunkeySelector/Form7.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form7 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form7()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Racer X
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000005F");
- }
-
- //Trixie
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000083");
- }
-
- //Cannonball Taylor
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000088");
- }
-
- //Snake Oiler
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000008C");
- }
-
- //Speed Racer
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000093");
- }
-
- //Speed Racer Pinball
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000095");
- }
-
- //Chim-Chim
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000096");
- }
-
- //Taejo
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000094");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form8.Designer.cs b/FunkeySelector/Form8.Designer.cs
deleted file mode 100644
index ce59ec0..0000000
--- a/FunkeySelector/Form8.Designer.cs
+++ /dev/null
@@ -1,434 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form8
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form8));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(339, 428);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(80, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "SNIPE";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(408, 468);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(357, 468);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(306, 468);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(324, 218);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(122, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "SPROCKET";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(408, 257);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(357, 257);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(306, 257);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(346, 325);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(78, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "VLURP";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(408, 360);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(357, 360);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(306, 360);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(354, 102);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(62, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "PTEP";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(408, 139);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(357, 139);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(306, 139);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(220, 20);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(357, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "NIGHTMARE RIFT";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 93;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 92;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form8
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form8";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form8.cs b/FunkeySelector/Form8.cs
deleted file mode 100644
index d2ba842..0000000
--- a/FunkeySelector/Form8.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form8 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form8()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Ptep
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A0");
- }
-
- //Ptep R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AD");
- }
-
- //Ptep VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000BA");
- }
-
- //Sprocket
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A4");
- }
-
- //Sprocket R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B4");
- }
-
- //Sprocket VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C1");
- }
-
- //Vlurp
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A8");
- }
-
- //Vlurp R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B5");
- }
-
- //Vlurp VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C2");
- }
-
- //Snipe
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AC");
- }
-
- //Snipe R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B9");
- }
-
- //Snipe VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CA");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/Form9.Designer.cs b/FunkeySelector/Form9.Designer.cs
deleted file mode 100644
index e7bf785..0000000
--- a/FunkeySelector/Form9.Designer.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-namespace FunkeySelector
-{
- partial class Form9
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form9));
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(320, 431);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(92, 29);
- this.label5.TabIndex = 74;
- this.label5.Text = "BERGER";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(389, 471);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 73;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(338, 471);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 72;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(287, 471);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 71;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(320, 222);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(79, 29);
- this.label4.TabIndex = 70;
- this.label4.Text = "LUCKY";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(389, 260);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 69;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(338, 260);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 68;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(287, 260);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 67;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(327, 328);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(72, 29);
- this.label3.TabIndex = 66;
- this.label3.Text = "TANK";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(389, 363);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 65;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(338, 363);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 64;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(287, 363);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 63;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(328, 101);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 29);
- this.label1.TabIndex = 62;
- this.label1.Text = "DYER";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(389, 142);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 61;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(338, 142);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 60;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(287, 142);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 59;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 58;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(176, 24);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(374, 52);
- this.label2.TabIndex = 57;
- this.label2.Text = "DAYDREAM OASIS";
- //
- // button22
- //
- this.button22.BackColor = System.Drawing.Color.Transparent;
- this.button22.BackgroundImage = global::FunkeySelector.Properties.Resources._150;
- this.button22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button22.FlatAppearance.BorderSize = 0;
- this.button22.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button22.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button22.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button22.Location = new System.Drawing.Point(642, 15);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(26, 22);
- this.button22.TabIndex = 95;
- this.button22.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button22.UseVisualStyleBackColor = false;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- this.button22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button22_MouseDown);
- this.button22.MouseEnter += new System.EventHandler(this.button22_MouseEnter);
- this.button22.MouseLeave += new System.EventHandler(this.button22_MouseLeave);
- //
- // button23
- //
- this.button23.BackColor = System.Drawing.Color.Transparent;
- this.button23.BackgroundImage = global::FunkeySelector.Properties.Resources._246;
- this.button23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.button23.FlatAppearance.BorderSize = 0;
- this.button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button23.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button23.Location = new System.Drawing.Point(681, 17);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(26, 20);
- this.button23.TabIndex = 94;
- this.button23.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button23.UseVisualStyleBackColor = false;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- this.button23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button23_MouseDown);
- this.button23.MouseEnter += new System.EventHandler(this.button23_MouseEnter);
- this.button23.MouseLeave += new System.EventHandler(this.button23_MouseLeave);
- //
- // Form9
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Gold;
- this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
- this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.button22);
- this.Controls.Add(this.button23);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form9";
- this.Text = "FunkeySelectorGUI";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- }
-}
\ No newline at end of file
diff --git a/FunkeySelector/Form9.cs b/FunkeySelector/Form9.cs
deleted file mode 100644
index 1c95fff..0000000
--- a/FunkeySelector/Form9.cs
+++ /dev/null
@@ -1,185 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace FunkeySelector
-{
- public partial class Form9 : Form
- {
- //
- //Initial setup
- //
-
- CustomFManager customF = new CustomFManager(); //Sets up CustomFManager.
- public Form9()
- {
- InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Removes the gold sections to allow the UI to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- //End of initial startup
- //
-
- //
- //Button Clicks
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- //Dyer
- private void button2_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A1");
- }
-
- //Dyer R
- private void button3_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AE");
- }
-
- //Dyer VR
- private void button4_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000BE");
- }
-
- //Lucky
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A2");
- }
-
- //Lucky R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AF");
- }
-
- //Lucky VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000BF");
- }
-
- //Tank
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A3");
- }
-
- //Tank R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B3");
- }
-
- //Tank VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C0");
- }
-
- //Berger
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000A9");
- }
-
- //Berger R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B6");
- }
-
- //Berger VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C3");
- }
-
- //Close
- private void button23_Click(object sender, EventArgs e)
- {
- Application.Exit();
- }
-
- //Minimize
- private void button22_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
-
- //
- //End of Button Clicks
- //
-
- //
- //Button Images
- //
-
- //Minimize
- private void button22_MouseLeave(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._150;
- }
-
- private void button22_MouseEnter(object sender, EventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._154;
- }
- private void button22_MouseDown(object sender, MouseEventArgs e)
- {
- button22.BackgroundImage = Properties.Resources._157;
- }
-
- //Close
- private void button23_MouseLeave(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._246;
- }
-
- private void button23_MouseEnter(object sender, EventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._248;
- }
- private void button23_MouseDown(object sender, MouseEventArgs e)
- {
- button23.BackgroundImage = Properties.Resources._250;
- }
-
- //
- // End of Button Images
- //
- }
-}
diff --git a/FunkeySelector/FunkeySelector.csproj b/FunkeySelector/FunkeySelector.csproj
index cd4711f..4da652b 100644
--- a/FunkeySelector/FunkeySelector.csproj
+++ b/FunkeySelector/FunkeySelector.csproj
@@ -45,6 +45,10 @@
+
+ ..\packages\System.ValueTuple.4.5.0\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll
+
+
@@ -57,6 +61,18 @@
+
+ Form
+
+
+ Component
+
+
+ Component
+
+
+ Component
+
UserControl
@@ -70,41 +86,41 @@
Form1.cs
-
+
Form
-
- Form10.cs
+
+ HiddenRealm.cs
-
+
Form
-
- Form11.cs
+
+ ParadoxGreen.cs
-
+
Form
-
- Form12.cs
+
+ UnusedFunkeys.cs
-
+
Form
-
- Form13.cs
+
+ CustomFunkeys.cs
-
+
Form
-
- Form14.cs
+
+ Options.cs
-
+
Form
-
- Form15.cs
+
+ About.cs
Form
@@ -112,47 +128,47 @@
FunkeysTown.cs
-
+
Form
-
- Form3.cs
+
+ KelpyBasin.cs
-
+
Form
-
- Form4.cs
+
+ MagmaGorge.cs
-
+
Form
-
- Form5.cs
+
+ LaputtaStation.cs
-
+
Form
-
- Form6.cs
+
+ FunkikiIsland.cs
-
+
Form
-
- Form7.cs
+
+ RoyaltonRacingComplex.cs
-
+
Form
-
- Form8.cs
+
+ NightmareRift.cs
-
+
Form
-
- Form9.cs
+
+ DaydreamOasis.cs
@@ -162,50 +178,62 @@
MinimizeButton.cs
+
+ UserControl
+
+
+ OKButton.cs
+
+
+ UserControl
+
+
+ OptionsButton.cs
+
Form1.cs
-
- Form10.cs
+
+ HiddenRealm.cs
-
- Form11.cs
+
+ ParadoxGreen.cs
-
- Form12.cs
+
+ UnusedFunkeys.cs
-
- Form13.cs
+
+ CustomFunkeys.cs
-
- Form14.cs
+
+ Options.cs
-
- Form15.cs
+
+ About.cs
FunkeysTown.cs
-
- Form3.cs
+
+ KelpyBasin.cs
-
- Form4.cs
+
+ MagmaGorge.cs
-
- Form5.cs
+
+ LaputtaStation.cs
-
- Form6.cs
+
+ FunkikiIsland.cs
-
- Form7.cs
+
+ RoyaltonRacingComplex.cs
-
- Form8.cs
+
+ NightmareRift.cs
-
- Form9.cs
+
+ DaydreamOasis.cs
ResXFileCodeGenerator
@@ -223,6 +251,13 @@
MinimizeButton.cs
+
+ OKButton.cs
+
+
+ OptionsButton.cs
+
+
SettingsSingleFileGenerator
Settings.Designer.cs
diff --git a/FunkeySelector/FunkeysTown.Designer.cs b/FunkeySelector/FunkeysTown.Designer.cs
index 0fc05e2..c95b143 100644
--- a/FunkeySelector/FunkeysTown.Designer.cs
+++ b/FunkeySelector/FunkeysTown.Designer.cs
@@ -29,544 +29,545 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunkeysTown));
- this.label2 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.label6 = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.button16 = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.button18 = new System.Windows.Forms.Button();
- this.label8 = new System.Windows.Forms.Label();
- this.button17 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.button19 = new System.Windows.Forms.Button();
- this.label10 = new System.Windows.Forms.Label();
- this.button20 = new System.Windows.Forms.Button();
- this.label11 = new System.Windows.Forms.Label();
- this.button21 = new System.Windows.Forms.Button();
- this.closeButton1 = new FunkeySelector.CloseButton();
- this.minimizeButton1 = new FunkeySelector.UserControls.MinimizeButton();
+ this.FunkeysTownLabel = new System.Windows.Forms.Label();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Scratch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ScratchLabel = new System.Windows.Forms.Label();
+ this.DriftLabel = new System.Windows.Forms.Label();
+ this.DriftVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DriftR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Drift = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LotusLabel = new System.Windows.Forms.Label();
+ this.LotusVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.LotusR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Lotus = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WaggsLabel = new System.Windows.Forms.Label();
+ this.WaggsVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WaggsR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Waggs = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DotLabel = new System.Windows.Forms.Label();
+ this.DotVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DotR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Dot = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanLabel = new System.Windows.Forms.Label();
+ this.Henchman = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MasterLoxLabel = new System.Windows.Forms.Label();
+ this.MasterLox = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MayorSaysoLabel = new System.Windows.Forms.Label();
+ this.MayorSayso = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HollerLabel = new System.Windows.Forms.Label();
+ this.Holler = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GabbyLabel = new System.Windows.Forms.Label();
+ this.Gabby = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
this.SuspendLayout();
//
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label2.ForeColor = System.Drawing.SystemColors.Control;
- this.label2.Location = new System.Drawing.Point(199, 31);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(319, 52);
- this.label2.TabIndex = 2;
- this.label2.Text = "FUNKEYSTOWN";
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Transparent;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.FlatAppearance.BorderSize = 0;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button1.Location = new System.Drawing.Point(12, 12);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(101, 48);
- this.button1.TabIndex = 4;
- this.button1.Text = "BACK";
- this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button1.UseVisualStyleBackColor = false;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Transparent;
- this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage")));
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button2.FlatAppearance.BorderSize = 0;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button2.ForeColor = System.Drawing.Color.Transparent;
- this.button2.Location = new System.Drawing.Point(13, 168);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 63);
- this.button2.TabIndex = 5;
- this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button2.UseVisualStyleBackColor = false;
- this.button2.Click += new System.EventHandler(this.Scratch_Click);
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.Transparent;
- this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage")));
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button3.FlatAppearance.BorderSize = 0;
- this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button3.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button3.Location = new System.Drawing.Point(64, 168);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 63);
- this.button3.TabIndex = 6;
- this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button3.UseVisualStyleBackColor = false;
- this.button3.Click += new System.EventHandler(this.ScratchR_Click);
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Transparent;
- this.button4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button4.BackgroundImage")));
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button4.FlatAppearance.BorderSize = 0;
- this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button4.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button4.Location = new System.Drawing.Point(115, 168);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 63);
- this.button4.TabIndex = 7;
- this.button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button4.UseVisualStyleBackColor = false;
- this.button4.Click += new System.EventHandler(this.ScratchVR_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.ForeColor = System.Drawing.SystemColors.Control;
- this.label1.Location = new System.Drawing.Point(37, 130);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(113, 29);
- this.label1.TabIndex = 8;
- this.label1.Text = "SCRATCH";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.SystemColors.Control;
- this.label3.Location = new System.Drawing.Point(414, 130);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(79, 29);
- this.label3.TabIndex = 12;
- this.label3.Text = "DRIFT";
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.Transparent;
- this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage")));
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button5.FlatAppearance.BorderSize = 0;
- this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button5.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button5.Location = new System.Drawing.Point(477, 168);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 63);
- this.button5.TabIndex = 11;
- this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button5.UseVisualStyleBackColor = false;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Transparent;
- this.button6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button6.BackgroundImage")));
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button6.FlatAppearance.BorderSize = 0;
- this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button6.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button6.Location = new System.Drawing.Point(426, 168);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 63);
- this.button6.TabIndex = 10;
- this.button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button6.UseVisualStyleBackColor = false;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.Transparent;
- this.button7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button7.BackgroundImage")));
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button7.FlatAppearance.BorderSize = 0;
- this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button7.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button7.Location = new System.Drawing.Point(375, 168);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 63);
- this.button7.TabIndex = 9;
- this.button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button7.UseVisualStyleBackColor = false;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.SystemColors.Control;
- this.label4.Location = new System.Drawing.Point(228, 130);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(86, 29);
- this.label4.TabIndex = 16;
- this.label4.Text = "LOTUS";
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Transparent;
- this.button8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button8.BackgroundImage")));
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button8.FlatAppearance.BorderSize = 0;
- this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button8.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button8.Location = new System.Drawing.Point(297, 168);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 63);
- this.button8.TabIndex = 15;
- this.button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button8.UseVisualStyleBackColor = false;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.BackColor = System.Drawing.Color.Transparent;
- this.button9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button9.BackgroundImage")));
- this.button9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button9.FlatAppearance.BorderSize = 0;
- this.button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button9.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button9.Location = new System.Drawing.Point(246, 168);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 63);
- this.button9.TabIndex = 14;
- this.button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button9.UseVisualStyleBackColor = false;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.BackColor = System.Drawing.Color.Transparent;
- this.button10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button10.BackgroundImage")));
- this.button10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button10.FlatAppearance.BorderSize = 0;
- this.button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button10.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button10.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button10.Location = new System.Drawing.Point(195, 168);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 63);
- this.button10.TabIndex = 13;
- this.button10.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button10.UseVisualStyleBackColor = false;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label5.ForeColor = System.Drawing.SystemColors.Control;
- this.label5.Location = new System.Drawing.Point(577, 130);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(93, 29);
- this.label5.TabIndex = 20;
- this.label5.Text = "WAGGS";
- //
- // button11
- //
- this.button11.BackColor = System.Drawing.Color.Transparent;
- this.button11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button11.BackgroundImage")));
- this.button11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button11.FlatAppearance.BorderSize = 0;
- this.button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button11.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button11.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button11.Location = new System.Drawing.Point(653, 168);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 63);
- this.button11.TabIndex = 19;
- this.button11.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button11.UseVisualStyleBackColor = false;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.BackColor = System.Drawing.Color.Transparent;
- this.button12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button12.BackgroundImage")));
- this.button12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button12.FlatAppearance.BorderSize = 0;
- this.button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button12.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button12.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button12.Location = new System.Drawing.Point(602, 168);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 63);
- this.button12.TabIndex = 18;
- this.button12.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button12.UseVisualStyleBackColor = false;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.BackColor = System.Drawing.Color.Transparent;
- this.button13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button13.BackgroundImage")));
- this.button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button13.FlatAppearance.BorderSize = 0;
- this.button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button13.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button13.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button13.Location = new System.Drawing.Point(551, 168);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 63);
- this.button13.TabIndex = 17;
- this.button13.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button13.UseVisualStyleBackColor = false;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label6.ForeColor = System.Drawing.SystemColors.Control;
- this.label6.Location = new System.Drawing.Point(336, 284);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(59, 29);
- this.label6.TabIndex = 24;
- this.label6.Text = "DOT";
- //
- // button14
- //
- this.button14.BackColor = System.Drawing.Color.Transparent;
- this.button14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button14.BackgroundImage")));
- this.button14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button14.FlatAppearance.BorderSize = 0;
- this.button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button14.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button14.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button14.Location = new System.Drawing.Point(389, 318);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 63);
- this.button14.TabIndex = 23;
- this.button14.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button14.UseVisualStyleBackColor = false;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button15
- //
- this.button15.BackColor = System.Drawing.Color.Transparent;
- this.button15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button15.BackgroundImage")));
- this.button15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button15.FlatAppearance.BorderSize = 0;
- this.button15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button15.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button15.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button15.Location = new System.Drawing.Point(338, 318);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 63);
- this.button15.TabIndex = 22;
- this.button15.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button15.UseVisualStyleBackColor = false;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // button16
- //
- this.button16.BackColor = System.Drawing.Color.Transparent;
- this.button16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button16.BackgroundImage")));
- this.button16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button16.FlatAppearance.BorderSize = 0;
- this.button16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button16.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button16.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.button16.Location = new System.Drawing.Point(287, 318);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 63);
- this.button16.TabIndex = 21;
- this.button16.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button16.UseVisualStyleBackColor = false;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label7.ForeColor = System.Drawing.SystemColors.Control;
- this.label7.Location = new System.Drawing.Point(89, 426);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(140, 29);
- this.label7.TabIndex = 28;
- this.label7.Text = "HENCHMAN";
- //
- // button18
- //
- this.button18.BackColor = System.Drawing.Color.Transparent;
- this.button18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button18.BackgroundImage")));
- this.button18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button18.FlatAppearance.BorderSize = 0;
- this.button18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button18.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button18.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button18.Location = new System.Drawing.Point(132, 458);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(50, 63);
- this.button18.TabIndex = 26;
- this.button18.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button18.UseVisualStyleBackColor = false;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label8.ForeColor = System.Drawing.SystemColors.Control;
- this.label8.Location = new System.Drawing.Point(287, 426);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(153, 29);
- this.label8.TabIndex = 30;
- this.label8.Text = "MASTER LOX";
- //
- // button17
- //
- this.button17.BackColor = System.Drawing.Color.Transparent;
- this.button17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button17.BackgroundImage")));
- this.button17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button17.FlatAppearance.BorderSize = 0;
- this.button17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button17.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button17.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button17.Location = new System.Drawing.Point(338, 458);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(50, 63);
- this.button17.TabIndex = 29;
- this.button17.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button17.UseVisualStyleBackColor = false;
- this.button17.Click += new System.EventHandler(this.button17_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label9.ForeColor = System.Drawing.SystemColors.Control;
- this.label9.Location = new System.Drawing.Point(493, 426);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(173, 29);
- this.label9.TabIndex = 32;
- this.label9.Text = "MAYOR SAYSO";
- //
- // button19
- //
- this.button19.BackColor = System.Drawing.Color.Transparent;
- this.button19.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button19.BackgroundImage")));
- this.button19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button19.FlatAppearance.BorderSize = 0;
- this.button19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button19.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button19.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button19.Location = new System.Drawing.Point(551, 458);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(50, 63);
- this.button19.TabIndex = 31;
- this.button19.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button19.UseVisualStyleBackColor = false;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label10.ForeColor = System.Drawing.SystemColors.Control;
- this.label10.Location = new System.Drawing.Point(110, 286);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(96, 29);
- this.label10.TabIndex = 34;
- this.label10.Text = "HOLLER";
- //
- // button20
- //
- this.button20.BackColor = System.Drawing.Color.Transparent;
- this.button20.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button20.BackgroundImage")));
- this.button20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button20.FlatAppearance.BorderSize = 0;
- this.button20.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button20.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button20.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button20.Location = new System.Drawing.Point(132, 318);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(50, 63);
- this.button20.TabIndex = 33;
- this.button20.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button20.UseVisualStyleBackColor = false;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.ForeColor = System.Drawing.SystemColors.Control;
- this.label11.Location = new System.Drawing.Point(534, 286);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(82, 29);
- this.label11.TabIndex = 36;
- this.label11.Text = "GABBY";
- //
- // button21
- //
- this.button21.BackColor = System.Drawing.Color.Transparent;
- this.button21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button21.BackgroundImage")));
- this.button21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.button21.FlatAppearance.BorderSize = 0;
- this.button21.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button21.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button21.ForeColor = System.Drawing.SystemColors.ControlLight;
- this.button21.Location = new System.Drawing.Point(551, 318);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(50, 63);
- this.button21.TabIndex = 35;
- this.button21.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- this.button21.UseVisualStyleBackColor = false;
- this.button21.Click += new System.EventHandler(this.button21_Click);
- //
- // closeButton1
- //
- this.closeButton1.Location = new System.Drawing.Point(681, 18);
- this.closeButton1.Name = "closeButton1";
- this.closeButton1.Size = new System.Drawing.Size(26, 20);
- this.closeButton1.TabIndex = 82;
- //
- // minimizeButton1
- //
- this.minimizeButton1.Location = new System.Drawing.Point(642, 16);
- this.minimizeButton1.Name = "minimizeButton1";
- this.minimizeButton1.Size = new System.Drawing.Size(26, 22);
- this.minimizeButton1.TabIndex = 83;
+ // FunkeysTownLabel
+ //
+ this.FunkeysTownLabel.AutoSize = true;
+ this.FunkeysTownLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FunkeysTownLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkeysTownLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FunkeysTownLabel.Location = new System.Drawing.Point(199, 31);
+ this.FunkeysTownLabel.Name = "FunkeysTownLabel";
+ this.FunkeysTownLabel.Size = new System.Drawing.Size(319, 52);
+ this.FunkeysTownLabel.TabIndex = 2;
+ this.FunkeysTownLabel.Text = "FUNKEYSTOWN";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 4;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // Scratch
+ //
+ this.Scratch.BackColor = System.Drawing.Color.Transparent;
+ this.Scratch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Scratch.BackgroundImage")));
+ this.Scratch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Scratch.FlatAppearance.BorderSize = 0;
+ this.Scratch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Scratch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Scratch.ForeColor = System.Drawing.Color.Transparent;
+ this.Scratch.FunkeyID = "00000047";
+ this.Scratch.Location = new System.Drawing.Point(13, 168);
+ this.Scratch.Name = "Scratch";
+ this.Scratch.Size = new System.Drawing.Size(50, 63);
+ this.Scratch.TabIndex = 5;
+ this.Scratch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Scratch.UseVisualStyleBackColor = false;
+ //
+ // ScratchR
+ //
+ this.ScratchR.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ScratchR.BackgroundImage")));
+ this.ScratchR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ScratchR.FlatAppearance.BorderSize = 0;
+ this.ScratchR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ScratchR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.ScratchR.FunkeyID = "00000048";
+ this.ScratchR.Location = new System.Drawing.Point(64, 168);
+ this.ScratchR.Name = "ScratchR";
+ this.ScratchR.Size = new System.Drawing.Size(50, 63);
+ this.ScratchR.TabIndex = 6;
+ this.ScratchR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ScratchR.UseVisualStyleBackColor = false;
+ //
+ // ScratchVR
+ //
+ this.ScratchVR.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ScratchVR.BackgroundImage")));
+ this.ScratchVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ScratchVR.FlatAppearance.BorderSize = 0;
+ this.ScratchVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ScratchVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.ScratchVR.FunkeyID = "00000049";
+ this.ScratchVR.Location = new System.Drawing.Point(115, 168);
+ this.ScratchVR.Name = "ScratchVR";
+ this.ScratchVR.Size = new System.Drawing.Size(50, 63);
+ this.ScratchVR.TabIndex = 7;
+ this.ScratchVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ScratchVR.UseVisualStyleBackColor = false;
+ //
+ // ScratchLabel
+ //
+ this.ScratchLabel.AutoSize = true;
+ this.ScratchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ScratchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ScratchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ScratchLabel.Location = new System.Drawing.Point(37, 130);
+ this.ScratchLabel.Name = "ScratchLabel";
+ this.ScratchLabel.Size = new System.Drawing.Size(113, 29);
+ this.ScratchLabel.TabIndex = 8;
+ this.ScratchLabel.Text = "SCRATCH";
+ //
+ // DriftLabel
+ //
+ this.DriftLabel.AutoSize = true;
+ this.DriftLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DriftLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DriftLabel.Location = new System.Drawing.Point(414, 130);
+ this.DriftLabel.Name = "DriftLabel";
+ this.DriftLabel.Size = new System.Drawing.Size(79, 29);
+ this.DriftLabel.TabIndex = 12;
+ this.DriftLabel.Text = "DRIFT";
+ //
+ // DriftVR
+ //
+ this.DriftVR.BackColor = System.Drawing.Color.Transparent;
+ this.DriftVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DriftVR.BackgroundImage")));
+ this.DriftVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DriftVR.FlatAppearance.BorderSize = 0;
+ this.DriftVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DriftVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DriftVR.FunkeyID = "000000C4";
+ this.DriftVR.Location = new System.Drawing.Point(477, 168);
+ this.DriftVR.Name = "DriftVR";
+ this.DriftVR.Size = new System.Drawing.Size(50, 63);
+ this.DriftVR.TabIndex = 11;
+ this.DriftVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DriftVR.UseVisualStyleBackColor = false;
+ //
+ // DriftR
+ //
+ this.DriftR.BackColor = System.Drawing.Color.Transparent;
+ this.DriftR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DriftR.BackgroundImage")));
+ this.DriftR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DriftR.FlatAppearance.BorderSize = 0;
+ this.DriftR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DriftR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DriftR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DriftR.FunkeyID = "000000B7";
+ this.DriftR.Location = new System.Drawing.Point(426, 168);
+ this.DriftR.Name = "DriftR";
+ this.DriftR.Size = new System.Drawing.Size(50, 63);
+ this.DriftR.TabIndex = 10;
+ this.DriftR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DriftR.UseVisualStyleBackColor = false;
+ //
+ // Drift
+ //
+ this.Drift.BackColor = System.Drawing.Color.Transparent;
+ this.Drift.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Drift.BackgroundImage")));
+ this.Drift.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Drift.FlatAppearance.BorderSize = 0;
+ this.Drift.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Drift.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Drift.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Drift.FunkeyID = "000000AA";
+ this.Drift.Location = new System.Drawing.Point(375, 168);
+ this.Drift.Name = "Drift";
+ this.Drift.Size = new System.Drawing.Size(50, 63);
+ this.Drift.TabIndex = 9;
+ this.Drift.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Drift.UseVisualStyleBackColor = false;
+ //
+ // LotusLabel
+ //
+ this.LotusLabel.AutoSize = true;
+ this.LotusLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LotusLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LotusLabel.Location = new System.Drawing.Point(228, 130);
+ this.LotusLabel.Name = "LotusLabel";
+ this.LotusLabel.Size = new System.Drawing.Size(86, 29);
+ this.LotusLabel.TabIndex = 16;
+ this.LotusLabel.Text = "LOTUS";
+ //
+ // LotusVR
+ //
+ this.LotusVR.BackColor = System.Drawing.Color.Transparent;
+ this.LotusVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LotusVR.BackgroundImage")));
+ this.LotusVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LotusVR.FlatAppearance.BorderSize = 0;
+ this.LotusVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LotusVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.LotusVR.FunkeyID = "0000004F";
+ this.LotusVR.Location = new System.Drawing.Point(297, 168);
+ this.LotusVR.Name = "LotusVR";
+ this.LotusVR.Size = new System.Drawing.Size(50, 63);
+ this.LotusVR.TabIndex = 15;
+ this.LotusVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LotusVR.UseVisualStyleBackColor = false;
+ //
+ // LotusR
+ //
+ this.LotusR.BackColor = System.Drawing.Color.Transparent;
+ this.LotusR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LotusR.BackgroundImage")));
+ this.LotusR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.LotusR.FlatAppearance.BorderSize = 0;
+ this.LotusR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LotusR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LotusR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.LotusR.FunkeyID = "0000004B";
+ this.LotusR.Location = new System.Drawing.Point(246, 168);
+ this.LotusR.Name = "LotusR";
+ this.LotusR.Size = new System.Drawing.Size(50, 63);
+ this.LotusR.TabIndex = 14;
+ this.LotusR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.LotusR.UseVisualStyleBackColor = false;
+ //
+ // Lotus
+ //
+ this.Lotus.BackColor = System.Drawing.Color.Transparent;
+ this.Lotus.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Lotus.BackgroundImage")));
+ this.Lotus.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Lotus.FlatAppearance.BorderSize = 0;
+ this.Lotus.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Lotus.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Lotus.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Lotus.FunkeyID = "0000004A";
+ this.Lotus.Location = new System.Drawing.Point(195, 168);
+ this.Lotus.Name = "Lotus";
+ this.Lotus.Size = new System.Drawing.Size(50, 63);
+ this.Lotus.TabIndex = 13;
+ this.Lotus.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Lotus.UseVisualStyleBackColor = false;
+ //
+ // WaggsLabel
+ //
+ this.WaggsLabel.AutoSize = true;
+ this.WaggsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WaggsLabel.Location = new System.Drawing.Point(577, 130);
+ this.WaggsLabel.Name = "WaggsLabel";
+ this.WaggsLabel.Size = new System.Drawing.Size(93, 29);
+ this.WaggsLabel.TabIndex = 20;
+ this.WaggsLabel.Text = "WAGGS";
+ //
+ // WaggsVR
+ //
+ this.WaggsVR.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WaggsVR.BackgroundImage")));
+ this.WaggsVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WaggsVR.FlatAppearance.BorderSize = 0;
+ this.WaggsVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WaggsVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WaggsVR.FunkeyID = "000000C5";
+ this.WaggsVR.Location = new System.Drawing.Point(653, 168);
+ this.WaggsVR.Name = "WaggsVR";
+ this.WaggsVR.Size = new System.Drawing.Size(50, 63);
+ this.WaggsVR.TabIndex = 19;
+ this.WaggsVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WaggsVR.UseVisualStyleBackColor = false;
+ //
+ // WaggsR
+ //
+ this.WaggsR.BackColor = System.Drawing.Color.Transparent;
+ this.WaggsR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WaggsR.BackgroundImage")));
+ this.WaggsR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WaggsR.FlatAppearance.BorderSize = 0;
+ this.WaggsR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WaggsR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WaggsR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WaggsR.FunkeyID = "000000B8";
+ this.WaggsR.Location = new System.Drawing.Point(602, 168);
+ this.WaggsR.Name = "WaggsR";
+ this.WaggsR.Size = new System.Drawing.Size(50, 63);
+ this.WaggsR.TabIndex = 18;
+ this.WaggsR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WaggsR.UseVisualStyleBackColor = false;
+ //
+ // Waggs
+ //
+ this.Waggs.BackColor = System.Drawing.Color.Transparent;
+ this.Waggs.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Waggs.BackgroundImage")));
+ this.Waggs.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Waggs.FlatAppearance.BorderSize = 0;
+ this.Waggs.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Waggs.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Waggs.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Waggs.FunkeyID = "000000AB";
+ this.Waggs.Location = new System.Drawing.Point(551, 168);
+ this.Waggs.Name = "Waggs";
+ this.Waggs.Size = new System.Drawing.Size(50, 63);
+ this.Waggs.TabIndex = 17;
+ this.Waggs.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Waggs.UseVisualStyleBackColor = false;
+ //
+ // DotLabel
+ //
+ this.DotLabel.AutoSize = true;
+ this.DotLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DotLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DotLabel.Location = new System.Drawing.Point(336, 284);
+ this.DotLabel.Name = "DotLabel";
+ this.DotLabel.Size = new System.Drawing.Size(59, 29);
+ this.DotLabel.TabIndex = 24;
+ this.DotLabel.Text = "DOT";
+ //
+ // DotVR
+ //
+ this.DotVR.BackColor = System.Drawing.Color.Transparent;
+ this.DotVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DotVR.BackgroundImage")));
+ this.DotVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DotVR.FlatAppearance.BorderSize = 0;
+ this.DotVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DotVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DotVR.FunkeyID = "00000101";
+ this.DotVR.Location = new System.Drawing.Point(389, 318);
+ this.DotVR.Name = "DotVR";
+ this.DotVR.Size = new System.Drawing.Size(50, 63);
+ this.DotVR.TabIndex = 23;
+ this.DotVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DotVR.UseVisualStyleBackColor = false;
+ //
+ // DotR
+ //
+ this.DotR.BackColor = System.Drawing.Color.Transparent;
+ this.DotR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DotR.BackgroundImage")));
+ this.DotR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DotR.FlatAppearance.BorderSize = 0;
+ this.DotR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DotR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DotR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DotR.FunkeyID = "000000FD";
+ this.DotR.Location = new System.Drawing.Point(338, 318);
+ this.DotR.Name = "DotR";
+ this.DotR.Size = new System.Drawing.Size(50, 63);
+ this.DotR.TabIndex = 22;
+ this.DotR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DotR.UseVisualStyleBackColor = false;
+ //
+ // Dot
+ //
+ this.Dot.BackColor = System.Drawing.Color.Transparent;
+ this.Dot.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dot.BackgroundImage")));
+ this.Dot.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dot.FlatAppearance.BorderSize = 0;
+ this.Dot.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dot.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dot.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Dot.FunkeyID = "000000FC";
+ this.Dot.Location = new System.Drawing.Point(287, 318);
+ this.Dot.Name = "Dot";
+ this.Dot.Size = new System.Drawing.Size(50, 63);
+ this.Dot.TabIndex = 21;
+ this.Dot.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dot.UseVisualStyleBackColor = false;
+ //
+ // HenchmanLabel
+ //
+ this.HenchmanLabel.AutoSize = true;
+ this.HenchmanLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HenchmanLabel.Location = new System.Drawing.Point(89, 426);
+ this.HenchmanLabel.Name = "HenchmanLabel";
+ this.HenchmanLabel.Size = new System.Drawing.Size(140, 29);
+ this.HenchmanLabel.TabIndex = 28;
+ this.HenchmanLabel.Text = "HENCHMAN";
+ //
+ // Henchman
+ //
+ this.Henchman.BackColor = System.Drawing.Color.Transparent;
+ this.Henchman.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Henchman.BackgroundImage")));
+ this.Henchman.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Henchman.FlatAppearance.BorderSize = 0;
+ this.Henchman.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Henchman.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Henchman.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Henchman.FunkeyID = "000000CF";
+ this.Henchman.Location = new System.Drawing.Point(132, 458);
+ this.Henchman.Name = "Henchman";
+ this.Henchman.Size = new System.Drawing.Size(50, 63);
+ this.Henchman.TabIndex = 26;
+ this.Henchman.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Henchman.UseVisualStyleBackColor = false;
+ //
+ // MasterLoxLabel
+ //
+ this.MasterLoxLabel.AutoSize = true;
+ this.MasterLoxLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MasterLoxLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MasterLoxLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MasterLoxLabel.Location = new System.Drawing.Point(287, 426);
+ this.MasterLoxLabel.Name = "MasterLoxLabel";
+ this.MasterLoxLabel.Size = new System.Drawing.Size(153, 29);
+ this.MasterLoxLabel.TabIndex = 30;
+ this.MasterLoxLabel.Text = "MASTER LOX";
+ //
+ // MasterLox
+ //
+ this.MasterLox.BackColor = System.Drawing.Color.Transparent;
+ this.MasterLox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MasterLox.BackgroundImage")));
+ this.MasterLox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MasterLox.FlatAppearance.BorderSize = 0;
+ this.MasterLox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MasterLox.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MasterLox.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MasterLox.FunkeyID = "000000F7";
+ this.MasterLox.Location = new System.Drawing.Point(338, 458);
+ this.MasterLox.Name = "MasterLox";
+ this.MasterLox.Size = new System.Drawing.Size(50, 63);
+ this.MasterLox.TabIndex = 29;
+ this.MasterLox.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MasterLox.UseVisualStyleBackColor = false;
+ //
+ // MayorSaysoLabel
+ //
+ this.MayorSaysoLabel.AutoSize = true;
+ this.MayorSaysoLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MayorSaysoLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MayorSaysoLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MayorSaysoLabel.Location = new System.Drawing.Point(493, 426);
+ this.MayorSaysoLabel.Name = "MayorSaysoLabel";
+ this.MayorSaysoLabel.Size = new System.Drawing.Size(173, 29);
+ this.MayorSaysoLabel.TabIndex = 32;
+ this.MayorSaysoLabel.Text = "MAYOR SAYSO";
+ //
+ // MayorSayso
+ //
+ this.MayorSayso.BackColor = System.Drawing.Color.Transparent;
+ this.MayorSayso.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MayorSayso.BackgroundImage")));
+ this.MayorSayso.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MayorSayso.FlatAppearance.BorderSize = 0;
+ this.MayorSayso.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MayorSayso.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MayorSayso.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MayorSayso.FunkeyID = "000000F8";
+ this.MayorSayso.Location = new System.Drawing.Point(551, 458);
+ this.MayorSayso.Name = "MayorSayso";
+ this.MayorSayso.Size = new System.Drawing.Size(50, 63);
+ this.MayorSayso.TabIndex = 31;
+ this.MayorSayso.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MayorSayso.UseVisualStyleBackColor = false;
+ //
+ // HollerLabel
+ //
+ this.HollerLabel.AutoSize = true;
+ this.HollerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HollerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HollerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HollerLabel.Location = new System.Drawing.Point(110, 286);
+ this.HollerLabel.Name = "HollerLabel";
+ this.HollerLabel.Size = new System.Drawing.Size(96, 29);
+ this.HollerLabel.TabIndex = 34;
+ this.HollerLabel.Text = "HOLLER";
+ //
+ // Holler
+ //
+ this.Holler.BackColor = System.Drawing.Color.Transparent;
+ this.Holler.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Holler.BackgroundImage")));
+ this.Holler.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Holler.FlatAppearance.BorderSize = 0;
+ this.Holler.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Holler.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Holler.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Holler.FunkeyID = "000000CD";
+ this.Holler.Location = new System.Drawing.Point(132, 318);
+ this.Holler.Name = "Holler";
+ this.Holler.Size = new System.Drawing.Size(50, 63);
+ this.Holler.TabIndex = 33;
+ this.Holler.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Holler.UseVisualStyleBackColor = false;
+ //
+ // GabbyLabel
+ //
+ this.GabbyLabel.AutoSize = true;
+ this.GabbyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GabbyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GabbyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GabbyLabel.Location = new System.Drawing.Point(534, 286);
+ this.GabbyLabel.Name = "GabbyLabel";
+ this.GabbyLabel.Size = new System.Drawing.Size(82, 29);
+ this.GabbyLabel.TabIndex = 36;
+ this.GabbyLabel.Text = "GABBY";
+ //
+ // Gabby
+ //
+ this.Gabby.BackColor = System.Drawing.Color.Transparent;
+ this.Gabby.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Gabby.BackgroundImage")));
+ this.Gabby.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Gabby.FlatAppearance.BorderSize = 0;
+ this.Gabby.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Gabby.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Gabby.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Gabby.FunkeyID = "000000CB";
+ this.Gabby.Location = new System.Drawing.Point(551, 318);
+ this.Gabby.Name = "Gabby";
+ this.Gabby.Size = new System.Drawing.Size(50, 63);
+ this.Gabby.TabIndex = 35;
+ this.Gabby.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Gabby.UseVisualStyleBackColor = false;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 82;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 83;
//
// FunkeysTown
//
@@ -575,46 +576,47 @@ private void InitializeComponent()
this.BackColor = System.Drawing.Color.Gold;
this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
this.ClientSize = new System.Drawing.Size(726, 566);
- this.Controls.Add(this.minimizeButton1);
- this.Controls.Add(this.closeButton1);
- this.Controls.Add(this.label11);
- this.Controls.Add(this.button21);
- this.Controls.Add(this.label10);
- this.Controls.Add(this.button20);
- this.Controls.Add(this.label9);
- this.Controls.Add(this.button19);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.button17);
- this.Controls.Add(this.label7);
- this.Controls.Add(this.button18);
- this.Controls.Add(this.label6);
- this.Controls.Add(this.button14);
- this.Controls.Add(this.button15);
- this.Controls.Add(this.button16);
- this.Controls.Add(this.label5);
- this.Controls.Add(this.button11);
- this.Controls.Add(this.button12);
- this.Controls.Add(this.button13);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.button8);
- this.Controls.Add(this.button9);
- this.Controls.Add(this.button10);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.button5);
- this.Controls.Add(this.button6);
- this.Controls.Add(this.button7);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.button4);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label2);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.GabbyLabel);
+ this.Controls.Add(this.Gabby);
+ this.Controls.Add(this.HollerLabel);
+ this.Controls.Add(this.Holler);
+ this.Controls.Add(this.MayorSaysoLabel);
+ this.Controls.Add(this.MayorSayso);
+ this.Controls.Add(this.MasterLoxLabel);
+ this.Controls.Add(this.MasterLox);
+ this.Controls.Add(this.HenchmanLabel);
+ this.Controls.Add(this.Henchman);
+ this.Controls.Add(this.DotLabel);
+ this.Controls.Add(this.DotVR);
+ this.Controls.Add(this.DotR);
+ this.Controls.Add(this.Dot);
+ this.Controls.Add(this.WaggsLabel);
+ this.Controls.Add(this.WaggsVR);
+ this.Controls.Add(this.WaggsR);
+ this.Controls.Add(this.Waggs);
+ this.Controls.Add(this.LotusLabel);
+ this.Controls.Add(this.LotusVR);
+ this.Controls.Add(this.LotusR);
+ this.Controls.Add(this.Lotus);
+ this.Controls.Add(this.DriftLabel);
+ this.Controls.Add(this.DriftVR);
+ this.Controls.Add(this.DriftR);
+ this.Controls.Add(this.Drift);
+ this.Controls.Add(this.ScratchLabel);
+ this.Controls.Add(this.ScratchVR);
+ this.Controls.Add(this.ScratchR);
+ this.Controls.Add(this.Scratch);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.FunkeysTownLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "FunkeysTown";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
this.ResumeLayout(false);
this.PerformLayout();
@@ -622,39 +624,39 @@ private void InitializeComponent()
#endregion
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button17;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button button21;
- private CloseButton closeButton1;
- private UserControls.MinimizeButton minimizeButton1;
+ private System.Windows.Forms.Label FunkeysTownLabel;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private FunkeySelector.UserControls.FunkeyChangerButton Scratch;
+ private FunkeySelector.UserControls.FunkeyChangerButton ScratchR;
+ private FunkeySelector.UserControls.FunkeyChangerButton ScratchVR;
+ private System.Windows.Forms.Label ScratchLabel;
+ private System.Windows.Forms.Label DriftLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DriftVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DriftR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Drift;
+ private System.Windows.Forms.Label LotusLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton LotusVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton LotusR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Lotus;
+ private System.Windows.Forms.Label WaggsLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WaggsVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WaggsR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Waggs;
+ private System.Windows.Forms.Label DotLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DotVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DotR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dot;
+ private System.Windows.Forms.Label HenchmanLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Henchman;
+ private System.Windows.Forms.Label MasterLoxLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MasterLox;
+ private System.Windows.Forms.Label MayorSaysoLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MayorSayso;
+ private System.Windows.Forms.Label HollerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Holler;
+ private System.Windows.Forms.Label GabbyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Gabby;
+ private UserControls.CloseButton closeButton;
+ private UserControls.MinimizeButton minimizeButton;
}
}
\ No newline at end of file
diff --git a/FunkeySelector/FunkeysTown.cs b/FunkeySelector/FunkeysTown.cs
index 238990a..4c8c451 100644
--- a/FunkeySelector/FunkeysTown.cs
+++ b/FunkeySelector/FunkeysTown.cs
@@ -9,173 +9,15 @@
using System.IO;
using System.Windows.Forms;
using System.Diagnostics;
+using FunkeySelector.UserControls;
namespace FunkeySelector
{
- public partial class FunkeysTown : Form
+ public partial class FunkeysTown : BasicForm
{
- //
- // Initial Setups
- //
-
- CustomFManager customF = new CustomFManager(); //Assigns CustomFManager to customF.
public FunkeysTown()
{
InitializeComponent();
- this.TransparencyKey = System.Drawing.Color.Gold; //Cuts out gold parts to be rounded.
- }
-
- protected override void WndProc(ref Message m) //Allows the window to be dragged.
- {
- switch (m.Msg)
- {
- case 0x84:
- base.WndProc(ref m);
- if ((int)m.Result == 0x1)
- m.Result = (IntPtr)0x2;
- return;
- }
-
- base.WndProc(ref m);
- }
-
- //
- // End of Initial Setups
- //
-
- //
- // Button Clicks
- // Most of these call CustomFManager to set the customF code.
- //
-
- //Back
- private void button1_Click(object sender, EventArgs e)
- {
- Form1 form1 = new Form1();
- this.Hide();
- form1.StartPosition = FormStartPosition.CenterParent;
- form1.ShowDialog(this);
- }
-
- private void Scratch_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000047");
- }
-
- private void ScratchR_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000048");
- }
-
- private void ScratchVR_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000049");
- }
-
- //Lotus
- private void button10_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000004A");
- }
-
- //Lotus R
- private void button9_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000004B");
- }
-
- //Lotus VR
- private void button8_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("0000004F");
}
-
- //Drift
- private void button7_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AA");
- }
-
- //Drift R
- private void button6_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B7");
- }
-
- //Drift VR
- private void button5_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C4");
- }
-
- //Waggs
- private void button13_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000AB");
- }
-
- //Waggs R
- private void button12_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000B8");
- }
-
- //Waggs VR
- private void button11_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000C5");
- }
-
- //Dot
- private void button16_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000FC");
- }
-
- //Dot R
- private void button15_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000FD");
- }
-
- //Dot VR
- private void button14_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("00000101");
- }
-
- //Holler
- private void button20_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CD");
- }
-
- //Gabby
- private void button21_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CB");
- }
-
- //Henchman
- private void button18_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000CF");
- }
-
- //Master Lox
- private void button17_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000F7");
- }
-
- //Mayor Sayso
- private void button19_Click(object sender, EventArgs e)
- {
- customF.SetFunkey("000000F8");
- }
-
- //
- //End of Button Clicks
- //
}
}
diff --git a/FunkeySelector/FunkeysTown.resx b/FunkeySelector/FunkeysTown.resx
index 731d3a9..80b7893 100644
--- a/FunkeySelector/FunkeysTown.resx
+++ b/FunkeySelector/FunkeysTown.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -195,7 +195,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -272,7 +272,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKpJREFUaEPtmHdso/d5x9WM2rHrJpfz6e50dzoN7r33EilRErWlkyiJGkfteZrU
@@ -349,7 +349,7 @@
vrSykvV45iWP7JE9skf2sJaV9b+nHOeV/g1YwgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEeFJREFUaEPtWXlsm/d5VtImtuNT90Xxvu9DpERKoi6KkkhRJw8dlEjdoiXKlnVY
@@ -431,7 +431,7 @@
/NRT0/oTp/3GpbMWwfpbCd+8gO/ZPbtn/18tIeG/APITVfCMVOnbAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEshJREFUaEPtWXl003W2T9ekTbM1a5NmT9ukSZNm677vK9i9dF/TfbWF0oJtsQiF
@@ -517,7 +517,7 @@
fevJOO3AEQbXe8st3MIt3MLNgsH4b06jQrzInD2WAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE1lJREFUaEPtWXlUU/e2PmpFZgMJJGQOISEJIQxhHmSe5wAyz/MsIAKCIgqiqDhL
@@ -606,7 +606,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEilJREFUaEPtmGdwXPd1xZlkPJOZJJ58cBJnkszEHsWypNiWJcuWZcqmxCqKEsUq
@@ -690,7 +690,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtmHdYVWe2xg8qRSlSBLEilljjmGYymkQziTPjOHpTxozRRAVFQXqX
@@ -774,7 +774,7 @@
dzv0x7FIoaE85Ff8il/xK/7fQqH4T2LpH3y1WWYAAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEKFJREFUaEPtmHdUVXe2x1kxjiIq/dLh0quIYnTsmhg1sUWNOHZUpKNwRZoU6VV6
@@ -851,7 +851,7 @@
b+/tvf2/NRmZ/wRKG10/yXulOQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuVJREFUaEPtWXlYkweeZrfts93tdqaznbbzTGdnptVWra1azyoeKB54AGKr3Ec4
@@ -938,7 +938,7 @@
AAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEYBJREFUaEPtmWd0k+eSx9nd5Cx7702FNGzcC+6WZdmWbFmSrWL1LlmyLPeGGxgb
@@ -1019,7 +1019,7 @@
m08AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnxJREFUaEPtWWlUVGe2rZ7SyetOd+clnU4600sn0bTRJEqLOKKiCGoCoiDzPEMx
@@ -1104,7 +1104,7 @@
8OOAxfpvBEVDcRPc2hkAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0RJREFUaEPtWXdU1He2/9HLDDPMAFOZGRiYYYYpgBQRaQKCIoqVplQVbCAWUIo0
@@ -1192,7 +1192,7 @@
0+onxlfx32OmO50/voBf4RVe4RX+H4Bh/guBMDrgdpX7zQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE3hJREFUaEPtWWdQVVmXPeQgQRHJSpaMIhhBbTNi2/0pbW4lCU8kNTlJzghIFJAg
@@ -1281,7 +1281,7 @@
HWfK9Nk/H+Dv+I7v+P8Mxv4D/MSsC7vquGMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEyZJREFUaEPtWXdQ1Pe2J6bYkLKwBdjKVrawu7DLsoAISFOKgBRFiiiCgAawgQEU
@@ -1369,7 +1369,7 @@
zenDeAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnpJREFUaEPtWAdQXIeZfpIFCJa2vbDssvQiQHRYyoIoK4QoKkggAcI00REgEFUg
@@ -1454,7 +1454,7 @@
Ygzz38rJKj+rnq9UAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFOJJREFUaEPtmXl4lOW5xt9kMllm3/d9JpNksmeyBwhEApElAWlYCgqKDVhcUJBd
@@ -1549,7 +1549,7 @@
4Y/PFfwslzeDAdjT7IUfACDE/wCy7XGORG+FHQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFspJREFUaEPtWHdUVFe3v4lJLLFESeyKPQZbkI506U3aUIcOAwwMbYABBmaYoQxD
@@ -1652,7 +1652,7 @@
OCFImjsCnDjZXAlQEoV/Bvpmnn+e6/+jUdR/Ax7m6P5UhEo3AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAG1ZJREFUaEPdendYVNe6/mKGOiJIkSIoYIdYUCxYEQHFUKQNIB0Ghl6kd5DekSbS
@@ -1775,7 +1775,7 @@
AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAGsRJREFUaEPdendUlVe6/pYuVYqADbGBg8YSozHGiSWJsfdjV1CUKCBI7xy6SO9K
diff --git a/FunkeySelector/FunkikiIsland.Designer.cs b/FunkeySelector/FunkikiIsland.Designer.cs
new file mode 100644
index 0000000..ca3c2d8
--- /dev/null
+++ b/FunkeySelector/FunkikiIsland.Designer.cs
@@ -0,0 +1,551 @@
+namespace FunkeySelector
+{
+ partial class FunkikiIsland
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunkikiIsland));
+ this.WebleyLabel = new System.Windows.Forms.Label();
+ this.WebleyVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WebleyR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Webley = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NibbleLabel = new System.Windows.Forms.Label();
+ this.NibbleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NibbleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Nibble = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SolLabel = new System.Windows.Forms.Label();
+ this.SolVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SolR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sol = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FlurryLabel = new System.Windows.Forms.Label();
+ this.FlurryVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FlurryR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Flurry = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.FunkikiIslandLabel = new System.Windows.Forms.Label();
+ this.PineappleKingLabel = new System.Windows.Forms.Label();
+ this.PineappleKing = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NativeLabel = new System.Windows.Forms.Label();
+ this.Native = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.JerryLabel = new System.Windows.Forms.Label();
+ this.Jerry = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RewindLabel = new System.Windows.Forms.Label();
+ this.Rewind = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // WebleyLabel
+ //
+ this.WebleyLabel.AutoSize = true;
+ this.WebleyLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WebleyLabel.Location = new System.Drawing.Point(325, 425);
+ this.WebleyLabel.Name = "WebleyLabel";
+ this.WebleyLabel.Size = new System.Drawing.Size(99, 29);
+ this.WebleyLabel.TabIndex = 74;
+ this.WebleyLabel.Text = "WEBLEY";
+ //
+ // WebleyVR
+ //
+ this.WebleyVR.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WebleyVR.BackgroundImage")));
+ this.WebleyVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WebleyVR.FlatAppearance.BorderSize = 0;
+ this.WebleyVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WebleyVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WebleyVR.FunkeyID = "0000005E";
+ this.WebleyVR.Location = new System.Drawing.Point(401, 467);
+ this.WebleyVR.Name = "WebleyVR";
+ this.WebleyVR.Size = new System.Drawing.Size(50, 63);
+ this.WebleyVR.TabIndex = 73;
+ this.WebleyVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WebleyVR.UseVisualStyleBackColor = false;
+ //
+ // WebleyR
+ //
+ this.WebleyR.BackColor = System.Drawing.Color.Transparent;
+ this.WebleyR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WebleyR.BackgroundImage")));
+ this.WebleyR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WebleyR.FlatAppearance.BorderSize = 0;
+ this.WebleyR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WebleyR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WebleyR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WebleyR.FunkeyID = "0000005D";
+ this.WebleyR.Location = new System.Drawing.Point(350, 467);
+ this.WebleyR.Name = "WebleyR";
+ this.WebleyR.Size = new System.Drawing.Size(50, 63);
+ this.WebleyR.TabIndex = 72;
+ this.WebleyR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WebleyR.UseVisualStyleBackColor = false;
+ //
+ // Webley
+ //
+ this.Webley.BackColor = System.Drawing.Color.Transparent;
+ this.Webley.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Webley.BackgroundImage")));
+ this.Webley.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Webley.FlatAppearance.BorderSize = 0;
+ this.Webley.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Webley.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Webley.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Webley.FunkeyID = "0000005C";
+ this.Webley.Location = new System.Drawing.Point(299, 467);
+ this.Webley.Name = "Webley";
+ this.Webley.Size = new System.Drawing.Size(50, 63);
+ this.Webley.TabIndex = 71;
+ this.Webley.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Webley.UseVisualStyleBackColor = false;
+ //
+ // NibbleLabel
+ //
+ this.NibbleLabel.AutoSize = true;
+ this.NibbleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NibbleLabel.Location = new System.Drawing.Point(332, 218);
+ this.NibbleLabel.Name = "NibbleLabel";
+ this.NibbleLabel.Size = new System.Drawing.Size(92, 29);
+ this.NibbleLabel.TabIndex = 70;
+ this.NibbleLabel.Text = "NIBBLE";
+ //
+ // NibbleVR
+ //
+ this.NibbleVR.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NibbleVR.BackgroundImage")));
+ this.NibbleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NibbleVR.FlatAppearance.BorderSize = 0;
+ this.NibbleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NibbleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NibbleVR.FunkeyID = "00000055";
+ this.NibbleVR.Location = new System.Drawing.Point(401, 256);
+ this.NibbleVR.Name = "NibbleVR";
+ this.NibbleVR.Size = new System.Drawing.Size(50, 63);
+ this.NibbleVR.TabIndex = 69;
+ this.NibbleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NibbleVR.UseVisualStyleBackColor = false;
+ //
+ // NibbleR
+ //
+ this.NibbleR.BackColor = System.Drawing.Color.Transparent;
+ this.NibbleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NibbleR.BackgroundImage")));
+ this.NibbleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NibbleR.FlatAppearance.BorderSize = 0;
+ this.NibbleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NibbleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NibbleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.NibbleR.FunkeyID = "00000054";
+ this.NibbleR.Location = new System.Drawing.Point(350, 256);
+ this.NibbleR.Name = "NibbleR";
+ this.NibbleR.Size = new System.Drawing.Size(50, 63);
+ this.NibbleR.TabIndex = 68;
+ this.NibbleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NibbleR.UseVisualStyleBackColor = false;
+ //
+ // Nibble
+ //
+ this.Nibble.BackColor = System.Drawing.Color.Transparent;
+ this.Nibble.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Nibble.BackgroundImage")));
+ this.Nibble.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Nibble.FlatAppearance.BorderSize = 0;
+ this.Nibble.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Nibble.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Nibble.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Nibble.FunkeyID = "00000053";
+ this.Nibble.Location = new System.Drawing.Point(299, 256);
+ this.Nibble.Name = "Nibble";
+ this.Nibble.Size = new System.Drawing.Size(50, 63);
+ this.Nibble.TabIndex = 67;
+ this.Nibble.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Nibble.UseVisualStyleBackColor = false;
+ //
+ // SolLabel
+ //
+ this.SolLabel.AutoSize = true;
+ this.SolLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SolLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SolLabel.Location = new System.Drawing.Point(347, 324);
+ this.SolLabel.Name = "SolLabel";
+ this.SolLabel.Size = new System.Drawing.Size(57, 29);
+ this.SolLabel.TabIndex = 66;
+ this.SolLabel.Text = "SOL";
+ //
+ // SolVR
+ //
+ this.SolVR.BackColor = System.Drawing.Color.Transparent;
+ this.SolVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SolVR.BackgroundImage")));
+ this.SolVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SolVR.FlatAppearance.BorderSize = 0;
+ this.SolVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SolVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SolVR.FunkeyID = "0000005B";
+ this.SolVR.Location = new System.Drawing.Point(401, 359);
+ this.SolVR.Name = "SolVR";
+ this.SolVR.Size = new System.Drawing.Size(50, 63);
+ this.SolVR.TabIndex = 65;
+ this.SolVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SolVR.UseVisualStyleBackColor = false;
+ //
+ // SolR
+ //
+ this.SolR.BackColor = System.Drawing.Color.Transparent;
+ this.SolR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SolR.BackgroundImage")));
+ this.SolR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SolR.FlatAppearance.BorderSize = 0;
+ this.SolR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SolR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SolR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SolR.FunkeyID = "0000005A";
+ this.SolR.Location = new System.Drawing.Point(350, 359);
+ this.SolR.Name = "SolR";
+ this.SolR.Size = new System.Drawing.Size(50, 63);
+ this.SolR.TabIndex = 64;
+ this.SolR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SolR.UseVisualStyleBackColor = false;
+ //
+ // Sol
+ //
+ this.Sol.BackColor = System.Drawing.Color.Transparent;
+ this.Sol.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sol.BackgroundImage")));
+ this.Sol.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sol.FlatAppearance.BorderSize = 0;
+ this.Sol.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sol.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sol.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sol.FunkeyID = "00000056";
+ this.Sol.Location = new System.Drawing.Point(299, 359);
+ this.Sol.Name = "Sol";
+ this.Sol.Size = new System.Drawing.Size(50, 63);
+ this.Sol.TabIndex = 63;
+ this.Sol.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sol.UseVisualStyleBackColor = false;
+ //
+ // FlurryLabel
+ //
+ this.FlurryLabel.AutoSize = true;
+ this.FlurryLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FlurryLabel.Location = new System.Drawing.Point(329, 98);
+ this.FlurryLabel.Name = "FlurryLabel";
+ this.FlurryLabel.Size = new System.Drawing.Size(92, 29);
+ this.FlurryLabel.TabIndex = 62;
+ this.FlurryLabel.Text = "FLURRY";
+ //
+ // FlurryVR
+ //
+ this.FlurryVR.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FlurryVR.BackgroundImage")));
+ this.FlurryVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FlurryVR.FlatAppearance.BorderSize = 0;
+ this.FlurryVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FlurryVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FlurryVR.FunkeyID = "00000052";
+ this.FlurryVR.Location = new System.Drawing.Point(401, 138);
+ this.FlurryVR.Name = "FlurryVR";
+ this.FlurryVR.Size = new System.Drawing.Size(50, 63);
+ this.FlurryVR.TabIndex = 61;
+ this.FlurryVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FlurryVR.UseVisualStyleBackColor = false;
+ //
+ // FlurryR
+ //
+ this.FlurryR.BackColor = System.Drawing.Color.Transparent;
+ this.FlurryR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FlurryR.BackgroundImage")));
+ this.FlurryR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FlurryR.FlatAppearance.BorderSize = 0;
+ this.FlurryR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FlurryR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FlurryR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.FlurryR.FunkeyID = "00000051";
+ this.FlurryR.Location = new System.Drawing.Point(350, 138);
+ this.FlurryR.Name = "FlurryR";
+ this.FlurryR.Size = new System.Drawing.Size(50, 63);
+ this.FlurryR.TabIndex = 60;
+ this.FlurryR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FlurryR.UseVisualStyleBackColor = false;
+ //
+ // Flurry
+ //
+ this.Flurry.BackColor = System.Drawing.Color.Transparent;
+ this.Flurry.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Flurry.BackgroundImage")));
+ this.Flurry.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Flurry.FlatAppearance.BorderSize = 0;
+ this.Flurry.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Flurry.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Flurry.ForeColor = System.Drawing.Color.Transparent;
+ this.Flurry.FunkeyID = "00000050";
+ this.Flurry.Location = new System.Drawing.Point(299, 138);
+ this.Flurry.Name = "Flurry";
+ this.Flurry.Size = new System.Drawing.Size(50, 63);
+ this.Flurry.TabIndex = 59;
+ this.Flurry.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Flurry.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // FunkikiIslandLabel
+ //
+ this.FunkikiIslandLabel.AutoSize = true;
+ this.FunkikiIslandLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FunkikiIslandLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FunkikiIslandLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FunkikiIslandLabel.Location = new System.Drawing.Point(205, 19);
+ this.FunkikiIslandLabel.Name = "FunkikiIslandLabel";
+ this.FunkikiIslandLabel.Size = new System.Drawing.Size(347, 52);
+ this.FunkikiIslandLabel.TabIndex = 57;
+ this.FunkikiIslandLabel.Text = "FUNKIKI ISLAND";
+ //
+ // PineappleKingLabel
+ //
+ this.PineappleKingLabel.AutoSize = true;
+ this.PineappleKingLabel.BackColor = System.Drawing.Color.Transparent;
+ this.PineappleKingLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PineappleKingLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.PineappleKingLabel.Location = new System.Drawing.Point(41, 152);
+ this.PineappleKingLabel.Name = "PineappleKingLabel";
+ this.PineappleKingLabel.Size = new System.Drawing.Size(188, 29);
+ this.PineappleKingLabel.TabIndex = 76;
+ this.PineappleKingLabel.Text = "PINEAPPLE KING";
+ //
+ // PineappleKing
+ //
+ this.PineappleKing.BackColor = System.Drawing.Color.Transparent;
+ this.PineappleKing.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PineappleKing.BackgroundImage")));
+ this.PineappleKing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PineappleKing.FlatAppearance.BorderSize = 0;
+ this.PineappleKing.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PineappleKing.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PineappleKing.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.PineappleKing.FunkeyID = "000000F2";
+ this.PineappleKing.Location = new System.Drawing.Point(108, 184);
+ this.PineappleKing.Name = "PineappleKing";
+ this.PineappleKing.Size = new System.Drawing.Size(50, 63);
+ this.PineappleKing.TabIndex = 75;
+ this.PineappleKing.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PineappleKing.UseVisualStyleBackColor = false;
+ //
+ // NativeLabel
+ //
+ this.NativeLabel.AutoSize = true;
+ this.NativeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NativeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NativeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NativeLabel.Location = new System.Drawing.Point(87, 362);
+ this.NativeLabel.Name = "NativeLabel";
+ this.NativeLabel.Size = new System.Drawing.Size(97, 29);
+ this.NativeLabel.TabIndex = 78;
+ this.NativeLabel.Text = "NATIVE";
+ //
+ // Native
+ //
+ this.Native.BackColor = System.Drawing.Color.Transparent;
+ this.Native.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Native.BackgroundImage")));
+ this.Native.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Native.FlatAppearance.BorderSize = 0;
+ this.Native.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Native.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Native.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Native.FunkeyID = "000000F6";
+ this.Native.Location = new System.Drawing.Point(108, 402);
+ this.Native.Name = "Native";
+ this.Native.Size = new System.Drawing.Size(50, 63);
+ this.Native.TabIndex = 77;
+ this.Native.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Native.UseVisualStyleBackColor = false;
+ //
+ // JerryLabel
+ //
+ this.JerryLabel.AutoSize = true;
+ this.JerryLabel.BackColor = System.Drawing.Color.Transparent;
+ this.JerryLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.JerryLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.JerryLabel.Location = new System.Drawing.Point(549, 144);
+ this.JerryLabel.Name = "JerryLabel";
+ this.JerryLabel.Size = new System.Drawing.Size(79, 29);
+ this.JerryLabel.TabIndex = 80;
+ this.JerryLabel.Text = "JERRY";
+ //
+ // Jerry
+ //
+ this.Jerry.BackColor = System.Drawing.Color.Transparent;
+ this.Jerry.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Jerry.BackgroundImage")));
+ this.Jerry.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Jerry.FlatAppearance.BorderSize = 0;
+ this.Jerry.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Jerry.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Jerry.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Jerry.FunkeyID = "000000F1";
+ this.Jerry.Location = new System.Drawing.Point(570, 184);
+ this.Jerry.Name = "Jerry";
+ this.Jerry.Size = new System.Drawing.Size(50, 63);
+ this.Jerry.TabIndex = 79;
+ this.Jerry.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Jerry.UseVisualStyleBackColor = false;
+ //
+ // RewindLabel
+ //
+ this.RewindLabel.AutoSize = true;
+ this.RewindLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RewindLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RewindLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RewindLabel.Location = new System.Drawing.Point(557, 371);
+ this.RewindLabel.Name = "RewindLabel";
+ this.RewindLabel.Size = new System.Drawing.Size(104, 29);
+ this.RewindLabel.TabIndex = 82;
+ this.RewindLabel.Text = "REWIND";
+ //
+ // Rewind
+ //
+ this.Rewind.BackColor = System.Drawing.Color.Transparent;
+ this.Rewind.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rewind.BackgroundImage")));
+ this.Rewind.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rewind.FlatAppearance.BorderSize = 0;
+ this.Rewind.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rewind.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rewind.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Rewind.FunkeyID = "000000CC";
+ this.Rewind.Location = new System.Drawing.Point(578, 411);
+ this.Rewind.Name = "Rewind";
+ this.Rewind.Size = new System.Drawing.Size(50, 63);
+ this.Rewind.TabIndex = 81;
+ this.Rewind.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rewind.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 89;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 90;
+ //
+ // FunkikiIsland
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.RewindLabel);
+ this.Controls.Add(this.Rewind);
+ this.Controls.Add(this.JerryLabel);
+ this.Controls.Add(this.Jerry);
+ this.Controls.Add(this.NativeLabel);
+ this.Controls.Add(this.Native);
+ this.Controls.Add(this.PineappleKingLabel);
+ this.Controls.Add(this.PineappleKing);
+ this.Controls.Add(this.WebleyLabel);
+ this.Controls.Add(this.WebleyVR);
+ this.Controls.Add(this.WebleyR);
+ this.Controls.Add(this.Webley);
+ this.Controls.Add(this.NibbleLabel);
+ this.Controls.Add(this.NibbleVR);
+ this.Controls.Add(this.NibbleR);
+ this.Controls.Add(this.Nibble);
+ this.Controls.Add(this.SolLabel);
+ this.Controls.Add(this.SolVR);
+ this.Controls.Add(this.SolR);
+ this.Controls.Add(this.Sol);
+ this.Controls.Add(this.FlurryLabel);
+ this.Controls.Add(this.FlurryVR);
+ this.Controls.Add(this.FlurryR);
+ this.Controls.Add(this.Flurry);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.FunkikiIslandLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "FunkikiIsland";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label WebleyLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WebleyVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WebleyR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Webley;
+ private System.Windows.Forms.Label NibbleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton NibbleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton NibbleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Nibble;
+ private System.Windows.Forms.Label SolLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SolVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SolR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sol;
+ private System.Windows.Forms.Label FlurryLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton FlurryVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton FlurryR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Flurry;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label FunkikiIslandLabel;
+ private System.Windows.Forms.Label PineappleKingLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton PineappleKing;
+ private System.Windows.Forms.Label NativeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Native;
+ private System.Windows.Forms.Label JerryLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Jerry;
+ private System.Windows.Forms.Label RewindLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rewind;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/FunkikiIsland.cs b/FunkeySelector/FunkikiIsland.cs
new file mode 100644
index 0000000..5dc6d77
--- /dev/null
+++ b/FunkeySelector/FunkikiIsland.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class FunkikiIsland : BasicForm
+ {
+ public FunkikiIsland()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form6.resx b/FunkeySelector/FunkikiIsland.resx
similarity index 99%
rename from FunkeySelector/Form6.resx
rename to FunkeySelector/FunkikiIsland.resx
index 1f5797f..b33825a 100644
--- a/FunkeySelector/Form6.resx
+++ b/FunkeySelector/FunkikiIsland.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEWdJREFUaEPtWXdU1deW5r1M1ps3meTFmNgLWChSBAGR3qsgRTqCgnSkK0U60jtI
@@ -198,7 +198,7 @@
5rkkNdVA3j/sq1k2NkJ/FXzlY3yMj/FPCyGhfwCCbW3riX1FVAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEsxJREFUaEPtmXd0lOW2xnPvOS6Px4sgXXooCaQnk8ykl5mUSSaTOumk90oapAeS
@@ -284,7 +284,7 @@
wnjrVolO3/AinaCgx7Tv+A2/4Tf8y6Cj818V+m0rUCp5PwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEAlJREFUaEPtWWlsY+d1VRo7i+OxPYvWGckaaaTRLkqUuFOkuEpcRFEktVEStVKi
@@ -358,7 +358,7 @@
pQAT0eIL2zF/2a8dLNVubAxLE2HZJUVa2hdTlzyzZ/bMPjVLS/sfY+W6N/18XZcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo1JREFUaEPtmHdY1VeexnlmJ8/M7kwyxphEpTcFRFREMCpq7GKiUWNBIki59N57
@@ -443,7 +443,7 @@
fi5bTh4LuT/LLvkdv+N3/I7/t5CT+096G/JOO0RROgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEoZJREFUaEPtWGdYlGe65pzd7Cm7m8QW2jB9mBmGMjMMvXfp0ouAdJSOgoqAAoIi
@@ -528,7 +528,7 @@
yr8qv/Icz/Ecz/GsUFH5L7UfQ6Nx1eGBAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqtJREFUaEPtmGdUVVmahpnu1WtCr66kVSpRQFBMKCoKUiIgEiTnnKMkCRIlShAU
@@ -614,7 +614,7 @@
kgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElFJREFUaEPtmHlQm/edxt/YiZPY8ZHYibFjzI1AQgKEJCRxS+ISN0igAyQOIUAC
@@ -698,7 +698,7 @@
fvON2+8lT7ot/JFP8Sk+xaf4fwtJ+i8OkimEnuSnIAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmBJREFUaEPtmHdcVve9x88DDzysh7333lNkyFJkiIgKylLZQxFQBFEZLhBEcaC4
@@ -782,7 +782,7 @@
Ra37+f9NjISImA1xShARSiTBYtaKi1wz0j3yEA/xEA/x/xaK8p/OMtNOM2qJMwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEsFJREFUaEPtmHdUXWW6h3cqKSSUkIQSSCCQBEhCh1BDh0M5lNMoBzjAofdy6L3X
@@ -868,7 +868,7 @@
lui/8TM/8zM/8/8WQfhvXuLqNcbN1YAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEj1JREFUaEPtmGdYlGe6x4c6lBlgGBh676BIESkiMIgKSBEQpHcQBMSKGsUWFXsv
@@ -952,7 +952,7 @@
QvGfS7vdhkjfcBoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo1JREFUaEPtmIl3k3W6xzlz78y9d8brFREEBQFFQbl63ZGtFAqFUqC00EL3JW3T
@@ -1037,7 +1037,7 @@
f1acPyzi3x2f+Bk/42f8jP+3mDbtfwEBe8/2GiYysQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElNJREFUaEPtWGdQm3l+Jrm7mZskV3a99hr3ChgXvK67rmB6EU2IIiSBkBBFQg1V
@@ -1121,7 +1121,7 @@
zszFw1741Wa6/13PJ97gDd7gDV4XXl7/AQzwCMZe3uopAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0JJREFUaEPtWGdUlFe7PTBDL9J7ERiqgFhQUUEp0osiVUABEZAiTWBg6E2a9N47
@@ -1209,7 +1209,7 @@
UOyR/3WE1oxDmZ/5Y8IXfMEX/H8GIf8JtLRQRWypDfYAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEDJJREFUaEPtmQdQVdfWx7fSBaQjUhWkcynSQToIgqKCCNIvXO69cL1UKWJDkN4R
@@ -1284,7 +1284,7 @@
CSai503f0++1D3zgAx/4fwYh/wSAa7VhAtsfBAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAExBJREFUaEPtWAdQ1feW/tGLSBEEC0VBKYqCoqLG3vJ8L4n6TMxLNMkzGlM0sVdU
@@ -1371,7 +1371,7 @@
av47W5m3mxnUf8S0cIgpQY2JT/3rO7zDO7zDO/xfBmP/AJznTO2zk5efAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAGoNJREFUaEPdend4VOW2/preZzLJTDKT3nshJPSEQCAB6cUA0hGkJJAQSghSQpHe
diff --git a/FunkeySelector/HiddenRealm.Designer.cs b/FunkeySelector/HiddenRealm.Designer.cs
new file mode 100644
index 0000000..ff22315
--- /dev/null
+++ b/FunkeySelector/HiddenRealm.Designer.cs
@@ -0,0 +1,560 @@
+namespace FunkeySelector
+{
+ partial class HiddenRealm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiddenRealm));
+ this.BombleLabel = new System.Windows.Forms.Label();
+ this.BombleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BombleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Bomble = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RajLabel = new System.Windows.Forms.Label();
+ this.RajVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RajR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Raj = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.YangLabel = new System.Windows.Forms.Label();
+ this.YangVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.YangR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Yang = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SingeLabel = new System.Windows.Forms.Label();
+ this.SingeVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SingeR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Singe = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.HiddenRealmLabel = new System.Windows.Forms.Label();
+ this.MaulLabel = new System.Windows.Forms.Label();
+ this.MaulVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MaulR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Maul = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NectarLabel = new System.Windows.Forms.Label();
+ this.NectarVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.NectarR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Nectar = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BombleLabel
+ //
+ this.BombleLabel.AutoSize = true;
+ this.BombleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BombleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BombleLabel.Location = new System.Drawing.Point(314, 358);
+ this.BombleLabel.Name = "BombleLabel";
+ this.BombleLabel.Size = new System.Drawing.Size(100, 29);
+ this.BombleLabel.TabIndex = 74;
+ this.BombleLabel.Text = "BOMBLE";
+ //
+ // BombleVR
+ //
+ this.BombleVR.BackColor = System.Drawing.Color.Transparent;
+ this.BombleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BombleVR.BackgroundImage")));
+ this.BombleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BombleVR.FlatAppearance.BorderSize = 0;
+ this.BombleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BombleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BombleVR.Location = new System.Drawing.Point(389, 385);
+ this.BombleVR.Name = "BombleVR";
+ this.BombleVR.Size = new System.Drawing.Size(50, 63);
+ this.BombleVR.TabIndex = 73;
+ this.BombleVR.FunkeyID = "00000110";
+ this.BombleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BombleVR.UseVisualStyleBackColor = false;
+ //
+ // BombleR
+ //
+ this.BombleR.BackColor = System.Drawing.Color.Transparent;
+ this.BombleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BombleR.BackgroundImage")));
+ this.BombleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BombleR.FlatAppearance.BorderSize = 0;
+ this.BombleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BombleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BombleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BombleR.Location = new System.Drawing.Point(338, 385);
+ this.BombleR.Name = "BombleR";
+ this.BombleR.Size = new System.Drawing.Size(50, 63);
+ this.BombleR.TabIndex = 72;
+ this.BombleR.FunkeyID = "0000010C";
+ this.BombleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BombleR.UseVisualStyleBackColor = false;
+ //
+ // Bomble
+ //
+ this.Bomble.BackColor = System.Drawing.Color.Transparent;
+ this.Bomble.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Bomble.BackgroundImage")));
+ this.Bomble.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Bomble.FlatAppearance.BorderSize = 0;
+ this.Bomble.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Bomble.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Bomble.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Bomble.Location = new System.Drawing.Point(287, 385);
+ this.Bomble.Name = "Bomble";
+ this.Bomble.Size = new System.Drawing.Size(50, 63);
+ this.Bomble.TabIndex = 71;
+ this.Bomble.FunkeyID = "00000105";
+ this.Bomble.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Bomble.UseVisualStyleBackColor = false;
+ //
+ // RajLabel
+ //
+ this.RajLabel.AutoSize = true;
+ this.RajLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RajLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RajLabel.Location = new System.Drawing.Point(333, 164);
+ this.RajLabel.Name = "RajLabel";
+ this.RajLabel.Size = new System.Drawing.Size(55, 29);
+ this.RajLabel.TabIndex = 70;
+ this.RajLabel.Text = "RAJ";
+ //
+ // RajVR
+ //
+ this.RajVR.BackColor = System.Drawing.Color.Transparent;
+ this.RajVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RajVR.BackgroundImage")));
+ this.RajVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RajVR.FlatAppearance.BorderSize = 0;
+ this.RajVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RajVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RajVR.Location = new System.Drawing.Point(389, 196);
+ this.RajVR.Name = "RajVR";
+ this.RajVR.Size = new System.Drawing.Size(50, 63);
+ this.RajVR.TabIndex = 69;
+ this.RajVR.FunkeyID = "0000010E";
+ this.RajVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RajVR.UseVisualStyleBackColor = false;
+ //
+ // RajR
+ //
+ this.RajR.BackColor = System.Drawing.Color.Transparent;
+ this.RajR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RajR.BackgroundImage")));
+ this.RajR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RajR.FlatAppearance.BorderSize = 0;
+ this.RajR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RajR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RajR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RajR.Location = new System.Drawing.Point(338, 196);
+ this.RajR.Name = "RajR";
+ this.RajR.Size = new System.Drawing.Size(50, 63);
+ this.RajR.TabIndex = 68;
+ this.RajR.FunkeyID = "00000107";
+ this.RajR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RajR.UseVisualStyleBackColor = false;
+ //
+ // Raj
+ //
+ this.Raj.BackColor = System.Drawing.Color.Transparent;
+ this.Raj.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Raj.BackgroundImage")));
+ this.Raj.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Raj.FlatAppearance.BorderSize = 0;
+ this.Raj.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Raj.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Raj.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Raj.Location = new System.Drawing.Point(287, 196);
+ this.Raj.Name = "Raj";
+ this.Raj.Size = new System.Drawing.Size(50, 63);
+ this.Raj.TabIndex = 67;
+ this.Raj.FunkeyID = "00000103";
+ this.Raj.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Raj.UseVisualStyleBackColor = false;
+ //
+ // YangLabel
+ //
+ this.YangLabel.AutoSize = true;
+ this.YangLabel.BackColor = System.Drawing.Color.Transparent;
+ this.YangLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.YangLabel.Location = new System.Drawing.Point(326, 262);
+ this.YangLabel.Name = "YangLabel";
+ this.YangLabel.Size = new System.Drawing.Size(72, 29);
+ this.YangLabel.TabIndex = 66;
+ this.YangLabel.Text = "YANG";
+ //
+ // YangVR
+ //
+ this.YangVR.BackColor = System.Drawing.Color.Transparent;
+ this.YangVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YangVR.BackgroundImage")));
+ this.YangVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.YangVR.FlatAppearance.BorderSize = 0;
+ this.YangVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.YangVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.YangVR.Location = new System.Drawing.Point(389, 297);
+ this.YangVR.Name = "YangVR";
+ this.YangVR.Size = new System.Drawing.Size(50, 63);
+ this.YangVR.TabIndex = 65;
+ this.YangVR.FunkeyID = "0000010F";
+ this.YangVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.YangVR.UseVisualStyleBackColor = false;
+ //
+ // YangR
+ //
+ this.YangR.BackColor = System.Drawing.Color.Transparent;
+ this.YangR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("YangR.BackgroundImage")));
+ this.YangR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.YangR.FlatAppearance.BorderSize = 0;
+ this.YangR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.YangR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.YangR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.YangR.Location = new System.Drawing.Point(338, 297);
+ this.YangR.Name = "YangR";
+ this.YangR.Size = new System.Drawing.Size(50, 63);
+ this.YangR.TabIndex = 64;
+ this.YangR.FunkeyID = "00000108";
+ this.YangR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.YangR.UseVisualStyleBackColor = false;
+ //
+ // Yang
+ //
+ this.Yang.BackColor = System.Drawing.Color.Transparent;
+ this.Yang.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Yang.BackgroundImage")));
+ this.Yang.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Yang.FlatAppearance.BorderSize = 0;
+ this.Yang.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Yang.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Yang.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Yang.Location = new System.Drawing.Point(287, 297);
+ this.Yang.Name = "Yang";
+ this.Yang.Size = new System.Drawing.Size(50, 63);
+ this.Yang.TabIndex = 63;
+ this.Yang.FunkeyID = "00000104";
+ this.Yang.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Yang.UseVisualStyleBackColor = false;
+ //
+ // SingeLabel
+ //
+ this.SingeLabel.AutoSize = true;
+ this.SingeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SingeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SingeLabel.Location = new System.Drawing.Point(317, 58);
+ this.SingeLabel.Name = "SingeLabel";
+ this.SingeLabel.Size = new System.Drawing.Size(83, 29);
+ this.SingeLabel.TabIndex = 62;
+ this.SingeLabel.Text = "SINGE";
+ //
+ // SingeVR
+ //
+ this.SingeVR.BackColor = System.Drawing.Color.Transparent;
+ this.SingeVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SingeVR.BackgroundImage")));
+ this.SingeVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SingeVR.FlatAppearance.BorderSize = 0;
+ this.SingeVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SingeVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SingeVR.Location = new System.Drawing.Point(389, 98);
+ this.SingeVR.Name = "SingeVR";
+ this.SingeVR.Size = new System.Drawing.Size(50, 63);
+ this.SingeVR.TabIndex = 61;
+ this.SingeVR.FunkeyID = "0000010D";
+ this.SingeVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SingeVR.UseVisualStyleBackColor = false;
+ //
+ // SingeR
+ //
+ this.SingeR.BackColor = System.Drawing.Color.Transparent;
+ this.SingeR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SingeR.BackgroundImage")));
+ this.SingeR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SingeR.FlatAppearance.BorderSize = 0;
+ this.SingeR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SingeR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SingeR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SingeR.Location = new System.Drawing.Point(338, 98);
+ this.SingeR.Name = "SingeR";
+ this.SingeR.Size = new System.Drawing.Size(50, 63);
+ this.SingeR.TabIndex = 60;
+ this.SingeR.FunkeyID = "00000106";
+ this.SingeR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SingeR.UseVisualStyleBackColor = false;
+ //
+ // Singe
+ //
+ this.Singe.BackColor = System.Drawing.Color.Transparent;
+ this.Singe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Singe.BackgroundImage")));
+ this.Singe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Singe.FlatAppearance.BorderSize = 0;
+ this.Singe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Singe.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Singe.ForeColor = System.Drawing.Color.Transparent;
+ this.Singe.Location = new System.Drawing.Point(287, 98);
+ this.Singe.Name = "Singe";
+ this.Singe.Size = new System.Drawing.Size(50, 63);
+ this.Singe.TabIndex = 59;
+ this.Singe.FunkeyID = "00000102";
+ this.Singe.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Singe.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.Location = new System.Drawing.Point(12, 9);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // HiddenRealmLabel
+ //
+ this.HiddenRealmLabel.AutoSize = true;
+ this.HiddenRealmLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HiddenRealmLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HiddenRealmLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HiddenRealmLabel.Location = new System.Drawing.Point(225, 9);
+ this.HiddenRealmLabel.Name = "HiddenRealmLabel";
+ this.HiddenRealmLabel.Size = new System.Drawing.Size(314, 52);
+ this.HiddenRealmLabel.TabIndex = 57;
+ this.HiddenRealmLabel.Text = "HIDDEN REALM";
+ //
+ // MaulLabel
+ //
+ this.MaulLabel.AutoSize = true;
+ this.MaulLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MaulLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MaulLabel.Location = new System.Drawing.Point(224, 453);
+ this.MaulLabel.Name = "MaulLabel";
+ this.MaulLabel.Size = new System.Drawing.Size(74, 29);
+ this.MaulLabel.TabIndex = 78;
+ this.MaulLabel.Text = "MAUL";
+ //
+ // MaulVR
+ //
+ this.MaulVR.BackColor = System.Drawing.Color.Transparent;
+ this.MaulVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MaulVR.BackgroundImage")));
+ this.MaulVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MaulVR.FlatAppearance.BorderSize = 0;
+ this.MaulVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MaulVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.MaulVR.Location = new System.Drawing.Point(285, 481);
+ this.MaulVR.Name = "MaulVR";
+ this.MaulVR.Size = new System.Drawing.Size(50, 63);
+ this.MaulVR.TabIndex = 77;
+ this.MaulVR.FunkeyID = "00000125";
+ this.MaulVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MaulVR.UseVisualStyleBackColor = false;
+ //
+ // MaulR
+ //
+ this.MaulR.BackColor = System.Drawing.Color.Transparent;
+ this.MaulR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("MaulR.BackgroundImage")));
+ this.MaulR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.MaulR.FlatAppearance.BorderSize = 0;
+ this.MaulR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.MaulR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MaulR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.MaulR.Location = new System.Drawing.Point(234, 481);
+ this.MaulR.Name = "MaulR";
+ this.MaulR.Size = new System.Drawing.Size(50, 63);
+ this.MaulR.TabIndex = 76;
+ this.MaulR.FunkeyID = "0000011E";
+ this.MaulR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.MaulR.UseVisualStyleBackColor = false;
+ //
+ // Maul
+ //
+ this.Maul.BackColor = System.Drawing.Color.Transparent;
+ this.Maul.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Maul.BackgroundImage")));
+ this.Maul.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Maul.FlatAppearance.BorderSize = 0;
+ this.Maul.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Maul.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Maul.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Maul.Location = new System.Drawing.Point(183, 481);
+ this.Maul.Name = "Maul";
+ this.Maul.Size = new System.Drawing.Size(50, 63);
+ this.Maul.TabIndex = 75;
+ this.Maul.FunkeyID = "0000011A";
+ this.Maul.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Maul.UseVisualStyleBackColor = false;
+ //
+ // NectarLabel
+ //
+ this.NectarLabel.AutoSize = true;
+ this.NectarLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NectarLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NectarLabel.Location = new System.Drawing.Point(411, 455);
+ this.NectarLabel.Name = "NectarLabel";
+ this.NectarLabel.Size = new System.Drawing.Size(98, 29);
+ this.NectarLabel.TabIndex = 101;
+ this.NectarLabel.Text = "NECTAR";
+ //
+ // NectarVR
+ //
+ this.NectarVR.BackColor = System.Drawing.Color.Transparent;
+ this.NectarVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NectarVR.BackgroundImage")));
+ this.NectarVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NectarVR.FlatAppearance.BorderSize = 0;
+ this.NectarVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NectarVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.NectarVR.Location = new System.Drawing.Point(484, 481);
+ this.NectarVR.Name = "NectarVR";
+ this.NectarVR.Size = new System.Drawing.Size(50, 63);
+ this.NectarVR.TabIndex = 100;
+ this.NectarVR.FunkeyID = "00000124";
+ this.NectarVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NectarVR.UseVisualStyleBackColor = false;
+ //
+ // NectarR
+ //
+ this.NectarR.BackColor = System.Drawing.Color.Transparent;
+ this.NectarR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("NectarR.BackgroundImage")));
+ this.NectarR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.NectarR.FlatAppearance.BorderSize = 0;
+ this.NectarR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NectarR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NectarR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.NectarR.Location = new System.Drawing.Point(433, 481);
+ this.NectarR.Name = "NectarR";
+ this.NectarR.Size = new System.Drawing.Size(50, 63);
+ this.NectarR.TabIndex = 99;
+ this.NectarR.FunkeyID = "0000011D";
+ this.NectarR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.NectarR.UseVisualStyleBackColor = false;
+ //
+ // Nectar
+ //
+ this.Nectar.BackColor = System.Drawing.Color.Transparent;
+ this.Nectar.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Nectar.BackgroundImage")));
+ this.Nectar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Nectar.FlatAppearance.BorderSize = 0;
+ this.Nectar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Nectar.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Nectar.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Nectar.Location = new System.Drawing.Point(382, 481);
+ this.Nectar.Name = "Nectar";
+ this.Nectar.Size = new System.Drawing.Size(50, 63);
+ this.Nectar.TabIndex = 98;
+ this.Nectar.FunkeyID = "00000119";
+ this.Nectar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Nectar.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 102;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 103;
+ //
+ // HiddenRealm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.NectarLabel);
+ this.Controls.Add(this.NectarVR);
+ this.Controls.Add(this.NectarR);
+ this.Controls.Add(this.Nectar);
+ this.Controls.Add(this.MaulLabel);
+ this.Controls.Add(this.MaulVR);
+ this.Controls.Add(this.MaulR);
+ this.Controls.Add(this.Maul);
+ this.Controls.Add(this.BombleLabel);
+ this.Controls.Add(this.BombleVR);
+ this.Controls.Add(this.BombleR);
+ this.Controls.Add(this.Bomble);
+ this.Controls.Add(this.RajLabel);
+ this.Controls.Add(this.RajVR);
+ this.Controls.Add(this.RajR);
+ this.Controls.Add(this.Raj);
+ this.Controls.Add(this.YangLabel);
+ this.Controls.Add(this.YangVR);
+ this.Controls.Add(this.YangR);
+ this.Controls.Add(this.Yang);
+ this.Controls.Add(this.SingeLabel);
+ this.Controls.Add(this.SingeVR);
+ this.Controls.Add(this.SingeR);
+ this.Controls.Add(this.Singe);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.HiddenRealmLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "HiddenRealm";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BombleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BombleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BombleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Bomble;
+ private System.Windows.Forms.Label RajLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton RajVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton RajR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Raj;
+ private System.Windows.Forms.Label YangLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton YangVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton YangR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Yang;
+ private System.Windows.Forms.Label SingeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SingeVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SingeR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Singe;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label HiddenRealmLabel;
+ private System.Windows.Forms.Label MaulLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton MaulVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton MaulR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Maul;
+ private System.Windows.Forms.Label NectarLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton NectarVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton NectarR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Nectar;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/HiddenRealm.cs b/FunkeySelector/HiddenRealm.cs
new file mode 100644
index 0000000..b1b1585
--- /dev/null
+++ b/FunkeySelector/HiddenRealm.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class HiddenRealm : BasicForm
+ {
+ public HiddenRealm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form10.resx b/FunkeySelector/HiddenRealm.resx
similarity index 99%
rename from FunkeySelector/Form10.resx
rename to FunkeySelector/HiddenRealm.resx
index d5ff875..eb35ef8 100644
--- a/FunkeySelector/Form10.resx
+++ b/FunkeySelector/HiddenRealm.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEiNJREFUaEPtWXlw3Hd13xbqYOpE12q1933f931qL61Wq5V2tdJKq9Xqvm/rsuUj
@@ -201,7 +201,7 @@
+ZMH1JlZTratJK3E+/nF/MkP2yuVuvraW+7jPu7jPv7fgsH4d4UaWgcs7EseAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnxJREFUaEPtWXlUk3e65k5Pz9y5nekyVNyoCAIKLoALiCBgVASVsK8hGMJOCEtY
@@ -286,7 +286,7 @@
/n0wMPhv7VAYMBj7I5kAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE7pJREFUaEPtWXdUk2m+ZvfO6s66s3PHsSuICKLoUBSQIh0B6R2SEAgtgSS0QAgk
@@ -376,7 +376,7 @@
ZFrqpx7q9kL9l/TvH8Cv8Aqv8N+gofEftA3ZpD9kT2AAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFHtJREFUaEPtWWdYlFe3HfPdGKN+auwFOzaKCEgTAel9KMMwtGmUAYY+9M5Qhw5S
@@ -469,7 +469,7 @@
ML5WUmIMn63NGKemxhgzdChj2OTJjAHyz95P+Rt/498cDMZ/AshnUEFyANJ7AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFD5JREFUaEPtWXds3Od5/m7vzeORxzvuJQ5xipsUtyhuiiIp7r03Ke4t7iXurUFR
@@ -561,7 +561,7 @@
7r9SgFrm4Q/+OUzLspg1O8cMJEJV7CoTf/ja5/gcf+1g7L8Ap+y47WL7gsEAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFKZJREFUaEPtV3lQ1Fe6vexrgzSryCY0u2yyqyDKIoLIvgk0TbM3skOzNs3S0DTd
@@ -655,7 +655,7 @@
IzEW2hNdofDfUE5/wS/4d4CQvwNLp2Dsgpas/QAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEk9JREFUaEPtWXdYVNe3HZU+zAxMYXqfoQuoYBdEBBuiiAgoKDaMDUVUihoFCxrU
@@ -739,7 +739,7 @@
npa+IaAD8F//4vQRH/ER/xB4vP8A1714KpjFPuwAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAExVJREFUaEPtWXl01Od1/aTR7Pu+7yPNqhntu0AggSRASEL7gswOAoQACxAYIbCE
@@ -826,7 +826,7 @@
5fwTVaiXqcydTJNwhBl9U8zieZkJZ0nM/u7+e7/Hf47P8VcLxv4HAzgNZEhItNkAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE2dJREFUaEPtWWdwXOd1fRI7ie29vu379u3b3ht2ASyARS8ESDQCJApJsRdJpCh2
@@ -915,7 +915,7 @@
Xw5w+yOckoYNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAFDZJREFUaEPtWXlU02mWzfT09FJdy+lqSx13LdxwFxVFZBcQUAHZQoAAgRC2BJJA
@@ -1007,7 +1007,7 @@
ZkxnbGdMY3gzPmeEMP75DfwrfsWv+P8MBuM/AEFNwv9grYy8AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEw5JREFUaEPtWXlsHPd1HvHYXc7Ozs7OzN73kru8RIqkeN+XKJ46eN/ioYMiRVLi
@@ -1094,7 +1094,7 @@
/wujOleQi+8wjOnH//N/eJ78z9/AX9gX9oX9fzaG+W+Uap4pgcAgYgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE3RJREFUaEPtWWlwW9d5RZMmUayNC0AQALHv+8O+vIflPewACZAgwX0nJZIiKYqr
@@ -1183,7 +1183,7 @@
Hz6BP8En+AT/n8Hj/RfVupCD7kD4PQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAESNJREFUaEPtWAdUlGe6njSNUWOPRmO71piNaXeTuMmaTVw30U3cNFMUewGkjwhD
@@ -1262,7 +1262,7 @@
crRoT3q4YKPi60/kiTyRf4nweH8Hf7AdJvVp9RcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEotJREFUaEPtl3dw1PeZxokdO2djsI1NMd02YDAgIVEsBAIhgVDvq957byutVm2l
@@ -1347,7 +1347,7 @@
tU677664tcv07sd4jMf4m2PFiv8C3AtHUUZ4up0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEXlJREFUaEPtWHdsm3d6Zs6Jk3hvW7Jjy7b2lqhNSSQliuIQh0hxk+KSKJGUqL2X
@@ -1428,7 +1428,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEQxJREFUaEPtWHlYzum7f5X20jLGmLGMbTBFE1lmNMWMMNmyFNlGi6VIJamotKM9
@@ -1507,7 +1507,7 @@
k95t9bB4AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEaFJREFUaEPtWHd0lGXWf6aX953eMy2ZyaQnBFIINSqhJBQNnQghkgRCqCsEiCK9
@@ -1588,7 +1588,7 @@
pakRt4uRPPfbRLl4T6Qknr4qV+Wq/MdFiH8BiZWE5LnA7/4AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEzVJREFUaEPtWXdU1Oe2/ab3gWGGMnSkCUhRxG64UVC5WFCDBUEsoKL0XqSIgogS
diff --git a/FunkeySelector/KelpyBasin.Designer.cs b/FunkeySelector/KelpyBasin.Designer.cs
new file mode 100644
index 0000000..e2f0e2e
--- /dev/null
+++ b/FunkeySelector/KelpyBasin.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class KelpyBasin
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KelpyBasin));
+ this.TwinxLabel = new System.Windows.Forms.Label();
+ this.TwinxVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TwinxR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Twinx = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SproutLabel = new System.Windows.Forms.Label();
+ this.SproutVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SproutR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sprout = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TikiLabel = new System.Windows.Forms.Label();
+ this.TikiVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TikiR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tiki = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GlubLabel = new System.Windows.Forms.Label();
+ this.GlubVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GlubR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Glub = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.KelpyBasinLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // TwinxLabel
+ //
+ this.TwinxLabel.AutoSize = true;
+ this.TwinxLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TwinxLabel.Location = new System.Drawing.Point(319, 427);
+ this.TwinxLabel.Name = "TwinxLabel";
+ this.TwinxLabel.Size = new System.Drawing.Size(91, 29);
+ this.TwinxLabel.TabIndex = 38;
+ this.TwinxLabel.Text = "TWINX";
+ //
+ // TwinxVR
+ //
+ this.TwinxVR.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TwinxVR.BackgroundImage")));
+ this.TwinxVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TwinxVR.FlatAppearance.BorderSize = 0;
+ this.TwinxVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TwinxVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TwinxVR.FunkeyID = "0000001F";
+ this.TwinxVR.Location = new System.Drawing.Point(395, 465);
+ this.TwinxVR.Name = "TwinxVR";
+ this.TwinxVR.Size = new System.Drawing.Size(50, 63);
+ this.TwinxVR.TabIndex = 37;
+ this.TwinxVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TwinxVR.UseVisualStyleBackColor = false;
+ //
+ // TwinxR
+ //
+ this.TwinxR.BackColor = System.Drawing.Color.Transparent;
+ this.TwinxR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TwinxR.BackgroundImage")));
+ this.TwinxR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TwinxR.FlatAppearance.BorderSize = 0;
+ this.TwinxR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TwinxR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TwinxR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TwinxR.FunkeyID = "0000001E";
+ this.TwinxR.Location = new System.Drawing.Point(344, 465);
+ this.TwinxR.Name = "TwinxR";
+ this.TwinxR.Size = new System.Drawing.Size(50, 63);
+ this.TwinxR.TabIndex = 36;
+ this.TwinxR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TwinxR.UseVisualStyleBackColor = false;
+ //
+ // Twinx
+ //
+ this.Twinx.BackColor = System.Drawing.Color.Transparent;
+ this.Twinx.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Twinx.BackgroundImage")));
+ this.Twinx.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Twinx.FlatAppearance.BorderSize = 0;
+ this.Twinx.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Twinx.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Twinx.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Twinx.FunkeyID = "0000001D";
+ this.Twinx.Location = new System.Drawing.Point(293, 465);
+ this.Twinx.Name = "Twinx";
+ this.Twinx.Size = new System.Drawing.Size(50, 63);
+ this.Twinx.TabIndex = 35;
+ this.Twinx.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Twinx.UseVisualStyleBackColor = false;
+ //
+ // SproutLabel
+ //
+ this.SproutLabel.AutoSize = true;
+ this.SproutLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SproutLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SproutLabel.Location = new System.Drawing.Point(326, 216);
+ this.SproutLabel.Name = "SproutLabel";
+ this.SproutLabel.Size = new System.Drawing.Size(98, 29);
+ this.SproutLabel.TabIndex = 34;
+ this.SproutLabel.Text = "SPROUT";
+ //
+ // SproutVR
+ //
+ this.SproutVR.BackColor = System.Drawing.Color.Transparent;
+ this.SproutVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SproutVR.BackgroundImage")));
+ this.SproutVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SproutVR.FlatAppearance.BorderSize = 0;
+ this.SproutVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SproutVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SproutVR.FunkeyID = "0000001C";
+ this.SproutVR.Location = new System.Drawing.Point(395, 254);
+ this.SproutVR.Name = "SproutVR";
+ this.SproutVR.Size = new System.Drawing.Size(50, 63);
+ this.SproutVR.TabIndex = 33;
+ this.SproutVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SproutVR.UseVisualStyleBackColor = false;
+ //
+ // SproutR
+ //
+ this.SproutR.BackColor = System.Drawing.Color.Transparent;
+ this.SproutR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SproutR.BackgroundImage")));
+ this.SproutR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SproutR.FlatAppearance.BorderSize = 0;
+ this.SproutR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SproutR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SproutR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SproutR.FunkeyID = "0000001B";
+ this.SproutR.Location = new System.Drawing.Point(344, 254);
+ this.SproutR.Name = "SproutR";
+ this.SproutR.Size = new System.Drawing.Size(50, 63);
+ this.SproutR.TabIndex = 32;
+ this.SproutR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SproutR.UseVisualStyleBackColor = false;
+ //
+ // Sprout
+ //
+ this.Sprout.BackColor = System.Drawing.Color.Transparent;
+ this.Sprout.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sprout.BackgroundImage")));
+ this.Sprout.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sprout.FlatAppearance.BorderSize = 0;
+ this.Sprout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sprout.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sprout.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sprout.FunkeyID = "0000001A";
+ this.Sprout.Location = new System.Drawing.Point(293, 254);
+ this.Sprout.Name = "Sprout";
+ this.Sprout.Size = new System.Drawing.Size(50, 63);
+ this.Sprout.TabIndex = 31;
+ this.Sprout.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sprout.UseVisualStyleBackColor = false;
+ //
+ // TikiLabel
+ //
+ this.TikiLabel.AutoSize = true;
+ this.TikiLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TikiLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TikiLabel.Location = new System.Drawing.Point(332, 319);
+ this.TikiLabel.Name = "TikiLabel";
+ this.TikiLabel.Size = new System.Drawing.Size(62, 29);
+ this.TikiLabel.TabIndex = 30;
+ this.TikiLabel.Text = "TIKI";
+ //
+ // TikiVR
+ //
+ this.TikiVR.BackColor = System.Drawing.Color.Transparent;
+ this.TikiVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TikiVR.BackgroundImage")));
+ this.TikiVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TikiVR.FlatAppearance.BorderSize = 0;
+ this.TikiVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TikiVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TikiVR.FunkeyID = "00000025";
+ this.TikiVR.Location = new System.Drawing.Point(395, 357);
+ this.TikiVR.Name = "TikiVR";
+ this.TikiVR.Size = new System.Drawing.Size(50, 63);
+ this.TikiVR.TabIndex = 29;
+ this.TikiVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TikiVR.UseVisualStyleBackColor = false;
+ //
+ // TikiR
+ //
+ this.TikiR.BackColor = System.Drawing.Color.Transparent;
+ this.TikiR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TikiR.BackgroundImage")));
+ this.TikiR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TikiR.FlatAppearance.BorderSize = 0;
+ this.TikiR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TikiR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TikiR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TikiR.FunkeyID = "00000024";
+ this.TikiR.Location = new System.Drawing.Point(344, 357);
+ this.TikiR.Name = "TikiR";
+ this.TikiR.Size = new System.Drawing.Size(50, 63);
+ this.TikiR.TabIndex = 28;
+ this.TikiR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TikiR.UseVisualStyleBackColor = false;
+ //
+ // Tiki
+ //
+ this.Tiki.BackColor = System.Drawing.Color.Transparent;
+ this.Tiki.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tiki.BackgroundImage")));
+ this.Tiki.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tiki.FlatAppearance.BorderSize = 0;
+ this.Tiki.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tiki.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tiki.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tiki.FunkeyID = "00000023";
+ this.Tiki.Location = new System.Drawing.Point(293, 357);
+ this.Tiki.Name = "Tiki";
+ this.Tiki.Size = new System.Drawing.Size(50, 63);
+ this.Tiki.TabIndex = 27;
+ this.Tiki.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tiki.UseVisualStyleBackColor = false;
+ //
+ // GlubLabel
+ //
+ this.GlubLabel.AutoSize = true;
+ this.GlubLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GlubLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GlubLabel.Location = new System.Drawing.Point(334, 97);
+ this.GlubLabel.Name = "GlubLabel";
+ this.GlubLabel.Size = new System.Drawing.Size(67, 29);
+ this.GlubLabel.TabIndex = 26;
+ this.GlubLabel.Text = "GLUB";
+ //
+ // GlubVR
+ //
+ this.GlubVR.BackColor = System.Drawing.Color.Transparent;
+ this.GlubVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("GlubVR.BackgroundImage")));
+ this.GlubVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.GlubVR.FlatAppearance.BorderSize = 0;
+ this.GlubVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.GlubVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.GlubVR.FunkeyID = "00000019";
+ this.GlubVR.Location = new System.Drawing.Point(395, 136);
+ this.GlubVR.Name = "GlubVR";
+ this.GlubVR.Size = new System.Drawing.Size(50, 63);
+ this.GlubVR.TabIndex = 25;
+ this.GlubVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.GlubVR.UseVisualStyleBackColor = false;
+ //
+ // GlubR
+ //
+ this.GlubR.BackColor = System.Drawing.Color.Transparent;
+ this.GlubR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("GlubR.BackgroundImage")));
+ this.GlubR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.GlubR.FlatAppearance.BorderSize = 0;
+ this.GlubR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.GlubR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GlubR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.GlubR.FunkeyID = "00000018";
+ this.GlubR.Location = new System.Drawing.Point(344, 136);
+ this.GlubR.Name = "GlubR";
+ this.GlubR.Size = new System.Drawing.Size(50, 63);
+ this.GlubR.TabIndex = 24;
+ this.GlubR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.GlubR.UseVisualStyleBackColor = false;
+ //
+ // Glub
+ //
+ this.Glub.BackColor = System.Drawing.Color.Transparent;
+ this.Glub.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Glub.BackgroundImage")));
+ this.Glub.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Glub.FlatAppearance.BorderSize = 0;
+ this.Glub.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Glub.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Glub.ForeColor = System.Drawing.Color.Transparent;
+ this.Glub.FunkeyID = "00000014";
+ this.Glub.Location = new System.Drawing.Point(293, 136);
+ this.Glub.Name = "Glub";
+ this.Glub.Size = new System.Drawing.Size(50, 63);
+ this.Glub.TabIndex = 23;
+ this.Glub.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Glub.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 22;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // KelpyBasinLabel
+ //
+ this.KelpyBasinLabel.AutoSize = true;
+ this.KelpyBasinLabel.BackColor = System.Drawing.Color.Transparent;
+ this.KelpyBasinLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.KelpyBasinLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.KelpyBasinLabel.Location = new System.Drawing.Point(232, 16);
+ this.KelpyBasinLabel.Name = "KelpyBasinLabel";
+ this.KelpyBasinLabel.Size = new System.Drawing.Size(268, 52);
+ this.KelpyBasinLabel.TabIndex = 21;
+ this.KelpyBasinLabel.Text = "KELPY BASIN";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 84;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 85;
+ //
+ // KelpyBasin
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.TwinxLabel);
+ this.Controls.Add(this.TwinxVR);
+ this.Controls.Add(this.TwinxR);
+ this.Controls.Add(this.Twinx);
+ this.Controls.Add(this.SproutLabel);
+ this.Controls.Add(this.SproutVR);
+ this.Controls.Add(this.SproutR);
+ this.Controls.Add(this.Sprout);
+ this.Controls.Add(this.TikiLabel);
+ this.Controls.Add(this.TikiVR);
+ this.Controls.Add(this.TikiR);
+ this.Controls.Add(this.Tiki);
+ this.Controls.Add(this.GlubLabel);
+ this.Controls.Add(this.GlubVR);
+ this.Controls.Add(this.GlubR);
+ this.Controls.Add(this.Glub);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.KelpyBasinLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "KelpyBasin";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label TwinxLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TwinxVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TwinxR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Twinx;
+ private System.Windows.Forms.Label SproutLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SproutVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SproutR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sprout;
+ private System.Windows.Forms.Label TikiLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TikiVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TikiR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tiki;
+ private System.Windows.Forms.Label GlubLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton GlubVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton GlubR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Glub;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label KelpyBasinLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/KelpyBasin.cs b/FunkeySelector/KelpyBasin.cs
new file mode 100644
index 0000000..776ee31
--- /dev/null
+++ b/FunkeySelector/KelpyBasin.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class KelpyBasin : BasicForm
+ {
+ public KelpyBasin()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form3.resx b/FunkeySelector/KelpyBasin.resx
similarity index 99%
rename from FunkeySelector/Form3.resx
rename to FunkeySelector/KelpyBasin.resx
index cf380ee..549e2fe 100644
--- a/FunkeySelector/Form3.resx
+++ b/FunkeySelector/KelpyBasin.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEadJREFUaEPtWHdUlPeaZjd7d8/d3BQTa/Qau7H3roAoGjQW7KL0gYGhDH3oQ+8M
@@ -199,7 +199,7 @@
woPzU8KsV0T77l/mZ6Y0xXKtwt/lr3zER3zEvwwKCv8DrbfzevAYjfMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqFJREFUaEPtmHdQ3dl1x5Xtq5VAFMGjV4FoEqIIiSqa6L2LXh+id3g8yqP3jkB0
@@ -285,7 +285,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAErlJREFUaEPtmHdUleeaxc/c3Dt3Zt2VMTasNEFBQHqXDiIoSFFQ6b13ESnSm3RE
@@ -371,7 +371,7 @@
xz8MEsl/AesSeo+fEVMNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEn9JREFUaEPtmHdUlGe+x2fv3b3Z3ZuNq9h7TVQsKCqoaBQ1atRYiQVBkd6rAoMw
@@ -456,7 +456,7 @@
v+E3/MsgkfwXlR5Cgbt5fI4AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEuJJREFUaEPtl3dUVWe6xk+SyZ0UTWIZLNEYjSUqYkUsKPZCEVFBkN5BevdQBJTi
@@ -543,7 +543,7 @@
SUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqVJREFUaEPtmHdUlle6xY8KohQpAtLho0gH6Yg0KRppSlOkSQcREBGlioAIggKi
@@ -629,7 +629,7 @@
RU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEmFJREFUaEPtWXdUVPfW5XvRRJTeBqRKEcXyNEaNmqIxiS0xQUBEsCFVkI6MtIGh
@@ -713,7 +713,7 @@
z26YiSns3fX99P08p3k5PKO5qVaz1EzUxMRFl3zER3zE3wYxsX8BuBEG3qXjWUMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEstJREFUaEPtmHdUVNfaxo83MQrShoFhhjbA0BGlqNijMcZEE0vsFRFFASsqIKAU
@@ -799,7 +799,7 @@
IHllrJW8KwokS3FfR/vI3/gbf+O/Bkn6HxulSbAemGhQAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEoxJREFUaEPtmHdUVle6xhlvMjFR6SC9SBfBhgiigiBKkSKKIkjno320j957E5Ai
@@ -884,7 +884,7 @@
8Q3dYT0Uxp6V3/ILfsEv+KdBQeE/AaW/sOEXSmObAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEMtJREFUaEPtWHl0VfW1vmpBJJKBOyS58zyde4Y7T7lDQkIgE4RAmAICYRTBQNQA
@@ -962,7 +962,7 @@
kgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEh9JREFUaEPtWGlUlGeaZSYnZ2b6zEzntJ10ook5dpI2Md1Ro0ajxn1pBVFU4oYI
@@ -1045,7 +1045,7 @@
Gl8XhB9dlx2wc91t8e9WwFvtX1Vb3uEd3uEd3hZqav8FQsJ15CLDbpoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEllJREFUaEPtmHdUVWe6xje9F2mCiiUW7GEmmWsmlkRNmcSS2IIFBRsqKiIWQJoB
diff --git a/FunkeySelector/LaputtaStation.Designer.cs b/FunkeySelector/LaputtaStation.Designer.cs
new file mode 100644
index 0000000..30dc5d0
--- /dev/null
+++ b/FunkeySelector/LaputtaStation.Designer.cs
@@ -0,0 +1,446 @@
+namespace FunkeySelector
+{
+ partial class LaputtaStation
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LaputtaStation));
+ this.VroomLabel = new System.Windows.Forms.Label();
+ this.VroomVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VroomR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Vroom = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FalloutLabel = new System.Windows.Forms.Label();
+ this.FalloutVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.FalloutR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Fallout = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BoggleLabel = new System.Windows.Forms.Label();
+ this.BoggleVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BoggleR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Boggle = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.XenerLabel = new System.Windows.Forms.Label();
+ this.XenerVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.XenerR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Xener = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.LaputtaStationLabel = new System.Windows.Forms.Label();
+ this.RomLabel = new System.Windows.Forms.Label();
+ this.Rom = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // VroomLabel
+ //
+ this.VroomLabel.AutoSize = true;
+ this.VroomLabel.BackColor = System.Drawing.Color.Transparent;
+ this.VroomLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.VroomLabel.Location = new System.Drawing.Point(341, 420);
+ this.VroomLabel.Name = "VroomLabel";
+ this.VroomLabel.Size = new System.Drawing.Size(93, 29);
+ this.VroomLabel.TabIndex = 74;
+ this.VroomLabel.Text = "VROOM";
+ //
+ // VroomVR
+ //
+ this.VroomVR.BackColor = System.Drawing.Color.Transparent;
+ this.VroomVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VroomVR.BackgroundImage")));
+ this.VroomVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VroomVR.FlatAppearance.BorderSize = 0;
+ this.VroomVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VroomVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.VroomVR.FunkeyID = "00000046";
+ this.VroomVR.Location = new System.Drawing.Point(410, 460);
+ this.VroomVR.Name = "VroomVR";
+ this.VroomVR.Size = new System.Drawing.Size(50, 63);
+ this.VroomVR.TabIndex = 73;
+ this.VroomVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VroomVR.UseVisualStyleBackColor = false;
+ //
+ // VroomR
+ //
+ this.VroomR.BackColor = System.Drawing.Color.Transparent;
+ this.VroomR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VroomR.BackgroundImage")));
+ this.VroomR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VroomR.FlatAppearance.BorderSize = 0;
+ this.VroomR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VroomR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VroomR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.VroomR.FunkeyID = "00000045";
+ this.VroomR.Location = new System.Drawing.Point(359, 460);
+ this.VroomR.Name = "VroomR";
+ this.VroomR.Size = new System.Drawing.Size(50, 63);
+ this.VroomR.TabIndex = 72;
+ this.VroomR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VroomR.UseVisualStyleBackColor = false;
+ //
+ // Vroom
+ //
+ this.Vroom.BackColor = System.Drawing.Color.Transparent;
+ this.Vroom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Vroom.BackgroundImage")));
+ this.Vroom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Vroom.FlatAppearance.BorderSize = 0;
+ this.Vroom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Vroom.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Vroom.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Vroom.FunkeyID = "00000044";
+ this.Vroom.Location = new System.Drawing.Point(308, 460);
+ this.Vroom.Name = "Vroom";
+ this.Vroom.Size = new System.Drawing.Size(50, 63);
+ this.Vroom.TabIndex = 71;
+ this.Vroom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Vroom.UseVisualStyleBackColor = false;
+ //
+ // FalloutLabel
+ //
+ this.FalloutLabel.AutoSize = true;
+ this.FalloutLabel.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.FalloutLabel.Location = new System.Drawing.Point(333, 206);
+ this.FalloutLabel.Name = "FalloutLabel";
+ this.FalloutLabel.Size = new System.Drawing.Size(111, 29);
+ this.FalloutLabel.TabIndex = 70;
+ this.FalloutLabel.Text = "FALLOUT";
+ //
+ // FalloutVR
+ //
+ this.FalloutVR.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FalloutVR.BackgroundImage")));
+ this.FalloutVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FalloutVR.FlatAppearance.BorderSize = 0;
+ this.FalloutVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FalloutVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.FalloutVR.FunkeyID = "0000003D";
+ this.FalloutVR.Location = new System.Drawing.Point(410, 249);
+ this.FalloutVR.Name = "FalloutVR";
+ this.FalloutVR.Size = new System.Drawing.Size(50, 63);
+ this.FalloutVR.TabIndex = 69;
+ this.FalloutVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FalloutVR.UseVisualStyleBackColor = false;
+ //
+ // FalloutR
+ //
+ this.FalloutR.BackColor = System.Drawing.Color.Transparent;
+ this.FalloutR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FalloutR.BackgroundImage")));
+ this.FalloutR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.FalloutR.FlatAppearance.BorderSize = 0;
+ this.FalloutR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.FalloutR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.FalloutR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.FalloutR.FunkeyID = "0000003C";
+ this.FalloutR.Location = new System.Drawing.Point(359, 249);
+ this.FalloutR.Name = "FalloutR";
+ this.FalloutR.Size = new System.Drawing.Size(50, 63);
+ this.FalloutR.TabIndex = 68;
+ this.FalloutR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.FalloutR.UseVisualStyleBackColor = false;
+ //
+ // Fallout
+ //
+ this.Fallout.BackColor = System.Drawing.Color.Transparent;
+ this.Fallout.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Fallout.BackgroundImage")));
+ this.Fallout.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Fallout.FlatAppearance.BorderSize = 0;
+ this.Fallout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Fallout.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Fallout.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Fallout.FunkeyID = "0000003B";
+ this.Fallout.Location = new System.Drawing.Point(308, 249);
+ this.Fallout.Name = "Fallout";
+ this.Fallout.Size = new System.Drawing.Size(50, 63);
+ this.Fallout.TabIndex = 67;
+ this.Fallout.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Fallout.UseVisualStyleBackColor = false;
+ //
+ // BoggleLabel
+ //
+ this.BoggleLabel.AutoSize = true;
+ this.BoggleLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BoggleLabel.Location = new System.Drawing.Point(339, 317);
+ this.BoggleLabel.Name = "BoggleLabel";
+ this.BoggleLabel.Size = new System.Drawing.Size(96, 29);
+ this.BoggleLabel.TabIndex = 66;
+ this.BoggleLabel.Text = "BOGGLE";
+ //
+ // BoggleVR
+ //
+ this.BoggleVR.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BoggleVR.BackgroundImage")));
+ this.BoggleVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BoggleVR.FlatAppearance.BorderSize = 0;
+ this.BoggleVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BoggleVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BoggleVR.FunkeyID = "00000040";
+ this.BoggleVR.Location = new System.Drawing.Point(410, 352);
+ this.BoggleVR.Name = "BoggleVR";
+ this.BoggleVR.Size = new System.Drawing.Size(50, 63);
+ this.BoggleVR.TabIndex = 65;
+ this.BoggleVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BoggleVR.UseVisualStyleBackColor = false;
+ //
+ // BoggleR
+ //
+ this.BoggleR.BackColor = System.Drawing.Color.Transparent;
+ this.BoggleR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BoggleR.BackgroundImage")));
+ this.BoggleR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BoggleR.FlatAppearance.BorderSize = 0;
+ this.BoggleR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BoggleR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BoggleR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BoggleR.FunkeyID = "0000003F";
+ this.BoggleR.Location = new System.Drawing.Point(359, 352);
+ this.BoggleR.Name = "BoggleR";
+ this.BoggleR.Size = new System.Drawing.Size(50, 63);
+ this.BoggleR.TabIndex = 64;
+ this.BoggleR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BoggleR.UseVisualStyleBackColor = false;
+ //
+ // Boggle
+ //
+ this.Boggle.BackColor = System.Drawing.Color.Transparent;
+ this.Boggle.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Boggle.BackgroundImage")));
+ this.Boggle.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Boggle.FlatAppearance.BorderSize = 0;
+ this.Boggle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Boggle.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Boggle.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Boggle.FunkeyID = "0000003E";
+ this.Boggle.Location = new System.Drawing.Point(308, 352);
+ this.Boggle.Name = "Boggle";
+ this.Boggle.Size = new System.Drawing.Size(50, 63);
+ this.Boggle.TabIndex = 63;
+ this.Boggle.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Boggle.UseVisualStyleBackColor = false;
+ //
+ // XenerLabel
+ //
+ this.XenerLabel.AutoSize = true;
+ this.XenerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.XenerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.XenerLabel.Location = new System.Drawing.Point(338, 91);
+ this.XenerLabel.Name = "XenerLabel";
+ this.XenerLabel.Size = new System.Drawing.Size(84, 29);
+ this.XenerLabel.TabIndex = 62;
+ this.XenerLabel.Text = "XENER";
+ //
+ // XenerVR
+ //
+ this.XenerVR.BackColor = System.Drawing.Color.Transparent;
+ this.XenerVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("XenerVR.BackgroundImage")));
+ this.XenerVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.XenerVR.FlatAppearance.BorderSize = 0;
+ this.XenerVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.XenerVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.XenerVR.FunkeyID = "0000003A";
+ this.XenerVR.Location = new System.Drawing.Point(410, 131);
+ this.XenerVR.Name = "XenerVR";
+ this.XenerVR.Size = new System.Drawing.Size(50, 63);
+ this.XenerVR.TabIndex = 61;
+ this.XenerVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.XenerVR.UseVisualStyleBackColor = false;
+ //
+ // XenerR
+ //
+ this.XenerR.BackColor = System.Drawing.Color.Transparent;
+ this.XenerR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("XenerR.BackgroundImage")));
+ this.XenerR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.XenerR.FlatAppearance.BorderSize = 0;
+ this.XenerR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.XenerR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.XenerR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.XenerR.FunkeyID = "00000039";
+ this.XenerR.Location = new System.Drawing.Point(359, 131);
+ this.XenerR.Name = "XenerR";
+ this.XenerR.Size = new System.Drawing.Size(50, 63);
+ this.XenerR.TabIndex = 60;
+ this.XenerR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.XenerR.UseVisualStyleBackColor = false;
+ //
+ // Xener
+ //
+ this.Xener.BackColor = System.Drawing.Color.Transparent;
+ this.Xener.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Xener.BackgroundImage")));
+ this.Xener.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Xener.FlatAppearance.BorderSize = 0;
+ this.Xener.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Xener.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Xener.ForeColor = System.Drawing.Color.Transparent;
+ this.Xener.FunkeyID = "00000035";
+ this.Xener.Location = new System.Drawing.Point(308, 131);
+ this.Xener.Name = "Xener";
+ this.Xener.Size = new System.Drawing.Size(50, 63);
+ this.Xener.TabIndex = 59;
+ this.Xener.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Xener.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // LaputtaStationLabel
+ //
+ this.LaputtaStationLabel.AutoSize = true;
+ this.LaputtaStationLabel.BackColor = System.Drawing.Color.Transparent;
+ this.LaputtaStationLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.LaputtaStationLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.LaputtaStationLabel.Location = new System.Drawing.Point(185, 12);
+ this.LaputtaStationLabel.Name = "LaputtaStationLabel";
+ this.LaputtaStationLabel.Size = new System.Drawing.Size(386, 52);
+ this.LaputtaStationLabel.TabIndex = 57;
+ this.LaputtaStationLabel.Text = "LAPUTTA STATION";
+ //
+ // RomLabel
+ //
+ this.RomLabel.AutoSize = true;
+ this.RomLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RomLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RomLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RomLabel.Location = new System.Drawing.Point(119, 270);
+ this.RomLabel.Name = "RomLabel";
+ this.RomLabel.Size = new System.Drawing.Size(62, 29);
+ this.RomLabel.TabIndex = 75;
+ this.RomLabel.Text = "ROM";
+ //
+ // Rom
+ //
+ this.Rom.BackColor = System.Drawing.Color.Transparent;
+ this.Rom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rom.BackgroundImage")));
+ this.Rom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rom.FlatAppearance.BorderSize = 0;
+ this.Rom.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rom.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rom.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Rom.FunkeyID = "000000CE";
+ this.Rom.Location = new System.Drawing.Point(126, 303);
+ this.Rom.Name = "Rom";
+ this.Rom.Size = new System.Drawing.Size(50, 63);
+ this.Rom.TabIndex = 76;
+ this.Rom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rom.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 16);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 87;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 18);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 88;
+ //
+ // LaputtaStation
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.Rom);
+ this.Controls.Add(this.RomLabel);
+ this.Controls.Add(this.VroomLabel);
+ this.Controls.Add(this.VroomVR);
+ this.Controls.Add(this.VroomR);
+ this.Controls.Add(this.Vroom);
+ this.Controls.Add(this.FalloutLabel);
+ this.Controls.Add(this.FalloutVR);
+ this.Controls.Add(this.FalloutR);
+ this.Controls.Add(this.Fallout);
+ this.Controls.Add(this.BoggleLabel);
+ this.Controls.Add(this.BoggleVR);
+ this.Controls.Add(this.BoggleR);
+ this.Controls.Add(this.Boggle);
+ this.Controls.Add(this.XenerLabel);
+ this.Controls.Add(this.XenerVR);
+ this.Controls.Add(this.XenerR);
+ this.Controls.Add(this.Xener);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.LaputtaStationLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "LaputtaStation";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label VroomLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton VroomVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton VroomR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Vroom;
+ private System.Windows.Forms.Label FalloutLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton FalloutVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton FalloutR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Fallout;
+ private System.Windows.Forms.Label BoggleLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BoggleVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BoggleR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Boggle;
+ private System.Windows.Forms.Label XenerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton XenerVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton XenerR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Xener;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label LaputtaStationLabel;
+ private System.Windows.Forms.Label RomLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rom;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/LaputtaStation.cs b/FunkeySelector/LaputtaStation.cs
new file mode 100644
index 0000000..60cd80e
--- /dev/null
+++ b/FunkeySelector/LaputtaStation.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class LaputtaStation : BasicForm
+ {
+ public LaputtaStation()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form5.resx b/FunkeySelector/LaputtaStation.resx
similarity index 99%
rename from FunkeySelector/Form5.resx
rename to FunkeySelector/LaputtaStation.resx
index ca8667b..f246986 100644
--- a/FunkeySelector/Form5.resx
+++ b/FunkeySelector/LaputtaStation.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAADo5JREFUaEPtmWlsXOd1hmnJkiVbO0Ut3IYzw9n3O/s+Q3K4DTeRHNIUaVIjSiS1
@@ -186,7 +186,7 @@
ZCP+3rBO+5EH8SAexIO436ip+S+0djqfxaSGUgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEXtJREFUaEPtWGlso3l9fnPYjo/4SJxzZnLfTuIcTpzLdpzEieMkdhLHV+w4vuMc
@@ -267,7 +267,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEe1JREFUaEPtWXlQm/eZJo2dxNkkNqfBHEKcEggQCBCnOAVCSEhCQhcgJNANiEOA
@@ -350,7 +350,7 @@
QmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAERpJREFUaEPtWGdUlFe3ZuV+dyXr+0wsqIgCFor0KiqoqCBYQDqIdOm9DGUY2tA7
@@ -429,7 +429,7 @@
9/be3tt7e1eTkvof/ydY4VDtSW0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEo9JREFUaEPtmGd0XPWZxmdJSMBYsnrvGs2oF8uSrD7qGquX0UijrhmNZtSL1asl
@@ -514,7 +514,7 @@
nf5AEqZ6TuIsjt9huuIWbuEWbuFmIZH8BWvCgVP9K+v1AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEjtJREFUaEPtl2dwXNd5hi9BAkQH0XvvvVeid4DoIHpdYNHbovcOEAQILAhWsEFi
@@ -598,7 +598,7 @@
AtN5N5wzBaWaAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEP9JREFUaEPtmGlQlGe2x607lapbt8q4I8hOQzd0Nw29d0N30+z7voqsSrMI2Aoo
@@ -677,7 +677,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpRJREFUaEPtmHdw1OedxnUpMze5S8YzcSZOsc/YYIEQoAJCveyqt1XvWvW+6m0l
@@ -762,7 +762,7 @@
bydpGbyb/309yrV+IZ7/q+ZPnuIpnuIpnhRaWv8J2+s0MLl/+h8AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEqdJREFUaEPtmHdQlVmaxqnZnardnQ2zMz1Tk3pmOjhtt46NsbtNbUBFBCTnnLnk
@@ -848,7 +848,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAADopJREFUaEPtmflvlHd+x0noBsJlG9/32HN6xh6Pj/H4PvCBDcQOt4PB4ciG+zTY
@@ -916,7 +916,7 @@
OPHLFLfX6/V6vTxY8+b9B747dhbHHiKqAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtWHd01PWendRJJjOZPplMZtImfSaBkEIRQiAiQgBZFQtdCSAoSAnp
@@ -1000,7 +1000,7 @@
pIOgUoXyvZ7maLnlKZ7iKf5lEAj+E30bQeBTjBeYAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEpNJREFUaEPtmHdUlVe6xje9yaGqCEgNIkVURBQbKlJUepGmiCBVkF4OHQ7lAFJF
@@ -1085,7 +1085,7 @@
tdggPESMLKEhYp6oFPbycyPNEw/xEA/xb4MQ/wM8KZllvXxzogAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAF+hJREFUaEPdemdwXNeZ5UWjMxpo5IxGBhqNjAZA5BwJEgBJNRhBEgQJJjGKlEgx
diff --git a/FunkeySelector/MagmaGorge.Designer.cs b/FunkeySelector/MagmaGorge.Designer.cs
new file mode 100644
index 0000000..5f59624
--- /dev/null
+++ b/FunkeySelector/MagmaGorge.Designer.cs
@@ -0,0 +1,411 @@
+namespace FunkeySelector
+{
+ partial class MagmaGorge
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MagmaGorge));
+ this.BonesLabel = new System.Windows.Forms.Label();
+ this.BonesVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.BonesR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Bones = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DeuceLabel = new System.Windows.Forms.Label();
+ this.DeuceVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DeuceR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Deuce = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WasabiLabel = new System.Windows.Forms.Label();
+ this.WasabiVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.WasabiR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Wasabi = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.StitchLabel = new System.Windows.Forms.Label();
+ this.StitchVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.StitchR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Stitch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.MagmaGorgeLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // BonesLabel
+ //
+ this.BonesLabel.AutoSize = true;
+ this.BonesLabel.BackColor = System.Drawing.Color.Transparent;
+ this.BonesLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.BonesLabel.Location = new System.Drawing.Point(331, 435);
+ this.BonesLabel.Name = "BonesLabel";
+ this.BonesLabel.Size = new System.Drawing.Size(88, 29);
+ this.BonesLabel.TabIndex = 56;
+ this.BonesLabel.Text = "BONES";
+ //
+ // BonesVR
+ //
+ this.BonesVR.BackColor = System.Drawing.Color.Transparent;
+ this.BonesVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BonesVR.BackgroundImage")));
+ this.BonesVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BonesVR.FlatAppearance.BorderSize = 0;
+ this.BonesVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BonesVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BonesVR.FunkeyID = "00000034";
+ this.BonesVR.Location = new System.Drawing.Point(400, 475);
+ this.BonesVR.Name = "BonesVR";
+ this.BonesVR.Size = new System.Drawing.Size(50, 63);
+ this.BonesVR.TabIndex = 55;
+ this.BonesVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BonesVR.UseVisualStyleBackColor = false;
+ //
+ // BonesR
+ //
+ this.BonesR.BackColor = System.Drawing.Color.Transparent;
+ this.BonesR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("BonesR.BackgroundImage")));
+ this.BonesR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.BonesR.FlatAppearance.BorderSize = 0;
+ this.BonesR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.BonesR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.BonesR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.BonesR.FunkeyID = "00000033";
+ this.BonesR.Location = new System.Drawing.Point(349, 475);
+ this.BonesR.Name = "BonesR";
+ this.BonesR.Size = new System.Drawing.Size(50, 63);
+ this.BonesR.TabIndex = 54;
+ this.BonesR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.BonesR.UseVisualStyleBackColor = false;
+ //
+ // Bones
+ //
+ this.Bones.BackColor = System.Drawing.Color.Transparent;
+ this.Bones.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Bones.BackgroundImage")));
+ this.Bones.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Bones.FlatAppearance.BorderSize = 0;
+ this.Bones.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Bones.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Bones.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Bones.FunkeyID = "00000032";
+ this.Bones.Location = new System.Drawing.Point(298, 475);
+ this.Bones.Name = "Bones";
+ this.Bones.Size = new System.Drawing.Size(50, 63);
+ this.Bones.TabIndex = 53;
+ this.Bones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Bones.UseVisualStyleBackColor = false;
+ //
+ // DeuceLabel
+ //
+ this.DeuceLabel.AutoSize = true;
+ this.DeuceLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DeuceLabel.Location = new System.Drawing.Point(331, 226);
+ this.DeuceLabel.Name = "DeuceLabel";
+ this.DeuceLabel.Size = new System.Drawing.Size(82, 29);
+ this.DeuceLabel.TabIndex = 52;
+ this.DeuceLabel.Text = "DEUCE";
+ //
+ // DeuceVR
+ //
+ this.DeuceVR.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DeuceVR.BackgroundImage")));
+ this.DeuceVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DeuceVR.FlatAppearance.BorderSize = 0;
+ this.DeuceVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DeuceVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.DeuceVR.FunkeyID = "0000002E";
+ this.DeuceVR.Location = new System.Drawing.Point(400, 264);
+ this.DeuceVR.Name = "DeuceVR";
+ this.DeuceVR.Size = new System.Drawing.Size(50, 63);
+ this.DeuceVR.TabIndex = 51;
+ this.DeuceVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DeuceVR.UseVisualStyleBackColor = false;
+ //
+ // DeuceR
+ //
+ this.DeuceR.BackColor = System.Drawing.Color.Transparent;
+ this.DeuceR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("DeuceR.BackgroundImage")));
+ this.DeuceR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.DeuceR.FlatAppearance.BorderSize = 0;
+ this.DeuceR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.DeuceR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DeuceR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.DeuceR.FunkeyID = "0000002A";
+ this.DeuceR.Location = new System.Drawing.Point(349, 264);
+ this.DeuceR.Name = "DeuceR";
+ this.DeuceR.Size = new System.Drawing.Size(50, 63);
+ this.DeuceR.TabIndex = 50;
+ this.DeuceR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.DeuceR.UseVisualStyleBackColor = false;
+ //
+ // Deuce
+ //
+ this.Deuce.BackColor = System.Drawing.Color.Transparent;
+ this.Deuce.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Deuce.BackgroundImage")));
+ this.Deuce.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Deuce.FlatAppearance.BorderSize = 0;
+ this.Deuce.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Deuce.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Deuce.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Deuce.FunkeyID = "00000029";
+ this.Deuce.Location = new System.Drawing.Point(298, 264);
+ this.Deuce.Name = "Deuce";
+ this.Deuce.Size = new System.Drawing.Size(50, 63);
+ this.Deuce.TabIndex = 49;
+ this.Deuce.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Deuce.UseVisualStyleBackColor = false;
+ //
+ // WasabiLabel
+ //
+ this.WasabiLabel.AutoSize = true;
+ this.WasabiLabel.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.WasabiLabel.Location = new System.Drawing.Point(323, 332);
+ this.WasabiLabel.Name = "WasabiLabel";
+ this.WasabiLabel.Size = new System.Drawing.Size(104, 29);
+ this.WasabiLabel.TabIndex = 48;
+ this.WasabiLabel.Text = "WASABI";
+ //
+ // WasabiVR
+ //
+ this.WasabiVR.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WasabiVR.BackgroundImage")));
+ this.WasabiVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WasabiVR.FlatAppearance.BorderSize = 0;
+ this.WasabiVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WasabiVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.WasabiVR.FunkeyID = "00000031";
+ this.WasabiVR.Location = new System.Drawing.Point(400, 367);
+ this.WasabiVR.Name = "WasabiVR";
+ this.WasabiVR.Size = new System.Drawing.Size(50, 63);
+ this.WasabiVR.TabIndex = 47;
+ this.WasabiVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WasabiVR.UseVisualStyleBackColor = false;
+ //
+ // WasabiR
+ //
+ this.WasabiR.BackColor = System.Drawing.Color.Transparent;
+ this.WasabiR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("WasabiR.BackgroundImage")));
+ this.WasabiR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.WasabiR.FlatAppearance.BorderSize = 0;
+ this.WasabiR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.WasabiR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.WasabiR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.WasabiR.FunkeyID = "00000030";
+ this.WasabiR.Location = new System.Drawing.Point(349, 367);
+ this.WasabiR.Name = "WasabiR";
+ this.WasabiR.Size = new System.Drawing.Size(50, 63);
+ this.WasabiR.TabIndex = 46;
+ this.WasabiR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.WasabiR.UseVisualStyleBackColor = false;
+ //
+ // Wasabi
+ //
+ this.Wasabi.BackColor = System.Drawing.Color.Transparent;
+ this.Wasabi.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Wasabi.BackgroundImage")));
+ this.Wasabi.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Wasabi.FlatAppearance.BorderSize = 0;
+ this.Wasabi.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Wasabi.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Wasabi.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Wasabi.FunkeyID = "0000002F";
+ this.Wasabi.Location = new System.Drawing.Point(298, 367);
+ this.Wasabi.Name = "Wasabi";
+ this.Wasabi.Size = new System.Drawing.Size(50, 63);
+ this.Wasabi.TabIndex = 45;
+ this.Wasabi.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Wasabi.UseVisualStyleBackColor = false;
+ //
+ // StitchLabel
+ //
+ this.StitchLabel.AutoSize = true;
+ this.StitchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.StitchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.StitchLabel.Location = new System.Drawing.Point(328, 106);
+ this.StitchLabel.Name = "StitchLabel";
+ this.StitchLabel.Size = new System.Drawing.Size(96, 29);
+ this.StitchLabel.TabIndex = 44;
+ this.StitchLabel.Text = "STITCH";
+ //
+ // StitchVR
+ //
+ this.StitchVR.BackColor = System.Drawing.Color.Transparent;
+ this.StitchVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("StitchVR.BackgroundImage")));
+ this.StitchVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.StitchVR.FlatAppearance.BorderSize = 0;
+ this.StitchVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.StitchVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.StitchVR.FunkeyID = "00000028";
+ this.StitchVR.Location = new System.Drawing.Point(400, 146);
+ this.StitchVR.Name = "StitchVR";
+ this.StitchVR.Size = new System.Drawing.Size(50, 63);
+ this.StitchVR.TabIndex = 43;
+ this.StitchVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.StitchVR.UseVisualStyleBackColor = false;
+ //
+ // StitchR
+ //
+ this.StitchR.BackColor = System.Drawing.Color.Transparent;
+ this.StitchR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("StitchR.BackgroundImage")));
+ this.StitchR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.StitchR.FlatAppearance.BorderSize = 0;
+ this.StitchR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.StitchR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.StitchR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.StitchR.FunkeyID = "00000027";
+ this.StitchR.Location = new System.Drawing.Point(349, 146);
+ this.StitchR.Name = "StitchR";
+ this.StitchR.Size = new System.Drawing.Size(50, 63);
+ this.StitchR.TabIndex = 42;
+ this.StitchR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.StitchR.UseVisualStyleBackColor = false;
+ //
+ // Stitch
+ //
+ this.Stitch.BackColor = System.Drawing.Color.Transparent;
+ this.Stitch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Stitch.BackgroundImage")));
+ this.Stitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Stitch.FlatAppearance.BorderSize = 0;
+ this.Stitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Stitch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Stitch.ForeColor = System.Drawing.Color.Transparent;
+ this.Stitch.FunkeyID = "00000026";
+ this.Stitch.Location = new System.Drawing.Point(298, 146);
+ this.Stitch.Name = "Stitch";
+ this.Stitch.Size = new System.Drawing.Size(50, 63);
+ this.Stitch.TabIndex = 41;
+ this.Stitch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Stitch.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 40;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // MagmaGorgeLabel
+ //
+ this.MagmaGorgeLabel.AutoSize = true;
+ this.MagmaGorgeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MagmaGorgeLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MagmaGorgeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MagmaGorgeLabel.Location = new System.Drawing.Point(212, 27);
+ this.MagmaGorgeLabel.Name = "MagmaGorgeLabel";
+ this.MagmaGorgeLabel.Size = new System.Drawing.Size(305, 52);
+ this.MagmaGorgeLabel.TabIndex = 39;
+ this.MagmaGorgeLabel.Text = "MAGMA GORGE";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(641, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 85;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(680, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 86;
+ //
+ // MagmaGorge
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.BonesLabel);
+ this.Controls.Add(this.BonesVR);
+ this.Controls.Add(this.BonesR);
+ this.Controls.Add(this.Bones);
+ this.Controls.Add(this.DeuceLabel);
+ this.Controls.Add(this.DeuceVR);
+ this.Controls.Add(this.DeuceR);
+ this.Controls.Add(this.Deuce);
+ this.Controls.Add(this.WasabiLabel);
+ this.Controls.Add(this.WasabiVR);
+ this.Controls.Add(this.WasabiR);
+ this.Controls.Add(this.Wasabi);
+ this.Controls.Add(this.StitchLabel);
+ this.Controls.Add(this.StitchVR);
+ this.Controls.Add(this.StitchR);
+ this.Controls.Add(this.Stitch);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.MagmaGorgeLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MagmaGorge";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label BonesLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton BonesVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton BonesR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Bones;
+ private System.Windows.Forms.Label DeuceLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton DeuceVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton DeuceR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Deuce;
+ private System.Windows.Forms.Label WasabiLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton WasabiVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton WasabiR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Wasabi;
+ private System.Windows.Forms.Label StitchLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton StitchVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton StitchR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Stitch;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label MagmaGorgeLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/MagmaGorge.cs b/FunkeySelector/MagmaGorge.cs
new file mode 100644
index 0000000..d1002a2
--- /dev/null
+++ b/FunkeySelector/MagmaGorge.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class MagmaGorge : BasicForm
+ {
+ public MagmaGorge()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form4.resx b/FunkeySelector/MagmaGorge.resx
similarity index 99%
rename from FunkeySelector/Form4.resx
rename to FunkeySelector/MagmaGorge.resx
index 91b35ab..0ccc583 100644
--- a/FunkeySelector/Form4.resx
+++ b/FunkeySelector/MagmaGorge.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEStJREFUaEPtWGdYVde25bvv5ktyk6iJiL0mxhajL4mmmZhyTaLxRqNJvIkGpQjS
@@ -197,7 +197,7 @@
7cxKOrTTSktiZe5aiRfElzyzZ/bMntnTmoTEfwHhyTHYpUDX1wAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElhJREFUaEPtmHdclmXbx28ETGRzb+7F3lPEzXDv1Fw5UMwETdME0dBInCgOhgsM
@@ -281,7 +281,7 @@
CYopcVIE4aqIkutoMYNYA+sjL/ESL/ESfxcKxf8Ai/T5Xg8VotoAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAELFJREFUaEPtWGdUVNfa9rvfyrolJhZ6G/oMw3SGOgNMYWYYZmDoWFARpVhARAFB
@@ -358,7 +358,7 @@
qePSlQvm2H0KdH3+5LzliT2xJ/bEHtf69PkH1c92mRV6QCsAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD/JJREFUaEPtmFlso9d1x2V7EmcCz3jsWazxrPJ4PKtszWi0i6Q2SqKojaJWaiFF
@@ -432,7 +432,7 @@
8a3wLc/tuT235/asFhHx34FAxyqT32NNAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZ1JREFUaEPtWHdsHPZ1Zux4yNYgeYPH4+299+Ttve+4N4+b4pC4RMmiuCSKEoes
@@ -513,7 +513,7 @@
LsGcWUddRR9eLD/jKZ7iKZ7iSVFR8Z98EQx8ha5XZwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZNJREFUaEPtWWdUleeWPr1/p1cO7dCRImIHxEaMvcTEFkssYEMEFAgWRLCAKCgi
@@ -594,7 +594,7 @@
ffJYHstjeSxtFZHoHz5HBXaQ0NqmAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZlJREFUaEPtWHlUVfXaptJrlpWplVmWmkra1axb3cybmlnXLJu8aJkmKpOMMh/m
@@ -675,7 +675,7 @@
K15XUJBbKjv/GI/xGP81yMn9D5Akr1B7l17/AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAErdJREFUaEPtmHd01XWaxu+oiAIJSW56SO8JCWlAICGFdBJCeu+9l5sE0nsvN72S
@@ -761,7 +761,7 @@
T4NE8l9VjCi9mUOwgAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD/hJREFUaEPtmXls1Gd6x52DBELA+MA2vj323Pd9j2fsmfE5NtjYBnxifGAOGxsb
@@ -835,7 +835,7 @@
Nu63Zdb1x62JveWJPbEn9o1ZXNz/ANxR1vfU1QqFAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEUFJREFUaEPtWXdYVGe+dhNLsGDMqsk1u7mb3Gx2n8RN2yR3Y4oajSa68ZpijERF
@@ -915,7 +915,7 @@
AAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAElBJREFUaEPtWHlQm/e1lR0nduJ4SZw4fo5TL9jGYIMXdiQhQCBAQoAWhNCGJEDs
@@ -999,7 +999,7 @@
LmfjGNsmGYwXbW95hmd4hn8aGIz/Ba7KTTZ8cE9GAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEeFJREFUaEPtWXdQ23l2/3ld6MUgQBKSQBIIRC+id4ToohfTDKaYYkwvpnfTm2kG
diff --git a/FunkeySelector/NightmareRift.Designer.cs b/FunkeySelector/NightmareRift.Designer.cs
new file mode 100644
index 0000000..2accbf9
--- /dev/null
+++ b/FunkeySelector/NightmareRift.Designer.cs
@@ -0,0 +1,410 @@
+namespace FunkeySelector
+{
+ partial class NightmareRift
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NightmareRift));
+ this.SnipeLabel = new System.Windows.Forms.Label();
+ this.SnipeVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SnipeR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Snipe = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SprocketLabel = new System.Windows.Forms.Label();
+ this.SprocketVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SprocketR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Sprocket = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VlurpLabel = new System.Windows.Forms.Label();
+ this.VlurpVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.VlurpR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Vlurp = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.PtepLabel = new System.Windows.Forms.Label();
+ this.PtepVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.PtepR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Ptep = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.NightmareRiftLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // SnipeLabel
+ //
+ this.SnipeLabel.AutoSize = true;
+ this.SnipeLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SnipeLabel.Location = new System.Drawing.Point(339, 428);
+ this.SnipeLabel.Name = "SnipeLabel";
+ this.SnipeLabel.Size = new System.Drawing.Size(80, 29);
+ this.SnipeLabel.TabIndex = 74;
+ this.SnipeLabel.Text = "SNIPE";
+ //
+ // SnipeVR
+ //
+ this.SnipeVR.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnipeVR.BackgroundImage")));
+ this.SnipeVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnipeVR.FlatAppearance.BorderSize = 0;
+ this.SnipeVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnipeVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SnipeVR.FunkeyID = "000000CA";
+ this.SnipeVR.Location = new System.Drawing.Point(408, 468);
+ this.SnipeVR.Name = "SnipeVR";
+ this.SnipeVR.Size = new System.Drawing.Size(50, 63);
+ this.SnipeVR.TabIndex = 73;
+ this.SnipeVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnipeVR.UseVisualStyleBackColor = false;
+ //
+ // SnipeR
+ //
+ this.SnipeR.BackColor = System.Drawing.Color.Transparent;
+ this.SnipeR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnipeR.BackgroundImage")));
+ this.SnipeR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnipeR.FlatAppearance.BorderSize = 0;
+ this.SnipeR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnipeR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnipeR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SnipeR.FunkeyID = "000000B9";
+ this.SnipeR.Location = new System.Drawing.Point(357, 468);
+ this.SnipeR.Name = "SnipeR";
+ this.SnipeR.Size = new System.Drawing.Size(50, 63);
+ this.SnipeR.TabIndex = 72;
+ this.SnipeR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnipeR.UseVisualStyleBackColor = false;
+ //
+ // Snipe
+ //
+ this.Snipe.BackColor = System.Drawing.Color.Transparent;
+ this.Snipe.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Snipe.BackgroundImage")));
+ this.Snipe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Snipe.FlatAppearance.BorderSize = 0;
+ this.Snipe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Snipe.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Snipe.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Snipe.FunkeyID = "000000AC";
+ this.Snipe.Location = new System.Drawing.Point(306, 468);
+ this.Snipe.Name = "Snipe";
+ this.Snipe.Size = new System.Drawing.Size(50, 63);
+ this.Snipe.TabIndex = 71;
+ this.Snipe.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Snipe.UseVisualStyleBackColor = false;
+ //
+ // SprocketLabel
+ //
+ this.SprocketLabel.AutoSize = true;
+ this.SprocketLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SprocketLabel.Location = new System.Drawing.Point(324, 218);
+ this.SprocketLabel.Name = "SprocketLabel";
+ this.SprocketLabel.Size = new System.Drawing.Size(122, 29);
+ this.SprocketLabel.TabIndex = 70;
+ this.SprocketLabel.Text = "SPROCKET";
+ //
+ // SprocketVR
+ //
+ this.SprocketVR.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SprocketVR.BackgroundImage")));
+ this.SprocketVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SprocketVR.FlatAppearance.BorderSize = 0;
+ this.SprocketVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SprocketVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.SprocketVR.FunkeyID = "000000C1";
+ this.SprocketVR.Location = new System.Drawing.Point(408, 257);
+ this.SprocketVR.Name = "SprocketVR";
+ this.SprocketVR.Size = new System.Drawing.Size(50, 63);
+ this.SprocketVR.TabIndex = 69;
+ this.SprocketVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SprocketVR.UseVisualStyleBackColor = false;
+ //
+ // SprocketR
+ //
+ this.SprocketR.BackColor = System.Drawing.Color.Transparent;
+ this.SprocketR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SprocketR.BackgroundImage")));
+ this.SprocketR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SprocketR.FlatAppearance.BorderSize = 0;
+ this.SprocketR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SprocketR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SprocketR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SprocketR.FunkeyID = "000000B4";
+ this.SprocketR.Location = new System.Drawing.Point(357, 257);
+ this.SprocketR.Name = "SprocketR";
+ this.SprocketR.Size = new System.Drawing.Size(50, 63);
+ this.SprocketR.TabIndex = 68;
+ this.SprocketR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SprocketR.UseVisualStyleBackColor = false;
+ //
+ // Sprocket
+ //
+ this.Sprocket.BackColor = System.Drawing.Color.Transparent;
+ this.Sprocket.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Sprocket.BackgroundImage")));
+ this.Sprocket.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Sprocket.FlatAppearance.BorderSize = 0;
+ this.Sprocket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Sprocket.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Sprocket.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Sprocket.FunkeyID = "000000A4";
+ this.Sprocket.Location = new System.Drawing.Point(306, 257);
+ this.Sprocket.Name = "Sprocket";
+ this.Sprocket.Size = new System.Drawing.Size(50, 63);
+ this.Sprocket.TabIndex = 67;
+ this.Sprocket.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Sprocket.UseVisualStyleBackColor = false;
+ //
+ // VlurpLabel
+ //
+ this.VlurpLabel.AutoSize = true;
+ this.VlurpLabel.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.VlurpLabel.Location = new System.Drawing.Point(346, 325);
+ this.VlurpLabel.Name = "VlurpLabel";
+ this.VlurpLabel.Size = new System.Drawing.Size(78, 29);
+ this.VlurpLabel.TabIndex = 66;
+ this.VlurpLabel.Text = "VLURP";
+ //
+ // VlurpVR
+ //
+ this.VlurpVR.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VlurpVR.BackgroundImage")));
+ this.VlurpVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VlurpVR.FlatAppearance.BorderSize = 0;
+ this.VlurpVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VlurpVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.VlurpVR.FunkeyID = "000000C2";
+ this.VlurpVR.Location = new System.Drawing.Point(408, 360);
+ this.VlurpVR.Name = "VlurpVR";
+ this.VlurpVR.Size = new System.Drawing.Size(50, 63);
+ this.VlurpVR.TabIndex = 65;
+ this.VlurpVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VlurpVR.UseVisualStyleBackColor = false;
+ //
+ // VlurpR
+ //
+ this.VlurpR.BackColor = System.Drawing.Color.Transparent;
+ this.VlurpR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("VlurpR.BackgroundImage")));
+ this.VlurpR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.VlurpR.FlatAppearance.BorderSize = 0;
+ this.VlurpR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.VlurpR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.VlurpR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.VlurpR.FunkeyID = "000000B5";
+ this.VlurpR.Location = new System.Drawing.Point(357, 360);
+ this.VlurpR.Name = "VlurpR";
+ this.VlurpR.Size = new System.Drawing.Size(50, 63);
+ this.VlurpR.TabIndex = 64;
+ this.VlurpR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.VlurpR.UseVisualStyleBackColor = false;
+ //
+ // Vlurp
+ //
+ this.Vlurp.BackColor = System.Drawing.Color.Transparent;
+ this.Vlurp.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Vlurp.BackgroundImage")));
+ this.Vlurp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Vlurp.FlatAppearance.BorderSize = 0;
+ this.Vlurp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Vlurp.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Vlurp.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Vlurp.FunkeyID = "000000A8";
+ this.Vlurp.Location = new System.Drawing.Point(306, 360);
+ this.Vlurp.Name = "Vlurp";
+ this.Vlurp.Size = new System.Drawing.Size(50, 63);
+ this.Vlurp.TabIndex = 63;
+ this.Vlurp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Vlurp.UseVisualStyleBackColor = false;
+ //
+ // PtepLabel
+ //
+ this.PtepLabel.AutoSize = true;
+ this.PtepLabel.BackColor = System.Drawing.Color.Transparent;
+ this.PtepLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.PtepLabel.Location = new System.Drawing.Point(354, 102);
+ this.PtepLabel.Name = "PtepLabel";
+ this.PtepLabel.Size = new System.Drawing.Size(62, 29);
+ this.PtepLabel.TabIndex = 62;
+ this.PtepLabel.Text = "PTEP";
+ //
+ // PtepVR
+ //
+ this.PtepVR.BackColor = System.Drawing.Color.Transparent;
+ this.PtepVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PtepVR.BackgroundImage")));
+ this.PtepVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PtepVR.FlatAppearance.BorderSize = 0;
+ this.PtepVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PtepVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.PtepVR.FunkeyID = "000000BA";
+ this.PtepVR.Location = new System.Drawing.Point(408, 139);
+ this.PtepVR.Name = "PtepVR";
+ this.PtepVR.Size = new System.Drawing.Size(50, 63);
+ this.PtepVR.TabIndex = 61;
+ this.PtepVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PtepVR.UseVisualStyleBackColor = false;
+ //
+ // PtepR
+ //
+ this.PtepR.BackColor = System.Drawing.Color.Transparent;
+ this.PtepR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PtepR.BackgroundImage")));
+ this.PtepR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PtepR.FlatAppearance.BorderSize = 0;
+ this.PtepR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.PtepR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.PtepR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.PtepR.FunkeyID = "000000AD";
+ this.PtepR.Location = new System.Drawing.Point(357, 139);
+ this.PtepR.Name = "PtepR";
+ this.PtepR.Size = new System.Drawing.Size(50, 63);
+ this.PtepR.TabIndex = 60;
+ this.PtepR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.PtepR.UseVisualStyleBackColor = false;
+ //
+ // Ptep
+ //
+ this.Ptep.BackColor = System.Drawing.Color.Transparent;
+ this.Ptep.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Ptep.BackgroundImage")));
+ this.Ptep.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Ptep.FlatAppearance.BorderSize = 0;
+ this.Ptep.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Ptep.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Ptep.ForeColor = System.Drawing.Color.Transparent;
+ this.Ptep.FunkeyID = "000000A0";
+ this.Ptep.Location = new System.Drawing.Point(306, 139);
+ this.Ptep.Name = "Ptep";
+ this.Ptep.Size = new System.Drawing.Size(50, 63);
+ this.Ptep.TabIndex = 59;
+ this.Ptep.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Ptep.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // NightmareRiftLabel
+ //
+ this.NightmareRiftLabel.AutoSize = true;
+ this.NightmareRiftLabel.BackColor = System.Drawing.Color.Transparent;
+ this.NightmareRiftLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.NightmareRiftLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.NightmareRiftLabel.Location = new System.Drawing.Point(220, 20);
+ this.NightmareRiftLabel.Name = "NightmareRiftLabel";
+ this.NightmareRiftLabel.Size = new System.Drawing.Size(357, 52);
+ this.NightmareRiftLabel.TabIndex = 57;
+ this.NightmareRiftLabel.Text = "NIGHTMARE RIFT";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 93;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 94;
+ //
+ // NightmareRift
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.SnipeLabel);
+ this.Controls.Add(this.SnipeVR);
+ this.Controls.Add(this.SnipeR);
+ this.Controls.Add(this.Snipe);
+ this.Controls.Add(this.SprocketLabel);
+ this.Controls.Add(this.SprocketVR);
+ this.Controls.Add(this.SprocketR);
+ this.Controls.Add(this.Sprocket);
+ this.Controls.Add(this.VlurpLabel);
+ this.Controls.Add(this.VlurpVR);
+ this.Controls.Add(this.VlurpR);
+ this.Controls.Add(this.Vlurp);
+ this.Controls.Add(this.PtepLabel);
+ this.Controls.Add(this.PtepVR);
+ this.Controls.Add(this.PtepR);
+ this.Controls.Add(this.Ptep);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.NightmareRiftLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "NightmareRift";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label SnipeLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnipeVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnipeR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Snipe;
+ private System.Windows.Forms.Label SprocketLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SprocketVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton SprocketR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Sprocket;
+ private System.Windows.Forms.Label VlurpLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton VlurpVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton VlurpR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Vlurp;
+ private System.Windows.Forms.Label PtepLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton PtepVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton PtepR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Ptep;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label NightmareRiftLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/NightmareRift.cs b/FunkeySelector/NightmareRift.cs
new file mode 100644
index 0000000..27e3916
--- /dev/null
+++ b/FunkeySelector/NightmareRift.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class NightmareRift : BasicForm
+ {
+ public NightmareRift()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form8.resx b/FunkeySelector/NightmareRift.resx
similarity index 99%
rename from FunkeySelector/Form8.resx
rename to FunkeySelector/NightmareRift.resx
index 4896d96..07c1361 100644
--- a/FunkeySelector/Form8.resx
+++ b/FunkeySelector/NightmareRift.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEfRJREFUaEPtV3lYzevaXkiGZChKaJKmlQaVitA8z5MmDZrnuURzKRkTSmUIqch0
@@ -201,7 +201,7 @@
AABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEVNJREFUaEPtV2dspOdx3iu8QvLYyWXnctnJ5XI7t5Dbe+X2zl0uyWUnl70c25G8
@@ -281,7 +281,7 @@
T/AE/+/AYPwXVPbyIy5B9RwAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD8ZJREFUaEPtWWlsnNd15SJKoiRTXIYc7px9uMy+7/vGmSFnuAyHHA6H+05x0U5F
@@ -354,7 +354,7 @@
BX9MPdaXX/3Ol/pfXi6q2fn5A3kgD+SBPJD/b1JU9N+J8T59DiBu2gAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAENxJREFUaEPtWWlsI4d13jYwjDr27uriKZ7iOZyLnCGH9ylRIkVS0krUrZW0Olfn
@@ -432,7 +432,7 @@
Pbfn9qx26tT/AjpOjr+3xeYuAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEjVJREFUaEPtWGlQ2/eZ1jZH2yS2AXPfoFuAJHSiAx3oRBICCQQCxCGQkATivs1l
@@ -516,7 +516,7 @@
kHkPAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEGlJREFUaEPtWFlsXId1ZexosyXLJkVR4r7MDGff933fOStnJznDGZIzJGfnKpIS
@@ -592,7 +592,7 @@
+89je2yP7bH9v7O+vv8Ea1AcxNOU+dAAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEnNJREFUaEPtmAdQlXe6xg/SLagYNSbGaLLJxp2b7iYb1yQbEzcbS2I0bmJixULv
@@ -677,7 +677,7 @@
XaiwCkcAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAETBJREFUaEPtmHdUVPe2x0dAUIyxx2hsGBITTSzYOxEbajRqABsqIJ2hD9J7r9J7
@@ -756,7 +756,7 @@
+7XV/ObywsgUQYKZWuc5JVm6Tezd3R/0QR/0Qf9/xOH8A6+H2dZnxd2YAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEP9JREFUaEPtWHdUVPe6BRRQEA32gi3RxBI1RtHEqIkl6hNNLMEoCoj0Mg4DAwx1
@@ -835,7 +835,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAELBJREFUaEPtWXlso/lZ9s7OZGZy35dzO4kTO77i+77v246d2I6dOJdj53Cca3LM
@@ -912,7 +912,7 @@
6i+9vaMwczjXqpd5bs/tuT235/b/yTic/wCMSORRIx+tHQAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEfdJREFUaEPtWXlw2/WVz8zObKeFtiwtZRcKpBxJyGE7+L5kWZaty5J1W6d1WIdl
@@ -995,7 +995,7 @@
XAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEbpJREFUaEPtWWdQXFeaZXa9O7uz5S17drzeWdfYHgd5vPbYlke2xnKWlS1LViAJ
diff --git a/FunkeySelector/Options.Designer.cs b/FunkeySelector/Options.Designer.cs
new file mode 100644
index 0000000..f7174a4
--- /dev/null
+++ b/FunkeySelector/Options.Designer.cs
@@ -0,0 +1,168 @@
+namespace FunkeySelector
+{
+ partial class Options
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Options));
+ this.OptionsLabel = new System.Windows.Forms.Label();
+ this.disableModCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.disableGameCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.wineCompat = new FunkeySelector.UserControls.SettingCheckBox();
+ this.disableWineCheck = new FunkeySelector.UserControls.SettingCheckBox();
+ this.aboutButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.okButton = new FunkeySelector.UserControls.OKButton();
+ this.SuspendLayout();
+ //
+ // OptionsLabel
+ //
+ this.OptionsLabel.AutoSize = true;
+ this.OptionsLabel.BackColor = System.Drawing.Color.Transparent;
+ this.OptionsLabel.Font = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.OptionsLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.OptionsLabel.Location = new System.Drawing.Point(234, 25);
+ this.OptionsLabel.Name = "OptionsLabel";
+ this.OptionsLabel.Size = new System.Drawing.Size(103, 26);
+ this.OptionsLabel.TabIndex = 1;
+ this.OptionsLabel.Text = "OPTIONS";
+ //
+ // disableModCheck
+ //
+ this.disableModCheck.AutoSize = true;
+ this.disableModCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableModCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableModCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableModCheck.Location = new System.Drawing.Point(111, 66);
+ this.disableModCheck.Name = "disableModCheck";
+ this.disableModCheck.SettingName = "disableModCheck";
+ this.disableModCheck.Size = new System.Drawing.Size(351, 24);
+ this.disableModCheck.TabIndex = 2;
+ this.disableModCheck.Text = "DISABLE FUNKEYS SELECTION MOD CHECK";
+ this.disableModCheck.UseVisualStyleBackColor = false;
+ //
+ // disableGameCheck
+ //
+ this.disableGameCheck.AutoSize = true;
+ this.disableGameCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableGameCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableGameCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableGameCheck.Location = new System.Drawing.Point(111, 89);
+ this.disableGameCheck.Name = "disableGameCheck";
+ this.disableGameCheck.SettingName = "disableGameCheck";
+ this.disableGameCheck.Size = new System.Drawing.Size(297, 24);
+ this.disableGameCheck.TabIndex = 3;
+ this.disableGameCheck.Text = "DISABLE U.B. FUNKEYS GAME CHECK";
+ this.disableGameCheck.UseVisualStyleBackColor = false;
+ //
+ // wineCompat
+ //
+ this.wineCompat.AutoSize = true;
+ this.wineCompat.BackColor = System.Drawing.Color.Transparent;
+ this.wineCompat.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.wineCompat.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.wineCompat.Location = new System.Drawing.Point(111, 135);
+ this.wineCompat.Name = "wineCompat";
+ this.wineCompat.SettingName = "wineCompat";
+ this.wineCompat.Size = new System.Drawing.Size(257, 24);
+ this.wineCompat.TabIndex = 4;
+ this.wineCompat.Text = "WINE/MONO COMPATIBILITY";
+ this.wineCompat.UseVisualStyleBackColor = false;
+ //
+ // disableWineCheck
+ //
+ this.disableWineCheck.AutoSize = true;
+ this.disableWineCheck.BackColor = System.Drawing.Color.Transparent;
+ this.disableWineCheck.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.disableWineCheck.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.disableWineCheck.Location = new System.Drawing.Point(111, 112);
+ this.disableWineCheck.Name = "disableWineCheck";
+ this.disableWineCheck.SettingName = "disableWineCheck";
+ this.disableWineCheck.Size = new System.Drawing.Size(194, 24);
+ this.disableWineCheck.TabIndex = 5;
+ this.disableWineCheck.Text = "DISABLE WINE CHECK";
+ this.disableWineCheck.UseVisualStyleBackColor = false;
+ //
+ // aboutButton
+ //
+ this.aboutButton.BackColor = System.Drawing.Color.Transparent;
+ this.aboutButton.FlatAppearance.BorderSize = 0;
+ this.aboutButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.aboutButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.aboutButton.ForeColor = System.Drawing.SystemColors.ButtonFace;
+ this.aboutButton.FormToOpen = "About";
+ this.aboutButton.KeepCurrentForm = true;
+ this.aboutButton.Location = new System.Drawing.Point(146, 187);
+ this.aboutButton.Name = "aboutButton";
+ this.aboutButton.Size = new System.Drawing.Size(262, 31);
+ this.aboutButton.TabIndex = 6;
+ this.aboutButton.Text = "ABOUT FUNKEYSELECTORGUI";
+ this.aboutButton.UseVisualStyleBackColor = false;
+ //
+ // okButton
+ //
+ this.okButton.BackColor = System.Drawing.Color.Transparent;
+ this.okButton.CloseForm = true;
+ this.okButton.Location = new System.Drawing.Point(242, 244);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(86, 23);
+ this.okButton.TabIndex = 7;
+ //
+ // Options
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._1841;
+ this.ClientSize = new System.Drawing.Size(570, 273);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.aboutButton);
+ this.Controls.Add(this.disableWineCheck);
+ this.Controls.Add(this.wineCompat);
+ this.Controls.Add(this.disableGameCheck);
+ this.Controls.Add(this.disableModCheck);
+ this.Controls.Add(this.OptionsLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "Options";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+ private System.Windows.Forms.Label OptionsLabel;
+ private FunkeySelector.UserControls.SettingCheckBox disableModCheck;
+ private FunkeySelector.UserControls.SettingCheckBox disableGameCheck;
+ private FunkeySelector.UserControls.SettingCheckBox wineCompat;
+ private FunkeySelector.UserControls.SettingCheckBox disableWineCheck;
+ private FunkeySelector.UserControls.ChangeFormButton aboutButton;
+ private UserControls.OKButton okButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/Options.cs b/FunkeySelector/Options.cs
new file mode 100644
index 0000000..e2ccb28
--- /dev/null
+++ b/FunkeySelector/Options.cs
@@ -0,0 +1,20 @@
+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;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class Options : BasicForm
+ {
+ public Options()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form14.resx b/FunkeySelector/Options.resx
similarity index 100%
rename from FunkeySelector/Form14.resx
rename to FunkeySelector/Options.resx
diff --git a/FunkeySelector/ParadoxGreen.Designer.cs b/FunkeySelector/ParadoxGreen.Designer.cs
new file mode 100644
index 0000000..70732af
--- /dev/null
+++ b/FunkeySelector/ParadoxGreen.Designer.cs
@@ -0,0 +1,331 @@
+namespace FunkeySelector
+{
+ partial class ParadoxGreen
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ParadoxGreen));
+ this.AceLabel = new System.Windows.Forms.Label();
+ this.Ace = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.MulchLabel = new System.Windows.Forms.Label();
+ this.Mulch = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TaddLabel = new System.Windows.Forms.Label();
+ this.TaddVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TaddR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.Tadd = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ParadoxGreenLabel = new System.Windows.Forms.Label();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.Rastro = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroVR = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RastroLabel = new System.Windows.Forms.Label();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // AceLabel
+ //
+ this.AceLabel.AutoSize = true;
+ this.AceLabel.BackColor = System.Drawing.Color.Transparent;
+ this.AceLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.AceLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.AceLabel.Location = new System.Drawing.Point(363, 413);
+ this.AceLabel.Name = "AceLabel";
+ this.AceLabel.Size = new System.Drawing.Size(54, 29);
+ this.AceLabel.TabIndex = 100;
+ this.AceLabel.Text = "ACE";
+ //
+ // Ace
+ //
+ this.Ace.BackColor = System.Drawing.Color.Transparent;
+ this.Ace.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Ace.BackgroundImage")));
+ this.Ace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Ace.FlatAppearance.BorderSize = 0;
+ this.Ace.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Ace.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Ace.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Ace.FunkeyID = "00000127";
+ this.Ace.Location = new System.Drawing.Point(368, 445);
+ this.Ace.Name = "Ace";
+ this.Ace.Size = new System.Drawing.Size(50, 63);
+ this.Ace.TabIndex = 98;
+ this.Ace.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Ace.UseVisualStyleBackColor = false;
+ //
+ // MulchLabel
+ //
+ this.MulchLabel.AutoSize = true;
+ this.MulchLabel.BackColor = System.Drawing.Color.Transparent;
+ this.MulchLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.MulchLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.MulchLabel.Location = new System.Drawing.Point(350, 315);
+ this.MulchLabel.Name = "MulchLabel";
+ this.MulchLabel.Size = new System.Drawing.Size(88, 29);
+ this.MulchLabel.TabIndex = 96;
+ this.MulchLabel.Text = "MULCH";
+ //
+ // Mulch
+ //
+ this.Mulch.BackColor = System.Drawing.Color.Transparent;
+ this.Mulch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Mulch.BackgroundImage")));
+ this.Mulch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Mulch.FlatAppearance.BorderSize = 0;
+ this.Mulch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Mulch.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Mulch.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Mulch.FunkeyID = "00000126";
+ this.Mulch.Location = new System.Drawing.Point(368, 347);
+ this.Mulch.Name = "Mulch";
+ this.Mulch.Size = new System.Drawing.Size(50, 63);
+ this.Mulch.TabIndex = 94;
+ this.Mulch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Mulch.UseVisualStyleBackColor = false;
+ //
+ // TaddLabel
+ //
+ this.TaddLabel.AutoSize = true;
+ this.TaddLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TaddLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TaddLabel.Location = new System.Drawing.Point(363, 195);
+ this.TaddLabel.Name = "TaddLabel";
+ this.TaddLabel.Size = new System.Drawing.Size(72, 29);
+ this.TaddLabel.TabIndex = 92;
+ this.TaddLabel.Text = "TADD";
+ //
+ // TaddVR
+ //
+ this.TaddVR.BackColor = System.Drawing.Color.Transparent;
+ this.TaddVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaddVR.BackgroundImage")));
+ this.TaddVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TaddVR.FlatAppearance.BorderSize = 0;
+ this.TaddVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TaddVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TaddVR.FunkeyID = "00000123";
+ this.TaddVR.Location = new System.Drawing.Point(419, 227);
+ this.TaddVR.Name = "TaddVR";
+ this.TaddVR.Size = new System.Drawing.Size(50, 63);
+ this.TaddVR.TabIndex = 91;
+ this.TaddVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TaddVR.UseVisualStyleBackColor = false;
+ //
+ // TaddR
+ //
+ this.TaddR.BackColor = System.Drawing.Color.Transparent;
+ this.TaddR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaddR.BackgroundImage")));
+ this.TaddR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TaddR.FlatAppearance.BorderSize = 0;
+ this.TaddR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TaddR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaddR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TaddR.FunkeyID = "0000011C";
+ this.TaddR.Location = new System.Drawing.Point(368, 227);
+ this.TaddR.Name = "TaddR";
+ this.TaddR.Size = new System.Drawing.Size(50, 63);
+ this.TaddR.TabIndex = 90;
+ this.TaddR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TaddR.UseVisualStyleBackColor = false;
+ //
+ // Tadd
+ //
+ this.Tadd.BackColor = System.Drawing.Color.Transparent;
+ this.Tadd.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Tadd.BackgroundImage")));
+ this.Tadd.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Tadd.FlatAppearance.BorderSize = 0;
+ this.Tadd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Tadd.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Tadd.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.Tadd.FunkeyID = "00000118";
+ this.Tadd.Location = new System.Drawing.Point(317, 227);
+ this.Tadd.Name = "Tadd";
+ this.Tadd.Size = new System.Drawing.Size(50, 63);
+ this.Tadd.TabIndex = 89;
+ this.Tadd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Tadd.UseVisualStyleBackColor = false;
+ //
+ // ParadoxGreenLabel
+ //
+ this.ParadoxGreenLabel.AutoSize = true;
+ this.ParadoxGreenLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ParadoxGreenLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ParadoxGreenLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ParadoxGreenLabel.Location = new System.Drawing.Point(206, 10);
+ this.ParadoxGreenLabel.Name = "ParadoxGreenLabel";
+ this.ParadoxGreenLabel.Size = new System.Drawing.Size(337, 52);
+ this.ParadoxGreenLabel.TabIndex = 79;
+ this.ParadoxGreenLabel.Text = "PARADOX GREEN";
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 10);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 80;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // Rastro
+ //
+ this.Rastro.BackColor = System.Drawing.Color.Transparent;
+ this.Rastro.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Rastro.BackgroundImage")));
+ this.Rastro.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Rastro.FlatAppearance.BorderSize = 0;
+ this.Rastro.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Rastro.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Rastro.ForeColor = System.Drawing.Color.Transparent;
+ this.Rastro.FunkeyID = "00000117";
+ this.Rastro.Location = new System.Drawing.Point(317, 129);
+ this.Rastro.Name = "Rastro";
+ this.Rastro.Size = new System.Drawing.Size(50, 63);
+ this.Rastro.TabIndex = 81;
+ this.Rastro.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Rastro.UseVisualStyleBackColor = false;
+ //
+ // RastroR
+ //
+ this.RastroR.BackColor = System.Drawing.Color.Transparent;
+ this.RastroR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RastroR.BackgroundImage")));
+ this.RastroR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RastroR.FlatAppearance.BorderSize = 0;
+ this.RastroR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RastroR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroR.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RastroR.FunkeyID = "0000011B";
+ this.RastroR.Location = new System.Drawing.Point(368, 129);
+ this.RastroR.Name = "RastroR";
+ this.RastroR.Size = new System.Drawing.Size(50, 63);
+ this.RastroR.TabIndex = 82;
+ this.RastroR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RastroR.UseVisualStyleBackColor = false;
+ //
+ // RastroVR
+ //
+ this.RastroVR.BackColor = System.Drawing.Color.Transparent;
+ this.RastroVR.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RastroVR.BackgroundImage")));
+ this.RastroVR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RastroVR.FlatAppearance.BorderSize = 0;
+ this.RastroVR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RastroVR.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroVR.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.RastroVR.FunkeyID = "00000122";
+ this.RastroVR.Location = new System.Drawing.Point(419, 129);
+ this.RastroVR.Name = "RastroVR";
+ this.RastroVR.Size = new System.Drawing.Size(50, 63);
+ this.RastroVR.TabIndex = 83;
+ this.RastroVR.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RastroVR.UseVisualStyleBackColor = false;
+ //
+ // RastroLabel
+ //
+ this.RastroLabel.AutoSize = true;
+ this.RastroLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RastroLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RastroLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RastroLabel.Location = new System.Drawing.Point(350, 97);
+ this.RastroLabel.Name = "RastroLabel";
+ this.RastroLabel.Size = new System.Drawing.Size(100, 29);
+ this.RastroLabel.TabIndex = 84;
+ this.RastroLabel.Text = "RASTRO";
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 14);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 103;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 16);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 104;
+ //
+ // ParadoxGreen
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.AceLabel);
+ this.Controls.Add(this.Ace);
+ this.Controls.Add(this.MulchLabel);
+ this.Controls.Add(this.Mulch);
+ this.Controls.Add(this.TaddLabel);
+ this.Controls.Add(this.TaddVR);
+ this.Controls.Add(this.TaddR);
+ this.Controls.Add(this.Tadd);
+ this.Controls.Add(this.RastroLabel);
+ this.Controls.Add(this.RastroVR);
+ this.Controls.Add(this.RastroR);
+ this.Controls.Add(this.Rastro);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.ParadoxGreenLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "ParadoxGreen";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label AceLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Ace;
+ private System.Windows.Forms.Label MulchLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Mulch;
+ private System.Windows.Forms.Label TaddLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TaddVR;
+ private FunkeySelector.UserControls.FunkeyChangerButton TaddR;
+ private FunkeySelector.UserControls.FunkeyChangerButton Tadd;
+ private System.Windows.Forms.Label ParadoxGreenLabel;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private FunkeySelector.UserControls.FunkeyChangerButton Rastro;
+ private FunkeySelector.UserControls.FunkeyChangerButton RastroR;
+ private FunkeySelector.UserControls.FunkeyChangerButton RastroVR;
+ private System.Windows.Forms.Label RastroLabel;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/ParadoxGreen.cs b/FunkeySelector/ParadoxGreen.cs
new file mode 100644
index 0000000..0abcc3c
--- /dev/null
+++ b/FunkeySelector/ParadoxGreen.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class ParadoxGreen : BasicForm
+ {
+ public ParadoxGreen()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form11.resx b/FunkeySelector/ParadoxGreen.resx
similarity index 99%
rename from FunkeySelector/Form11.resx
rename to FunkeySelector/ParadoxGreen.resx
index d781e0b..94a579d 100644
--- a/FunkeySelector/Form11.resx
+++ b/FunkeySelector/ParadoxGreen.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEz9JREFUaEPtWGl0k+eVVpamDZmSkIQ0kEDAYGMb4wUvyPtuybK8S7KsXbKs1Vqs
@@ -206,7 +206,7 @@
ZMUKysKIsWxxxRM8wRM8wZ8HhfLvaVITYOxDrVIAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE4tJREFUaEPtmQdQVVmaxy85Z8lIjoKCPlEki+QgiDySPEByRgmSRIKARBHECAIK
@@ -295,7 +295,7 @@
aKhOMzbW1NXREdWWlqZUZs3ilqDZU9zk0v8YD3znO/9/oaj/AriFJ8Zrqyb9AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEt9JREFUaEPtmHdQlHmax1/JSFJyDiooqEgyIEqQnCQ0IEkwgEqQnKGb0N10k5qG
@@ -382,7 +382,7 @@
RK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE1tJREFUaEPtV3dUVPeffQIjCKMoVQRs2AAVEQ0WlN4GpLeRXkS6MHSkSxMpSpMi
@@ -471,7 +471,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEhJJREFUaEPtWHdU1eeW/RCQ3kQERLErmliidCygdKT33nu99HbpVXovV7oIAgIC
@@ -554,7 +554,7 @@
+kED5qDF2Ebhz1/jNV7jDwVj/wHwt2p5V+TFGAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEyJJREFUaEPtmWdUVle3hY9BRRGU3ouKNaAQjSVqNNgLNspL7wLy0pGidASVIiio
@@ -642,7 +642,7 @@
AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE9hJREFUaEPtmXdUVFe7xieJBUTFXmOJBhV7QcWCYMFCbyJ1GNowDEMvQ+9dFFAs
@@ -733,7 +733,7 @@
BpEAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAE0BJREFUaEPtWXl0k3W6TtpsTZomaelOF7olaZqlWZu0aZI23dOF7vvepvtOoaUL
diff --git a/FunkeySelector/Program.cs b/FunkeySelector/Program.cs
index cb35761..a31d8a1 100644
--- a/FunkeySelector/Program.cs
+++ b/FunkeySelector/Program.cs
@@ -17,18 +17,16 @@ static class Program
[STAThread]
static void Main(string[] args)
{
- CustomFManager customF = new CustomFManager();
- if (args != null && args.Length > 0) //If there's an argument in the execution.
+ // If called with an argument
+ if (args != null && args.Length > 0)
{
- string funkeyCodeNum = args[0];
- customF.SetFunkey(funkeyCodeNum);
- }
- else
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
+ CustomF.SetFunkey(args[0]);
+ return;
}
+
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
}
}
}
diff --git a/FunkeySelector/RoyaltonRacingComplex.Designer.cs b/FunkeySelector/RoyaltonRacingComplex.Designer.cs
new file mode 100644
index 0000000..7e33847
--- /dev/null
+++ b/FunkeySelector/RoyaltonRacingComplex.Designer.cs
@@ -0,0 +1,391 @@
+namespace FunkeySelector
+{
+ partial class RoyaltonRacingComplex
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoyaltonRacingComplex));
+ this.SnakeOilerLabel = new System.Windows.Forms.Label();
+ this.SnakeOiler = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TrixieLabel = new System.Windows.Forms.Label();
+ this.Trixie = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.CannonballTaylorLabel = new System.Windows.Forms.Label();
+ this.CannonballTaylor = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.RacerXLabel = new System.Windows.Forms.Label();
+ this.RacerX = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.RoyaltonRacingComplexLabel = new System.Windows.Forms.Label();
+ this.TaejoLabel = new System.Windows.Forms.Label();
+ this.Taejo = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SpeedRacerPinballLabel = new System.Windows.Forms.Label();
+ this.SpeedRacerPinball = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.ChimChimLabel = new System.Windows.Forms.Label();
+ this.ChimChim = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.SpeedRacerLabel = new System.Windows.Forms.Label();
+ this.SpeedRacer = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // SnakeOilerLabel
+ //
+ this.SnakeOilerLabel.AutoSize = true;
+ this.SnakeOilerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SnakeOilerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnakeOilerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SnakeOilerLabel.Location = new System.Drawing.Point(152, 436);
+ this.SnakeOilerLabel.Name = "SnakeOilerLabel";
+ this.SnakeOilerLabel.Size = new System.Drawing.Size(158, 29);
+ this.SnakeOilerLabel.TabIndex = 74;
+ this.SnakeOilerLabel.Text = "SNAKE OILER";
+ //
+ // SnakeOiler
+ //
+ this.SnakeOiler.BackColor = System.Drawing.Color.Transparent;
+ this.SnakeOiler.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SnakeOiler.BackgroundImage")));
+ this.SnakeOiler.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SnakeOiler.FlatAppearance.BorderSize = 0;
+ this.SnakeOiler.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SnakeOiler.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SnakeOiler.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SnakeOiler.FunkeyID = "0000008C";
+ this.SnakeOiler.Location = new System.Drawing.Point(205, 471);
+ this.SnakeOiler.Name = "SnakeOiler";
+ this.SnakeOiler.Size = new System.Drawing.Size(50, 63);
+ this.SnakeOiler.TabIndex = 72;
+ this.SnakeOiler.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SnakeOiler.UseVisualStyleBackColor = false;
+ //
+ // TrixieLabel
+ //
+ this.TrixieLabel.AutoSize = true;
+ this.TrixieLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TrixieLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TrixieLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TrixieLabel.Location = new System.Drawing.Point(187, 222);
+ this.TrixieLabel.Name = "TrixieLabel";
+ this.TrixieLabel.Size = new System.Drawing.Size(90, 29);
+ this.TrixieLabel.TabIndex = 70;
+ this.TrixieLabel.Text = "TRIXIE";
+ //
+ // Trixie
+ //
+ this.Trixie.BackColor = System.Drawing.Color.Transparent;
+ this.Trixie.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Trixie.BackgroundImage")));
+ this.Trixie.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Trixie.FlatAppearance.BorderSize = 0;
+ this.Trixie.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Trixie.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Trixie.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Trixie.FunkeyID = "00000083";
+ this.Trixie.Location = new System.Drawing.Point(205, 260);
+ this.Trixie.Name = "Trixie";
+ this.Trixie.Size = new System.Drawing.Size(50, 63);
+ this.Trixie.TabIndex = 68;
+ this.Trixie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Trixie.UseVisualStyleBackColor = false;
+ //
+ // CannonballTaylorLabel
+ //
+ this.CannonballTaylorLabel.AutoSize = true;
+ this.CannonballTaylorLabel.BackColor = System.Drawing.Color.Transparent;
+ this.CannonballTaylorLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CannonballTaylorLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.CannonballTaylorLabel.Location = new System.Drawing.Point(113, 329);
+ this.CannonballTaylorLabel.Name = "CannonballTaylorLabel";
+ this.CannonballTaylorLabel.Size = new System.Drawing.Size(251, 29);
+ this.CannonballTaylorLabel.TabIndex = 66;
+ this.CannonballTaylorLabel.Text = "CANNONBALL TAYLOR";
+ //
+ // CannonballTaylor
+ //
+ this.CannonballTaylor.BackColor = System.Drawing.Color.Transparent;
+ this.CannonballTaylor.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("CannonballTaylor.BackgroundImage")));
+ this.CannonballTaylor.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.CannonballTaylor.FlatAppearance.BorderSize = 0;
+ this.CannonballTaylor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.CannonballTaylor.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.CannonballTaylor.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.CannonballTaylor.FunkeyID = "00000088";
+ this.CannonballTaylor.Location = new System.Drawing.Point(205, 363);
+ this.CannonballTaylor.Name = "CannonballTaylor";
+ this.CannonballTaylor.Size = new System.Drawing.Size(50, 63);
+ this.CannonballTaylor.TabIndex = 64;
+ this.CannonballTaylor.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.CannonballTaylor.UseVisualStyleBackColor = false;
+ //
+ // RacerXLabel
+ //
+ this.RacerXLabel.AutoSize = true;
+ this.RacerXLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RacerXLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RacerXLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RacerXLabel.Location = new System.Drawing.Point(184, 102);
+ this.RacerXLabel.Name = "RacerXLabel";
+ this.RacerXLabel.Size = new System.Drawing.Size(101, 29);
+ this.RacerXLabel.TabIndex = 62;
+ this.RacerXLabel.Text = "RACER X";
+ //
+ // RacerX
+ //
+ this.RacerX.BackColor = System.Drawing.Color.Transparent;
+ this.RacerX.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RacerX.BackgroundImage")));
+ this.RacerX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.RacerX.FlatAppearance.BorderSize = 0;
+ this.RacerX.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.RacerX.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RacerX.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.RacerX.FunkeyID = "0000005F";
+ this.RacerX.Location = new System.Drawing.Point(205, 142);
+ this.RacerX.Name = "RacerX";
+ this.RacerX.Size = new System.Drawing.Size(50, 63);
+ this.RacerX.TabIndex = 60;
+ this.RacerX.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.RacerX.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 58;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // RoyaltonRacingComplexLabel
+ //
+ this.RoyaltonRacingComplexLabel.AutoSize = true;
+ this.RoyaltonRacingComplexLabel.BackColor = System.Drawing.Color.Transparent;
+ this.RoyaltonRacingComplexLabel.Font = new System.Drawing.Font("Comic Sans MS", 21.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.RoyaltonRacingComplexLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.RoyaltonRacingComplexLabel.Location = new System.Drawing.Point(150, 20);
+ this.RoyaltonRacingComplexLabel.Name = "RoyaltonRacingComplexLabel";
+ this.RoyaltonRacingComplexLabel.Size = new System.Drawing.Size(449, 41);
+ this.RoyaltonRacingComplexLabel.TabIndex = 57;
+ this.RoyaltonRacingComplexLabel.Text = "ROYALTON RACING COMPLEX";
+ //
+ // TaejoLabel
+ //
+ this.TaejoLabel.AutoSize = true;
+ this.TaejoLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TaejoLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TaejoLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TaejoLabel.Location = new System.Drawing.Point(463, 435);
+ this.TaejoLabel.Name = "TaejoLabel";
+ this.TaejoLabel.Size = new System.Drawing.Size(86, 29);
+ this.TaejoLabel.TabIndex = 82;
+ this.TaejoLabel.Text = "TAEJO";
+ //
+ // Taejo
+ //
+ this.Taejo.BackColor = System.Drawing.Color.Transparent;
+ this.Taejo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Taejo.BackgroundImage")));
+ this.Taejo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Taejo.FlatAppearance.BorderSize = 0;
+ this.Taejo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Taejo.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Taejo.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Taejo.FunkeyID = "00000094";
+ this.Taejo.Location = new System.Drawing.Point(479, 471);
+ this.Taejo.Name = "Taejo";
+ this.Taejo.Size = new System.Drawing.Size(50, 63);
+ this.Taejo.TabIndex = 81;
+ this.Taejo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Taejo.UseVisualStyleBackColor = false;
+ //
+ // SpeedRacerPinballLabel
+ //
+ this.SpeedRacerPinballLabel.AutoSize = true;
+ this.SpeedRacerPinballLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerPinballLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerPinballLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SpeedRacerPinballLabel.Location = new System.Drawing.Point(374, 219);
+ this.SpeedRacerPinballLabel.Name = "SpeedRacerPinballLabel";
+ this.SpeedRacerPinballLabel.Size = new System.Drawing.Size(266, 29);
+ this.SpeedRacerPinballLabel.TabIndex = 80;
+ this.SpeedRacerPinballLabel.Text = "SPEED RACER (PINBALL)";
+ //
+ // SpeedRacerPinball
+ //
+ this.SpeedRacerPinball.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerPinball.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SpeedRacerPinball.BackgroundImage")));
+ this.SpeedRacerPinball.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SpeedRacerPinball.FlatAppearance.BorderSize = 0;
+ this.SpeedRacerPinball.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SpeedRacerPinball.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerPinball.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SpeedRacerPinball.FunkeyID = "00000095";
+ this.SpeedRacerPinball.Location = new System.Drawing.Point(479, 260);
+ this.SpeedRacerPinball.Name = "SpeedRacerPinball";
+ this.SpeedRacerPinball.Size = new System.Drawing.Size(50, 63);
+ this.SpeedRacerPinball.TabIndex = 79;
+ this.SpeedRacerPinball.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SpeedRacerPinball.UseVisualStyleBackColor = false;
+ //
+ // ChimChimLabel
+ //
+ this.ChimChimLabel.AutoSize = true;
+ this.ChimChimLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ChimChimLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ChimChimLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ChimChimLabel.Location = new System.Drawing.Point(434, 329);
+ this.ChimChimLabel.Name = "ChimChimLabel";
+ this.ChimChimLabel.Size = new System.Drawing.Size(140, 29);
+ this.ChimChimLabel.TabIndex = 78;
+ this.ChimChimLabel.Text = "CHIM-CHIM";
+ //
+ // ChimChim
+ //
+ this.ChimChim.BackColor = System.Drawing.Color.Transparent;
+ this.ChimChim.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ChimChim.BackgroundImage")));
+ this.ChimChim.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.ChimChim.FlatAppearance.BorderSize = 0;
+ this.ChimChim.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.ChimChim.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ChimChim.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.ChimChim.FunkeyID = "00000096";
+ this.ChimChim.Location = new System.Drawing.Point(479, 363);
+ this.ChimChim.Name = "ChimChim";
+ this.ChimChim.Size = new System.Drawing.Size(50, 63);
+ this.ChimChim.TabIndex = 77;
+ this.ChimChim.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.ChimChim.UseVisualStyleBackColor = false;
+ //
+ // SpeedRacerLabel
+ //
+ this.SpeedRacerLabel.AutoSize = true;
+ this.SpeedRacerLabel.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacerLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacerLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.SpeedRacerLabel.Location = new System.Drawing.Point(431, 102);
+ this.SpeedRacerLabel.Name = "SpeedRacerLabel";
+ this.SpeedRacerLabel.Size = new System.Drawing.Size(153, 29);
+ this.SpeedRacerLabel.TabIndex = 76;
+ this.SpeedRacerLabel.Text = "SPEED RACER";
+ //
+ // SpeedRacer
+ //
+ this.SpeedRacer.BackColor = System.Drawing.Color.Transparent;
+ this.SpeedRacer.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("SpeedRacer.BackgroundImage")));
+ this.SpeedRacer.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.SpeedRacer.FlatAppearance.BorderSize = 0;
+ this.SpeedRacer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.SpeedRacer.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.SpeedRacer.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.SpeedRacer.FunkeyID = "00000093";
+ this.SpeedRacer.Location = new System.Drawing.Point(479, 142);
+ this.SpeedRacer.Name = "SpeedRacer";
+ this.SpeedRacer.Size = new System.Drawing.Size(50, 63);
+ this.SpeedRacer.TabIndex = 75;
+ this.SpeedRacer.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.SpeedRacer.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 91;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 92;
+ //
+ // RoyaltonRacingComplex
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.TaejoLabel);
+ this.Controls.Add(this.Taejo);
+ this.Controls.Add(this.SpeedRacerPinballLabel);
+ this.Controls.Add(this.SpeedRacerPinball);
+ this.Controls.Add(this.ChimChimLabel);
+ this.Controls.Add(this.ChimChim);
+ this.Controls.Add(this.SpeedRacerLabel);
+ this.Controls.Add(this.SpeedRacer);
+ this.Controls.Add(this.SnakeOilerLabel);
+ this.Controls.Add(this.SnakeOiler);
+ this.Controls.Add(this.TrixieLabel);
+ this.Controls.Add(this.Trixie);
+ this.Controls.Add(this.CannonballTaylorLabel);
+ this.Controls.Add(this.CannonballTaylor);
+ this.Controls.Add(this.RacerXLabel);
+ this.Controls.Add(this.RacerX);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.RoyaltonRacingComplexLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "RoyaltonRacingComplex";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label SnakeOilerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SnakeOiler;
+ private System.Windows.Forms.Label TrixieLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Trixie;
+ private System.Windows.Forms.Label CannonballTaylorLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton CannonballTaylor;
+ private System.Windows.Forms.Label RacerXLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton RacerX;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label RoyaltonRacingComplexLabel;
+ private System.Windows.Forms.Label TaejoLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Taejo;
+ private System.Windows.Forms.Label SpeedRacerPinballLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SpeedRacerPinball;
+ private System.Windows.Forms.Label ChimChimLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton ChimChim;
+ private System.Windows.Forms.Label SpeedRacerLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton SpeedRacer;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/RoyaltonRacingComplex.cs b/FunkeySelector/RoyaltonRacingComplex.cs
new file mode 100644
index 0000000..3f77c54
--- /dev/null
+++ b/FunkeySelector/RoyaltonRacingComplex.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class RoyaltonRacingComplex : BasicForm
+ {
+ public RoyaltonRacingComplex()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form7.resx b/FunkeySelector/RoyaltonRacingComplex.resx
similarity index 99%
rename from FunkeySelector/Form7.resx
rename to FunkeySelector/RoyaltonRacingComplex.resx
index fc478b0..cc6e26c 100644
--- a/FunkeySelector/Form7.resx
+++ b/FunkeySelector/RoyaltonRacingComplex.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdNJREFUaEPtWXl0lOW9/ohZJ8tsmX3f933JPpPJTCbJhJCdJCSB7AtJkNUQEUlY
@@ -200,7 +200,7 @@
8vdJ6ru4i7u4i7v45sEw/wtmg+zrKmoCGgAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEZJJREFUaEPtWGlQVGmWTZFF2ZLcNzKTTMgEkn1fRUAEEQGBEmTVBGQRARFEUQQX
@@ -281,7 +281,7 @@
Hd7hHd7h/yM4nP8GNtK8n0sgG8EAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEclJREFUaEPtmFdwnPd1xSHZckRTYgFJkAAIkiAK0Xvvu+iLRVss6gJYdCzqoi2A
@@ -363,7 +363,7 @@
4I8IB4f/AUGRWQMVO5t6AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAENVJREFUaEPtWHl0k2W+7lyvVwXa0lK6J23SpGnSNG2WNkmTNmma7mu67/u+LxQo
@@ -441,7 +441,7 @@
Ln8HdhgCdtkA8HMAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEPdJREFUaEPtWWdYVNfaHdoAQxt6G+m9RogFMVY0GhMjaoyKioBSpPc+lKF3EEQs
@@ -519,7 +519,7 @@
Kb5xaSmeYYWZfj45GR7zSkqm2jU2cmgD/AZv8AZv8P8PHM7/ANFDJKrmgN+2AAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEdRJREFUaEPtmXd0lOeVxpWNU2wn2LEBgWOD7dg4sZONWTvrzdrYjoOdBDvY2AZT
@@ -601,7 +601,7 @@
5OY2zHX7AzzAAzzA/zu4uf0HrYW6UMng3ycAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEhJJREFUaEPtWHdQm3eaVjZ919k4sR0bx44rbhTTmwQIEAIkJCSBAElICFGEEEgC
@@ -684,7 +684,7 @@
cevzvt6vPcADPMADPMD/VzAY/wX3RPeB1ri21gAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAEiNJREFUaEPtmHdYlGe6xtk9u2c3a/ZkNWhi142R6GrU2GLWXWOJJdgFRXrvMEMb
diff --git a/FunkeySelector/UnusedFunkeys.Designer.cs b/FunkeySelector/UnusedFunkeys.Designer.cs
new file mode 100644
index 0000000..cc4cad2
--- /dev/null
+++ b/FunkeySelector/UnusedFunkeys.Designer.cs
@@ -0,0 +1,365 @@
+namespace FunkeySelector
+{
+ partial class UnusedFunkeys
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UnusedFunkeys));
+ this.TachLabel = new System.Windows.Forms.Label();
+ this.TachRed = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TachYellow = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.TachBlue = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.backButton = new FunkeySelector.UserControls.ChangeFormButton();
+ this.UnusedFunkeysLabel = new System.Windows.Forms.Label();
+ this.ConLabel = new System.Windows.Forms.Label();
+ this.Con = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmenLabel = new System.Windows.Forms.Label();
+ this.HenchmanBlue = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanGreen = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.HenchmanPurple = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.DaliLabel = new System.Windows.Forms.Label();
+ this.Dali = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.GoyaLabel = new System.Windows.Forms.Label();
+ this.Goya = new FunkeySelector.UserControls.FunkeyChangerButton();
+ this.minimizeButton = new FunkeySelector.UserControls.MinimizeButton();
+ this.closeButton = new FunkeySelector.UserControls.CloseButton();
+ this.SuspendLayout();
+ //
+ // TachLabel
+ //
+ this.TachLabel.AutoSize = true;
+ this.TachLabel.BackColor = System.Drawing.Color.Transparent;
+ this.TachLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.TachLabel.Location = new System.Drawing.Point(330, 74);
+ this.TachLabel.Name = "TachLabel";
+ this.TachLabel.Size = new System.Drawing.Size(71, 29);
+ this.TachLabel.TabIndex = 90;
+ this.TachLabel.Text = "TACH";
+ //
+ // TachRed
+ //
+ this.TachRed.BackColor = System.Drawing.Color.Transparent;
+ this.TachRed.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachRed.BackgroundImage")));
+ this.TachRed.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachRed.FlatAppearance.BorderSize = 0;
+ this.TachRed.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachRed.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachRed.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.TachRed.FunkeyID = "T0000003";
+ this.TachRed.Location = new System.Drawing.Point(394, 103);
+ this.TachRed.Name = "TachRed";
+ this.TachRed.Size = new System.Drawing.Size(50, 63);
+ this.TachRed.TabIndex = 89;
+ this.TachRed.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachRed.UseVisualStyleBackColor = false;
+ //
+ // TachYellow
+ //
+ this.TachYellow.BackColor = System.Drawing.Color.Transparent;
+ this.TachYellow.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachYellow.BackgroundImage")));
+ this.TachYellow.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachYellow.FlatAppearance.BorderSize = 0;
+ this.TachYellow.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachYellow.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachYellow.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.TachYellow.FunkeyID = "T0000002";
+ this.TachYellow.Location = new System.Drawing.Point(342, 103);
+ this.TachYellow.Name = "TachYellow";
+ this.TachYellow.Size = new System.Drawing.Size(50, 63);
+ this.TachYellow.TabIndex = 88;
+ this.TachYellow.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachYellow.UseVisualStyleBackColor = false;
+ //
+ // TachBlue
+ //
+ this.TachBlue.BackColor = System.Drawing.Color.Transparent;
+ this.TachBlue.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TachBlue.BackgroundImage")));
+ this.TachBlue.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.TachBlue.FlatAppearance.BorderSize = 0;
+ this.TachBlue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.TachBlue.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.TachBlue.ForeColor = System.Drawing.Color.Transparent;
+ this.TachBlue.FunkeyID = "T0000001";
+ this.TachBlue.Location = new System.Drawing.Point(291, 103);
+ this.TachBlue.Name = "TachBlue";
+ this.TachBlue.Size = new System.Drawing.Size(50, 63);
+ this.TachBlue.TabIndex = 87;
+ this.TachBlue.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.TachBlue.UseVisualStyleBackColor = false;
+ //
+ // backButton
+ //
+ this.backButton.BackColor = System.Drawing.Color.Transparent;
+ this.backButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.backButton.FlatAppearance.BorderSize = 0;
+ this.backButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.backButton.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.backButton.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.backButton.FormToOpen = "Form1";
+ this.backButton.KeepCurrentForm = false;
+ this.backButton.Location = new System.Drawing.Point(12, 12);
+ this.backButton.Name = "backButton";
+ this.backButton.Size = new System.Drawing.Size(101, 48);
+ this.backButton.TabIndex = 86;
+ this.backButton.Text = "BACK";
+ this.backButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.backButton.UseVisualStyleBackColor = false;
+ //
+ // UnusedFunkeysLabel
+ //
+ this.UnusedFunkeysLabel.AutoSize = true;
+ this.UnusedFunkeysLabel.BackColor = System.Drawing.Color.Transparent;
+ this.UnusedFunkeysLabel.Font = new System.Drawing.Font("Comic Sans MS", 27.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.UnusedFunkeysLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.UnusedFunkeysLabel.Location = new System.Drawing.Point(185, 13);
+ this.UnusedFunkeysLabel.Name = "UnusedFunkeysLabel";
+ this.UnusedFunkeysLabel.Size = new System.Drawing.Size(367, 52);
+ this.UnusedFunkeysLabel.TabIndex = 85;
+ this.UnusedFunkeysLabel.Text = "UNUSED FUNKEYS";
+ //
+ // ConLabel
+ //
+ this.ConLabel.AutoSize = true;
+ this.ConLabel.BackColor = System.Drawing.Color.Transparent;
+ this.ConLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.ConLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.ConLabel.Location = new System.Drawing.Point(338, 184);
+ this.ConLabel.Name = "ConLabel";
+ this.ConLabel.Size = new System.Drawing.Size(60, 29);
+ this.ConLabel.TabIndex = 92;
+ this.ConLabel.Text = "CON";
+ //
+ // Con
+ //
+ this.Con.BackColor = System.Drawing.Color.Transparent;
+ this.Con.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Con.BackgroundImage")));
+ this.Con.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Con.FlatAppearance.BorderSize = 0;
+ this.Con.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Con.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Con.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Con.FunkeyID = "S0000001";
+ this.Con.Location = new System.Drawing.Point(341, 205);
+ this.Con.Name = "Con";
+ this.Con.Size = new System.Drawing.Size(50, 63);
+ this.Con.TabIndex = 91;
+ this.Con.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Con.UseVisualStyleBackColor = false;
+ //
+ // HenchmenLabel
+ //
+ this.HenchmenLabel.AutoSize = true;
+ this.HenchmenLabel.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmenLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmenLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.HenchmenLabel.Location = new System.Drawing.Point(301, 279);
+ this.HenchmenLabel.Name = "HenchmenLabel";
+ this.HenchmenLabel.Size = new System.Drawing.Size(137, 29);
+ this.HenchmenLabel.TabIndex = 96;
+ this.HenchmenLabel.Text = "HENCHMEN";
+ //
+ // HenchmanBlue
+ //
+ this.HenchmanBlue.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanBlue.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanBlue.BackgroundImage")));
+ this.HenchmanBlue.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanBlue.FlatAppearance.BorderSize = 0;
+ this.HenchmanBlue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanBlue.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanBlue.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.HenchmanBlue.FunkeyID = "h0000004";
+ this.HenchmanBlue.Location = new System.Drawing.Point(394, 313);
+ this.HenchmanBlue.Name = "HenchmanBlue";
+ this.HenchmanBlue.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanBlue.TabIndex = 95;
+ this.HenchmanBlue.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanBlue.UseVisualStyleBackColor = false;
+ //
+ // HenchmanGreen
+ //
+ this.HenchmanGreen.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanGreen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanGreen.BackgroundImage")));
+ this.HenchmanGreen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanGreen.FlatAppearance.BorderSize = 0;
+ this.HenchmanGreen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanGreen.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanGreen.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.HenchmanGreen.FunkeyID = "h0000003";
+ this.HenchmanGreen.Location = new System.Drawing.Point(342, 313);
+ this.HenchmanGreen.Name = "HenchmanGreen";
+ this.HenchmanGreen.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanGreen.TabIndex = 94;
+ this.HenchmanGreen.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanGreen.UseVisualStyleBackColor = false;
+ //
+ // HenchmanPurple
+ //
+ this.HenchmanPurple.BackColor = System.Drawing.Color.Transparent;
+ this.HenchmanPurple.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("HenchmanPurple.BackgroundImage")));
+ this.HenchmanPurple.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.HenchmanPurple.FlatAppearance.BorderSize = 0;
+ this.HenchmanPurple.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.HenchmanPurple.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.HenchmanPurple.ForeColor = System.Drawing.Color.Transparent;
+ this.HenchmanPurple.FunkeyID = "h0000001";
+ this.HenchmanPurple.Location = new System.Drawing.Point(291, 313);
+ this.HenchmanPurple.Name = "HenchmanPurple";
+ this.HenchmanPurple.Size = new System.Drawing.Size(50, 63);
+ this.HenchmanPurple.TabIndex = 93;
+ this.HenchmanPurple.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.HenchmanPurple.UseVisualStyleBackColor = false;
+ //
+ // DaliLabel
+ //
+ this.DaliLabel.AutoSize = true;
+ this.DaliLabel.BackColor = System.Drawing.Color.Transparent;
+ this.DaliLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.DaliLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.DaliLabel.Location = new System.Drawing.Point(337, 381);
+ this.DaliLabel.Name = "DaliLabel";
+ this.DaliLabel.Size = new System.Drawing.Size(66, 29);
+ this.DaliLabel.TabIndex = 100;
+ this.DaliLabel.Text = "DALI";
+ //
+ // Dali
+ //
+ this.Dali.BackColor = System.Drawing.Color.Transparent;
+ this.Dali.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Dali.BackgroundImage")));
+ this.Dali.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Dali.FlatAppearance.BorderSize = 0;
+ this.Dali.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Dali.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Dali.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Dali.FunkeyID = "h0000007";
+ this.Dali.Location = new System.Drawing.Point(342, 400);
+ this.Dali.Name = "Dali";
+ this.Dali.Size = new System.Drawing.Size(50, 63);
+ this.Dali.TabIndex = 98;
+ this.Dali.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Dali.UseVisualStyleBackColor = false;
+ //
+ // GoyaLabel
+ //
+ this.GoyaLabel.AutoSize = true;
+ this.GoyaLabel.BackColor = System.Drawing.Color.Transparent;
+ this.GoyaLabel.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.GoyaLabel.ForeColor = System.Drawing.SystemColors.Control;
+ this.GoyaLabel.Location = new System.Drawing.Point(335, 465);
+ this.GoyaLabel.Name = "GoyaLabel";
+ this.GoyaLabel.Size = new System.Drawing.Size(72, 29);
+ this.GoyaLabel.TabIndex = 102;
+ this.GoyaLabel.Text = "GOYA";
+ //
+ // Goya
+ //
+ this.Goya.BackColor = System.Drawing.Color.Transparent;
+ this.Goya.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Goya.BackgroundImage")));
+ this.Goya.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.Goya.FlatAppearance.BorderSize = 0;
+ this.Goya.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Goya.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.Goya.ForeColor = System.Drawing.SystemColors.ControlLight;
+ this.Goya.FunkeyID = "h0000006";
+ this.Goya.Location = new System.Drawing.Point(344, 480);
+ this.Goya.Name = "Goya";
+ this.Goya.Size = new System.Drawing.Size(50, 63);
+ this.Goya.TabIndex = 101;
+ this.Goya.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.Goya.UseVisualStyleBackColor = false;
+ //
+ // minimizeButton
+ //
+ this.minimizeButton.Location = new System.Drawing.Point(642, 15);
+ this.minimizeButton.Name = "minimizeButton";
+ this.minimizeButton.Size = new System.Drawing.Size(26, 22);
+ this.minimizeButton.TabIndex = 104;
+ //
+ // closeButton
+ //
+ this.closeButton.Location = new System.Drawing.Point(681, 17);
+ this.closeButton.Name = "closeButton";
+ this.closeButton.Size = new System.Drawing.Size(26, 20);
+ this.closeButton.TabIndex = 105;
+ //
+ // UnusedFunkeys
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Gold;
+ this.BackgroundImage = global::FunkeySelector.Properties.Resources._2432;
+ this.ClientSize = new System.Drawing.Size(726, 566);
+ this.Controls.Add(this.closeButton);
+ this.Controls.Add(this.minimizeButton);
+ this.Controls.Add(this.GoyaLabel);
+ this.Controls.Add(this.Goya);
+ this.Controls.Add(this.DaliLabel);
+ this.Controls.Add(this.Dali);
+ this.Controls.Add(this.HenchmenLabel);
+ this.Controls.Add(this.HenchmanBlue);
+ this.Controls.Add(this.HenchmanGreen);
+ this.Controls.Add(this.HenchmanPurple);
+ this.Controls.Add(this.ConLabel);
+ this.Controls.Add(this.Con);
+ this.Controls.Add(this.TachLabel);
+ this.Controls.Add(this.TachRed);
+ this.Controls.Add(this.TachYellow);
+ this.Controls.Add(this.TachBlue);
+ this.Controls.Add(this.backButton);
+ this.Controls.Add(this.UnusedFunkeysLabel);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "UnusedFunkeys";
+ this.Text = "FunkeySelectorGUI";
+ this.TransparencyKey = System.Drawing.Color.Gold;
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label TachLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachRed;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachYellow;
+ private FunkeySelector.UserControls.FunkeyChangerButton TachBlue;
+ private FunkeySelector.UserControls.ChangeFormButton backButton;
+ private System.Windows.Forms.Label UnusedFunkeysLabel;
+ private System.Windows.Forms.Label ConLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Con;
+ private System.Windows.Forms.Label HenchmenLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanBlue;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanGreen;
+ private FunkeySelector.UserControls.FunkeyChangerButton HenchmanPurple;
+ private System.Windows.Forms.Label DaliLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Dali;
+ private System.Windows.Forms.Label GoyaLabel;
+ private FunkeySelector.UserControls.FunkeyChangerButton Goya;
+ private UserControls.MinimizeButton minimizeButton;
+ private UserControls.CloseButton closeButton;
+ }
+}
\ No newline at end of file
diff --git a/FunkeySelector/UnusedFunkeys.cs b/FunkeySelector/UnusedFunkeys.cs
new file mode 100644
index 0000000..10f78ed
--- /dev/null
+++ b/FunkeySelector/UnusedFunkeys.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Diagnostics;
+using System.Drawing;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using FunkeySelector.UserControls;
+
+namespace FunkeySelector
+{
+ public partial class UnusedFunkeys : BasicForm
+ {
+ public UnusedFunkeys()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/FunkeySelector/Form12.resx b/FunkeySelector/UnusedFunkeys.resx
similarity index 99%
rename from FunkeySelector/Form12.resx
rename to FunkeySelector/UnusedFunkeys.resx
index 8993aa8..1676ffe 100644
--- a/FunkeySelector/Form12.resx
+++ b/FunkeySelector/UnusedFunkeys.resx
@@ -118,7 +118,7 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHfBJREFUaEPV
egdUVWca7bXF3rDGFDNG46hRVEQF6b0jvYPSe++9V0FFEZEm9oKIvWvU2MeYmEk3MRM1kxij6UWF/fZ3
@@ -251,7 +251,7 @@
qJ+bm05/a2vrvqFaWv8quNVk1fGphhB/+rVshprMf5mQSvU/AM56pWCnXVXjAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHkJJREFUaEPV
mgdUVWfe7k+i0ZgykxhnJjGJ3ZjYFRApAtKkCSJFepXeewdBpBcBAUFEBURFLIC9lyTWmBiTmEmMKWpi
@@ -386,7 +386,7 @@
Uag88DbDiwAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAABGdBTUEAALGPC/xhBQAAHlhJREFUaEPV
egd0lWW69UdCFRsIKCII2BAQCEkI6YX03k4K6b333nvvjYSQkIQU0iuhhhRACM0CCOrFMrbRGR3HNiNg
@@ -521,7 +521,7 @@
m5CSleanFEz8/td8GFIyfzAhQfhPyF5Aap1by9MAAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEk9JREFUaEPt
WmlQ2+ed1rSbtDltDL6wOQwYkLjPgEAH4hD3JcQtxA0CCZAQAkkIgSSEBOIGc58GjLlsQnzGiZM6aZ1k
@@ -605,7 +605,7 @@
l6htGNGXoe0AAAAASUVORK5CYII=
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEE9JREFUaEPt
WndM22maRlrdanS72tXsJDTTe+iE0EILvYaSSYBQEhIILfReY8Bggw0mxhRjcAXbYDDNdEidzGg12r22
@@ -680,7 +680,7 @@
t/w/wR7etdr81/esfvnL77O/+Q7f4X8FK6t/B5VwszzGMMJhAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAENxJREFUaEPt
WnlM22l6trSz3e7OzmSzyXCfNvcZ7vsKBAg3ISRg7jNAuMHYnMYGzGlzHz44jAGDMfdNIJlkMp1VNWo7
@@ -758,7 +758,7 @@
AElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADgAAAA/CAYAAAC1gwumAAAABGdBTUEAALGPC/xhBQAAEMdJREFUaEPt
WnlMm3l6Rqq6u5rt7DQX930HwhUgJNyHuQ9DgHAfDuG+b3OYw9wYsAFjbC5jDhtsbnNDQhKyuzPTTlfp
@@ -835,7 +835,7 @@
z9S6fJn8iUWWjvPFl9V7vMd7vMd7/L9BR+e/AfR0yoNqpHcOAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
EgAACxIB0t1+/AAAD61JREFUaEPtmXdUVWe6xjeiCAjSO1Kkgxx6OyBSBA4g9UiXoiAIKBYQARWQqoKC
@@ -908,7 +908,7 @@
gn85SNJ/AiK8U5qBatHsAAAAAElFTkSuQmCC
-
+
iVBORw0KGgoAAAANSUhEUgAAAEcAAABDCAYAAADOIRgJAAAABGdBTUEAALGPC/xhBQAAEaBJREFUeF7t
mglUU9e6x1mrr31drvfeXV3vdrhOra1TcSrFqWqtWqfWilUEBEEBIZBACJlDQkiYMwIhJBAIgTCFIRAm
diff --git a/FunkeySelector/UserControls/BasicForm.cs b/FunkeySelector/UserControls/BasicForm.cs
new file mode 100644
index 0000000..651ded8
--- /dev/null
+++ b/FunkeySelector/UserControls/BasicForm.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Windows.Forms;
+
+namespace FunkeySelector.UserControls
+{
+ public class BasicForm : Form
+ {
+ protected override void WndProc(ref Message message)
+ {
+ base.WndProc(ref message);
+
+ // Allows the window to be dragged.
+ if (message.Msg == 0x84 && (int)message.Result == 0x1)
+ {
+ message.Result = (IntPtr)0x2;
+ }
+ }
+ }
+}
diff --git a/FunkeySelector/UserControls/ChangeFormButton.cs b/FunkeySelector/UserControls/ChangeFormButton.cs
new file mode 100644
index 0000000..1d6725f
--- /dev/null
+++ b/FunkeySelector/UserControls/ChangeFormButton.cs
@@ -0,0 +1,70 @@
+using System;
+using System.Linq;
+using System.Reflection;
+using System.Windows.Forms;
+using System.ComponentModel;
+
+namespace FunkeySelector.UserControls
+{
+ class ChangeFormButton : Button
+ {
+ [
+ Category("Behavior"),
+ Description("The form to open when clicked.")
+ ]
+ public string FormToOpen { get; set; } = "Form1";
+
+ [
+ Category("Behavior"),
+ Description("Whether to keep this form opened.")
+ ]
+ public bool KeepCurrentForm { get; set; } = false;
+
+ public ChangeFormButton()
+ {
+ this.Click += new EventHandler(OnClick);
+ }
+
+ private void OnClick(object sender, EventArgs e)
+ {
+ ChangeForm();
+ }
+
+ private (string formName, bool keepCurrentForm) ParseParameters()
+ {
+ if (Tag is not string unparsedTag) throw new Exception("frick you (translation from fricks: ChangeFormButton.Tag should be a string)"); // That word isn't know in Terrapinia :)
+
+ string[] parameters = unparsedTag.Split(new string[] { "; " }, StringSplitOptions.None);
+ string formName = parameters[0];
+ bool keepCurrentForm = parameters.Length > 1 && parameters[1].ToLower() == "true";
+ return (formName, keepCurrentForm);
+ }
+
+ public void ChangeForm()
+ {
+ Form zoneForm = GetClassInstance
CustomFunkeys.cs
+ Designer
Options.cs
@@ -248,6 +255,9 @@
CloseButton.cs
+
+ Helpbutton.cs
+
MinimizeButton.cs
@@ -273,6 +283,9 @@
+
+
+
diff --git a/FunkeySelector/Properties/Resources.Designer.cs b/FunkeySelector/Properties/Resources.Designer.cs
index f2262b7..d28050a 100644
--- a/FunkeySelector/Properties/Resources.Designer.cs
+++ b/FunkeySelector/Properties/Resources.Designer.cs
@@ -170,6 +170,36 @@ internal static System.Drawing.Bitmap _250 {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _542 {
+ get {
+ object obj = ResourceManager.GetObject("542", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _544 {
+ get {
+ object obj = ResourceManager.GetObject("544", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap _546 {
+ get {
+ object obj = ResourceManager.GetObject("546", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/FunkeySelector/Properties/Resources.resx b/FunkeySelector/Properties/Resources.resx
index 1bea303..6a9590f 100644
--- a/FunkeySelector/Properties/Resources.resx
+++ b/FunkeySelector/Properties/Resources.resx
@@ -121,17 +121,14 @@
..\Resources\232.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\250.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\234.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\154.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\150.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\230.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\1841.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\2432.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -139,25 +136,37 @@
..\Resources\248.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\250.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\679.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\246.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\544.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\542.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\230.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\683.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\246.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\157.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\234.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\150.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\546.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\681.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\1841.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
\ No newline at end of file
diff --git a/FunkeySelector/Resources/542.png b/FunkeySelector/Resources/542.png
new file mode 100644
index 0000000000000000000000000000000000000000..1aa5da0ff09cdf68fa81b82e02a1ce8e1eb22e8e
GIT binary patch
literal 2725
zcmV;W3R?AvP)0SU|<+7BX@=wKn8?C2aw?^C?Fu9h$$jSh?nDqN=x!mbn=?5
znWkBxt!wM4PElKDYh^b(+m;B-7@jViYTK3w-D2@n{`Z|h_f+n#`<(O6`+hUue82Di
zJkR^Q4-*3DW56%&
z^j-SCv(FD8LUbijgq$alX@g99>8L8dVO(E!*Oak*<&EI7<{O5BB~yxw(s5~mbCeik
z28mRAo=6RqL~sR6Kj?qh?O=MXj!Y*?Q$I;691)kTo)DJrfVO=P0$O_@Z|VlWcq`QP
z_d->(5$cK#s7qHtGq({^YyJcYiXS1Ywx7Bx{f_Wy!!%SGSw)Nq1CpG&F-`L>glszv
z^TRJ=#@^QvvGWW9+V?@Rv>R;oMsQW@A*)yiSy=~EMXMlWH$a~{4~o#_F_A22fDl8K
z@42^$n|AB1HC@Qfjl^vCib`51)t!&Sy#Gx^9eWR9``(19`*|2vKLYh43M*Lw-n|s^
z{Kb&xErBw(32N6;=&~p{r2@v-0_Z{`2pb^Tb(8$+y|A4bLhc{0QutqB*t`d|Xsjm)HWCP00z=RY1O?7Qm>~xi!(7A!yAi3+npAS8f!ky5%Rrtc
zL!xU;PLn9^=sU>2a1C?b_ym?6Pl9CHkXNfk|C{shx1k(d8&1Nv!wGc6`R8wjX5q_A
z3$eA`2&0_9q%a~{a3Dd*N0O!#Rzoquh14-A(f134?i9aR-v@81B*E4ZzO)%3+n+__
z6`=VuAmi9MNOMw=Tcg9L-co$$wP4BxrZ)
z<$lFihf{E5rv@9F2)?`!;rGCg9x0u5`1VpddRhgbLlQ`E@<=AW94f*$o=p6Gun0}_
z2=r0{qm1BKH}SvBb?SQGd~J||+f+!P;5pJVEZ~--UaUAj8EJYOO8085quN2%v
zlIDyvwOgR?J`3ZX*T8Q)3R1lR;@M>oN17m35#+cy%$i9MK$AyJfdWh87)EfVKOX<^
z2I0HQdVe^+8YscCxdb**Ao8VESj?@#O668`1ntJ6z)qy9^2gOAriX%!y{yAMMHY2I
z*m@eO`_F*1JPJ~_8YH6>#F7kRFoID@Af-^2CJsl{rX&zt`cobL>UH4j%Mtk6I|E-0
z&A|tKb%>+)WU^M2OO{}TbTihg9>Js5UaSn+ifrwIDIKAQ3+%BD((8!>u02cKQG3)tS
z2IMjYsAt>IA??Qf0l&gijy`mlcA&smcY}ia{9rDv@P@c%GxYa718(hMh-e)aOnmGu#^5{k$VnoI6w8suI8nybqgk>E
zTe!X0tvP{Hv);yGg2fowAhHt(ZH<6T1ht^WS_tx!&&^+
z`7SyGcOh51@TRM|z#b+heO&Cm3mjD{Tk#Osx_dz8)Plrif`r6CL|x4&sbUIV-Wreh
zhd1Jb%PTQ(xdj)8HlVyn4Woob0%J!uQ-}(2BU(jW*vjt5L(-@5R9GK=SM0@_;GM`&
z6pm~C$;D|}h$(hdGJ6r2`D-AhXRM@R4Vc;06r2V68^k&@SY;qMUh0Q0ZFb;^6OA}>
zya|gI+MuTy9wUiH1~V5W>>?~>IgNM13*e^eY-{*SqZsX@zX4r%{He*!n-%h>)
zB7_XeW|c!)*bJupZitIpAj(_-67Ph_ocM1r%gez9(5+;q+a*_yRF?)yy44Jf4k=tF
z+}uLca&1`6ZpUu!I1a1N;VqX3S5{rcsgk#`P~V17k~k_DHO7o%Ndu6n%0s!V3Cm;~
zv01hkkI7#^pLGB@0DN@cRdht|f=gaAp(e(gCDV6I_J11df)TLqo(mB(b?81`>VikRa2?qBNjiVzH0$ne)NYc(a)mV3G^L#b!emVuMN_
zL%~XHIsO2iyK)N0KRtnGKkCKHmtH}#Jp)
zbi-||9Sb1g{VuX5;3sVmT}ZUF5eOcTCT36a8Rg(J=nL2jA&bieZ+1X1B!Sn2Au1;g
zz3;z-)59<0?BMHIwyqrpnFaaUIy7mzu-R}B2V-Bt$+Wky$NC#=h~0;}8J&|+lC%LW
znVF8CH3ELNuL}{Xh}P_tCuUt&rWS&?6+s@C2eoB3^ud`34s<}RjD(B}f}9VAk~703
zw;@GcfO2gcnhg(PSKKL_nEeOrN;re{(Ff2NyXm@}&+!^aV%0SCmtddy;4<2nX~Vp-
zD95BSF$Y3?9yAdy1e@{@X`GALz&s=c=EJ7X$4q@0oI$m42d+Sa>0WF|IE;OBUcv*m
zr?EC+KbFL7nM_f*DKxq9cBMDX?|1(T`I3z)R~ZLnp^0PqC?^aNb6^fHLaez0$>wTg
znU^3Zd?noB?U)z29yQVTqb=zmI;@A#X@3muDLp8&tQ?DxW(?d?`d`66H($(YW5x*m
zj4FIYYfPE2SZMzgQ;DqDMz|B(P@1>_3v6AeN!f<_C7%-hNBmd#gCg$27fiZlY
zVXou9WE!S3*d)Hm>tBj^pY4!(>N+c8R{Qr|FpE&1TyR9L0!64CJ&|4LIjKNbR2$kO8qgYEi>9Dz)E{{W$=9W*+&)bS+oCzDyi8H(XU@%SZc(PN>elfcnxa^quWRcWgVlVp`A{
z(}b?mO^}~_ina(bq=Ap{7o*+jGd%O?(M!t@QkU~`4OnnzUy)_2f;whOqAAt89r
z#b3~Nsuy?M%8{}w7b#YGxN4J!YkTsL=XMv3C!5h4T?c8zeLV5Y#zVIh+;=&TG_xZJ
zHQ27&^p1wmlYKB4^I<4sM<{!zv(E&)Nqgi!Zo7rf$Y($~0jq(5LO^-7AGZ&d!&@&J
zE>nZCcUmZ%HG+pF2zxdB;i}<7N~ELpbTt|xicsZ!4G&ymac7r5E-c#(&uI(ftJ#Nw
zF2=?WqPg2FHpO%;TPcZM8Vm7vHNYK$R+2mby05*&ox|k>BgnLHIB9$j$7vD26^(G}
z3&q~)N04Nm1X+R*4dEH6`sO4`?R}7A&O^N6D(ssuSz^JM=^*$#E%?do-~7G*a#G&0
zDMH`nS3oI21!QSz4_Xqs;r;oEL8t>k9W)}q(+mc0#!=X7`oTdnZ15Y`=Qy3L*F22!
zphC#vvLFqOh0x6l#TGV5HCc&}nX{F~Z@t4O@EEp$eQIRD^hC$>!%*c$zP&-v0^mhT
zALM7cQRY<%*J=L4;325pOfMulokxCXFl{VDxW#w#F;X+uXsC!*FR
zz;T8b0X?x>+XMIGg}{@3Knx_i6lo$>JezIA{idH`5ium^{49$whZcELvjy@GQ;`vLF|fIGW?wd|ibL
zV_{5}%}n0$!PdS@OD>@0kQ9m#89Ku2Av-2U=jlrNS%m%qN;qK)P)~|=$bn83I!oK&
zH2(l>wfqOcoV$7CkweC=K$!#s#aZadh(*T_VZe{E=s)WRk*76IFEi+KWGtD=qgJ-{
zKewqb8l6Fv^+VLVSE9kE9L-_((2-OMWm+lv__VfaB!H}K5L%ZffsKwE>_$QDw2or0
zp*vLf$^YUKyedsaf6)azFHEFlO$O4xN42jllGYljd5mQjN|OMS}!9GUub(
zPJkMZA~XaSpfxEEiu3~X@{53{6xY^9diH>~zzy~@{f3f_z;;?k;B0sZvOA<)qlm(h
zjR9dA1|DA@eBud}zMLpXg6wc%(;~Gk2i9eiledmt*OxfwI0S2MqS7iK)%&wi8<39X
z#0+$%XX3@ZJPg#`1zH;LV@Mh$*g;AtE}IEDBLL3xJkj5i*!^tT|;f)H8duqK$(?>
z=Or0u0U3p)lXjM#D&RSNQ_=J1T=ZY{MV8%S@HE~RMRElso646K
z8^^bN`wL~*6boE7c89<|7>|8J&=4O5S?VdM?w-d$)fI}_U9=Yp;l2JSx%z9^P^`r_
zsi@1z;*Kh)JIe4%Mlt4GuA(KVA}=V(^2#fCddw1W%O@!pzs-h9CRebH*}JBz*hi9Y
zCYd17$Of5PTv2+^6LnF6XuBMW-oj|8h35cCF(Pe_!fw`3a&g&gHP;5+LV~nbkhLWk
zXs1HoOD^ssXfMUS@fNx>1CZ~s6yMHzTk_S&Cc)i)rmbo*8!NE=P)i;;cLT1ivBGVh
zGamW6p&`x_%5;DHa`!k;aTC$Id}%2ipz=srP2k;nmXPLC^3<0>-BL8<=I4)xq?zKM
z9|&Q}zQ^leB^ZU;%U41$m45C0QG$+{M*|kGZ=SR`0gm#igw7edZ
z2&p(!(7CAQI)Uk3O3$(=be*wAx#vQpT50!t%zjh6mF6Dd{CWTy`M?S79F|U>{zn|B
zZ=gz8W`eYBYruCkr8Q`Z`V-sGp0pb;(%hlW^961P14W#K0L9_Jz2i{d@<#Ki?I=Gq
z4;eeAsywt92eteybQt`5xC3ct|LJ6*zn-2veuXj8zFLWreVb5mcmryE*P}6bBRZqL
zLT}to^vCa_BkvY;9p8k`uyuIqwHSQI&yl!hlH5t-b>YTQmX5;xwv8TejN)N2VS>PO
zmX_qyiiOH67OPRva^zmrRzr&wO9Bl-4PCt{OSi{VnkK?RN@{IYrebfJ)tW@3OF?@3CaxaV*>WA1s^7
pU$O_)-b2(EL1VbFqhWsr{vU*Y=R28R5v%|J002ovPDHLkV1hLbNbUdt
literal 0
HcmV?d00001
diff --git a/FunkeySelector/Resources/546.png b/FunkeySelector/Resources/546.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8230aa23263250d46e71b81c2d143dc09d521c5
GIT binary patch
literal 2854
zcmV+>3)%FEP)#r31GGBrv~!;4OP(Zu{`a2moO5$S$ZtbUrC|__
zQ4rdmt7N8Y3D=0Yx{8RM%MxPm)=6wx`-rv6DPql{#N0<_J9H99<`PYBW>`W2%XsJ(
z(d->1wEAJ9A(IjH>3jZRsHrYgj&f*GSgiThq6|6(Od}R{=k>gJHyGl$Z=9u>k37=z
z#=SD~C%n^@6JBYVajVPLRV_7z-CK-ZO?Z^R|hZW$y6s
zuvUFN(fAb@YJ%Z<4Ps%PLhRjdF_IUKGbw2J2bU3d>^7qIoI~Q)14!!J2t`XXa#q(N
zuelP7nktaLyadXcB4m{3Ltd!F+^j4_N#)>&CV&?h4Nv!=pRDMPx6BM}<-NVVwAWx2
zw;pQ5%r=nH70n36GwX_OL=W9S#^;Y9J9-UqTMt3LZUY5eiN1roarD9|oV;)nA74Cy
z6C*>|`{8!fG?t-oNhWf#QlUtcB0-#hNUj7zpIC65h0hp9c2^mOHbIll{sQ)hF(kUC
zBQ#&p1B-&y2-)>#3i@qu(KM@B|V%Hlh9CLEIaAgmJvU1b(7=EPKMAm4sMqI5A3Q7ICzeUmR8Ji;Q~xaCL_acK(14(wBUt)9(D?UP2yO32d`&&R9D6dE-)ora
z)#GWYvVVn%i3ti!eg5(}c64;2I!TE#u@d>d3z5dkMKn_Zj=A{pEMj(Ul1a2ogNTX!
zRa(RXn3nY*?BI2(zSj`ew;#N!MpX1|nl$p|Bv=JiS^GWyd3Ok3T;7R^7vKE?p924c
zOCKFale`#p;Y(2JSAsm3QY72tLu{Q42F>xB2C)euMB6NnFn#W7O3Pr;unWQaE`u|0
z9PZ23f?M=9Bn8>{^wub*>iB@tJ$!z#A4lFV!jb*uxcBwQv;!3M6}7yVFYwvnkI|y2
zL{oSrYBB
z6wNC{*wPb?13Tq7f2x7X?i!}*Jl$+BDcygJp5jJyC9go6pb=}>ZD@At#75q3
z6x!E8U>g72m^ckmHMTgW&7Cu$kyZ`MruSi1w*w|cZLmzshl_MBf)e?Vrt?r($i<4f
zQ1o=f;ZMgJCoNZv(ChkAS^xMHd#NetS2ke1q!ArKEogV`M!Qo#c8HFl#I6}p7HJd4
z#N`;3G5wgPZ{&nVN+sxZJ7HY08Aka{peJX;F*XKV2@jGKUnrHnsICxTL;F0+&KuJ;
zSH(1R>?w|Heg~UN8nB5f+xm!Rboh0k)2R>L4%@L;cp9ZvtKI->(g$aH3ZARSErwC?
zMi@|q58fyV&e-03U{3LaD`Sh>WGvR%@EIsyq2VRFBApPDUeil`SyHsD;rS
zIjjVsa2NSOIEM|HjE#laK{$E17gOC$jnym4=9gnQy?YSvE~`cV!b)_fEX7)JJvzMF
zu->r`Jr>)s!}S=3CKDT*^U-G6Jh=GO@jP754S5Lr+yXdJ4<2A)^wV3CqwXT8_2eZ5VK*T(CQc
zbCEZ2yWlZ)NzNk4tN>QT^{VdV2BO-&XnJRf1NRXva4s|{xTZK02BC>y@FU<990-oU
z8)4yWNaOv{uvCc$|M+6cYHDT=^$cKLZWY$2)}cM30j=EC=ycnJZT1H-%=;_Q1AJNk
z7$pvC5UQK{XcnQL^(5gsQ`@z+ej+hp-q!XJLsO6n?Jxxlgh`WKnxrS|w$kt?x=+l~%)Kf0WDUEREAhzcOq{v|U*GWaE
zq+#Sw^ck0Dx&@Ev@gy+j&xKi#1opv^@ZgES3lbnoB*u!$S_<}RYTtMUj0~PfU0eei
z1*_2-umPQ3@8MnUQ4EHhMyL0Fl(W`BKD%hlLBsd5IpO+a`l$6rKxMg<7+K%c_Xrv{
z_MZb&ZY*rLkzjGd;TIrAIByQ-@)MCMPRHVyLKM#_Lq%jQs;I58j=L5sIlbr!Ie@|F
zGic{fP}eSGxRj53=?HEb5jW`+^fzEK<-3;Ad}3;SQ;!ueX6_RX8^3Tk_=@4piGt8S
z9`ONkWCSa*kY9`e&3IqyOdZAB39f0IuvMw3rwVLvwvgp^=V#p}8h&otc`;UUN0}
zN%{=-Ni*WT$DDX}P_GNjb=X2NQ>L%_-t;l{cmFT_2Oq+&AW#me0{{R307*qoM6N<$
Ef>SMM8UO$Q
literal 0
HcmV?d00001
diff --git a/FunkeySelector/UserControls/Helpbutton.Designer.cs b/FunkeySelector/UserControls/Helpbutton.Designer.cs
new file mode 100644
index 0000000..e1f0697
--- /dev/null
+++ b/FunkeySelector/UserControls/Helpbutton.Designer.cs
@@ -0,0 +1,70 @@
+
+namespace FunkeySelector.UserControls
+{
+ partial class Helpbutton
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.help = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // help
+ //
+ this.help.BackColor = System.Drawing.Color.Transparent;
+ this.help.BackgroundImage = global::FunkeySelector.Properties.Resources._542;
+ this.help.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.help.FlatAppearance.BorderSize = 0;
+ this.help.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.help.Font = new System.Drawing.Font("Comic Sans MS", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.help.ForeColor = System.Drawing.SystemColors.ControlLightLight;
+ this.help.Location = new System.Drawing.Point(0, 0);
+ this.help.Name = "help";
+ this.help.Size = new System.Drawing.Size(23, 23);
+ this.help.TabIndex = 61;
+ this.help.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.help.UseVisualStyleBackColor = false;
+ this.help.Click += new System.EventHandler(this.Help_Click);
+ this.help.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Help_MouseDown);
+ this.help.MouseEnter += new System.EventHandler(this.Help_MouseEnter);
+ this.help.MouseLeave += new System.EventHandler(this.Help_MouseLeave);
+ //
+ // Helpbutton
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.help);
+ this.Name = "Helpbutton";
+ this.Size = new System.Drawing.Size(23, 23);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button help;
+ }
+}
diff --git a/FunkeySelector/UserControls/Helpbutton.cs b/FunkeySelector/UserControls/Helpbutton.cs
new file mode 100644
index 0000000..28916e3
--- /dev/null
+++ b/FunkeySelector/UserControls/Helpbutton.cs
@@ -0,0 +1,41 @@
+using System;
+using System.ComponentModel;
+using System.Windows.Forms;
+using FunkeySelector.Properties;
+
+namespace FunkeySelector.UserControls
+{
+ public partial class Helpbutton : UserControl
+ {
+ [
+ Category("Behavior"),
+ Description("The text to show in the popup shown when clicked.")
+ ]
+ public string HelpText { get; set; } = "Help text here.";
+
+ public Helpbutton()
+ {
+ InitializeComponent();
+ }
+
+ private void Help_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show(HelpText, "Help", MessageBoxButtons.OK, MessageBoxIcon.Question);
+ }
+
+ private void Help_MouseEnter(object sender, EventArgs e)
+ {
+ help.BackgroundImage = Resources._544;
+ }
+
+ private void Help_MouseLeave(object sender, EventArgs e)
+ {
+ help.BackgroundImage = Resources._542;
+ }
+
+ private void Help_MouseDown(object sender, MouseEventArgs e)
+ {
+ help.BackgroundImage = Resources._546;
+ }
+ }
+}
diff --git a/FunkeySelector/UserControls/Helpbutton.resx b/FunkeySelector/UserControls/Helpbutton.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/FunkeySelector/UserControls/Helpbutton.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
From 7d89824a05650cf543acaa5d5190446e69aefff6 Mon Sep 17 00:00:00 2001
From: NanderTGA <65074195+NanderTGA@users.noreply.github.com>
Date: Wed, 1 Nov 2023 18:20:16 +0100
Subject: [PATCH 05/14] refactor: remove old, unused method
---
FunkeySelector/UserControls/ChangeFormButton.cs | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/FunkeySelector/UserControls/ChangeFormButton.cs b/FunkeySelector/UserControls/ChangeFormButton.cs
index 1d6725f..6fd30e0 100644
--- a/FunkeySelector/UserControls/ChangeFormButton.cs
+++ b/FunkeySelector/UserControls/ChangeFormButton.cs
@@ -30,16 +30,6 @@ private void OnClick(object sender, EventArgs e)
ChangeForm();
}
- private (string formName, bool keepCurrentForm) ParseParameters()
- {
- if (Tag is not string unparsedTag) throw new Exception("frick you (translation from fricks: ChangeFormButton.Tag should be a string)"); // That word isn't know in Terrapinia :)
-
- string[] parameters = unparsedTag.Split(new string[] { "; " }, StringSplitOptions.None);
- string formName = parameters[0];
- bool keepCurrentForm = parameters.Length > 1 && parameters[1].ToLower() == "true";
- return (formName, keepCurrentForm);
- }
-
public void ChangeForm()
{
Form zoneForm = GetClassInstance