Tooltips, cleaned up code

This commit is contained in:
CreepyCrafter24 2019-11-11 13:35:39 +01:00
parent 2dc47c8cac
commit 2873d9cbeb
3 changed files with 22 additions and 10 deletions

View File

@ -16,6 +16,7 @@
if (disposing && (components != null)) if (disposing && (components != null))
{ {
components.Dispose(); components.Dispose();
ov.Dispose();
} }
base.Dispose(disposing); base.Dispose(disposing);
} }
@ -51,6 +52,7 @@
this.clickBox.Size = new System.Drawing.Size(49, 17); this.clickBox.Size = new System.Drawing.Size(49, 17);
this.clickBox.TabIndex = 0; this.clickBox.TabIndex = 0;
this.clickBox.Text = "Click"; this.clickBox.Text = "Click";
this.toolTip.SetToolTip(this.clickBox, "Check to start listening for the activation sequence");
this.clickBox.UseVisualStyleBackColor = true; this.clickBox.UseVisualStyleBackColor = true;
this.clickBox.CheckedChanged += new System.EventHandler(this.clickBox_CheckedChanged); this.clickBox.CheckedChanged += new System.EventHandler(this.clickBox_CheckedChanged);
// //
@ -62,6 +64,7 @@
this.rightBox.Size = new System.Drawing.Size(51, 17); this.rightBox.Size = new System.Drawing.Size(51, 17);
this.rightBox.TabIndex = 1; this.rightBox.TabIndex = 1;
this.rightBox.Text = "Right"; this.rightBox.Text = "Right";
this.toolTip.SetToolTip(this.rightBox, "Check to use right clicks instead of left clicks");
this.rightBox.UseVisualStyleBackColor = true; this.rightBox.UseVisualStyleBackColor = true;
// //
// timeBox // timeBox
@ -73,6 +76,7 @@
this.timeBox.Size = new System.Drawing.Size(100, 20); this.timeBox.Size = new System.Drawing.Size(100, 20);
this.timeBox.TabIndex = 2; this.timeBox.TabIndex = 2;
this.timeBox.Text = "100"; this.timeBox.Text = "100";
this.toolTip.SetToolTip(this.timeBox, "Base delay between clicks in milliseconds. Must be an even number above 0");
this.timeBox.TextChanged += new System.EventHandler(this.timeBox_TextChanged); this.timeBox.TextChanged += new System.EventHandler(this.timeBox_TextChanged);
// //
// keyButton // keyButton
@ -84,6 +88,7 @@
this.keyButton.Size = new System.Drawing.Size(100, 23); this.keyButton.Size = new System.Drawing.Size(100, 23);
this.keyButton.TabIndex = 3; this.keyButton.TabIndex = 3;
this.keyButton.Text = "Click to set key"; this.keyButton.Text = "Click to set key";
this.toolTip.SetToolTip(this.keyButton, "Click and press a key to set it as the (de-)activation sequence");
this.keyButton.UseVisualStyleBackColor = false; this.keyButton.UseVisualStyleBackColor = false;
this.keyButton.Click += new System.EventHandler(this.keyButton_Click); this.keyButton.Click += new System.EventHandler(this.keyButton_Click);
// //
@ -95,6 +100,8 @@
this.delmBox.Size = new System.Drawing.Size(69, 17); this.delmBox.Size = new System.Drawing.Size(69, 17);
this.delmBox.TabIndex = 4; this.delmBox.TabIndex = 4;
this.delmBox.Text = "DelayMix"; this.delmBox.Text = "DelayMix";
this.toolTip.SetToolTip(this.delmBox, "Check to generate more human clicks by waiting a random amount of time instead of" +
" a fixed amount");
this.delmBox.UseVisualStyleBackColor = true; this.delmBox.UseVisualStyleBackColor = true;
// //
// timer // timer
@ -109,6 +116,7 @@
this.delmVal.Size = new System.Drawing.Size(100, 20); this.delmVal.Size = new System.Drawing.Size(100, 20);
this.delmVal.TabIndex = 5; this.delmVal.TabIndex = 5;
this.delmVal.Text = "4"; this.delmVal.Text = "4";
this.toolTip.SetToolTip(this.delmVal, "Maximum Delay that will be randomly added by DelayMix");
this.delmVal.TextChanged += new System.EventHandler(this.delmVal_TextChanged); this.delmVal.TextChanged += new System.EventHandler(this.delmVal_TextChanged);
// //
// fixBox // fixBox
@ -119,6 +127,7 @@
this.fixBox.Size = new System.Drawing.Size(79, 17); this.fixBox.Size = new System.Drawing.Size(79, 17);
this.fixBox.TabIndex = 6; this.fixBox.TabIndex = 6;
this.fixBox.Text = "Fix Position"; this.fixBox.Text = "Fix Position";
this.toolTip.SetToolTip(this.fixBox, "Check to use a fixed click position instead of the Cursors position");
this.fixBox.UseVisualStyleBackColor = true; this.fixBox.UseVisualStyleBackColor = true;
this.fixBox.CheckedChanged += new System.EventHandler(this.fixBox_CheckedChanged); this.fixBox.CheckedChanged += new System.EventHandler(this.fixBox_CheckedChanged);
// //
@ -129,6 +138,7 @@
this.fixButton.Size = new System.Drawing.Size(100, 23); this.fixButton.Size = new System.Drawing.Size(100, 23);
this.fixButton.TabIndex = 7; this.fixButton.TabIndex = 7;
this.fixButton.Text = "Set Position"; this.fixButton.Text = "Set Position";
this.toolTip.SetToolTip(this.fixButton, "Set the location where clicks will be simulated");
this.fixButton.UseVisualStyleBackColor = true; this.fixButton.UseVisualStyleBackColor = true;
this.fixButton.Click += new System.EventHandler(this.fixButton_Click); this.fixButton.Click += new System.EventHandler(this.fixButton_Click);
this.fixButton.MouseEnter += new System.EventHandler(this.fixButton_MouseEnter); this.fixButton.MouseEnter += new System.EventHandler(this.fixButton_MouseEnter);

View File

@ -11,7 +11,7 @@ namespace CC_Clicker_2._0
public partial class MainForm : Form public partial class MainForm : Form
{ {
Point loc = Point.Empty; Point loc = Point.Empty;
OvPForm ov; readonly OvPForm ov;
public static Button _keyButton; public static Button _keyButton;
public static bool _isSettingKey = false; public static bool _isSettingKey = false;
public static Keys _key = Keys.LShiftKey; public static Keys _key = Keys.LShiftKey;
@ -103,13 +103,15 @@ namespace CC_Clicker_2._0
private void fixButton_Click(object sender, EventArgs e) private void fixButton_Click(object sender, EventArgs e)
{ {
ov.Hide(); ov.Hide();
LocForm frm = new LocForm(); using (LocForm frm = new LocForm())
if (frm.ShowDialog() == DialogResult.OK)
{ {
loc = new Point(frm.X, frm.Y); if (frm.ShowDialog() == DialogResult.OK)
fixBox.Checked = true; {
fixButton.BackColor = Color.Green; loc = new Point(frm.X, frm.Y);
fixButton.Text = loc.ToString(); fixBox.Checked = true;
fixButton.BackColor = Color.Green;
fixButton.Text = loc.ToString();
}
} }
} }

View File

@ -117,12 +117,12 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="timer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>97, 17</value> <value>97, 17</value>
</metadata> </metadata>
<metadata name="timer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>