Refactor. Turn padding and spacing into their own functions.

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2022-10-21 19:31:13 -05:00
parent 0e7dff04e5
commit 321023cd33
23 changed files with 825 additions and 782 deletions

Binary file not shown.

View File

@ -46,360 +46,360 @@ namespace WindowsFormsApplication1
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.components = new System.ComponentModel.Container(); this.components = new System.ComponentModel.Container();
this.computeButton = new System.Windows.Forms.Button(); this.computeButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button(); this.clearButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox1 = new System.Windows.Forms.GroupBox();
this.hexTextBox = new System.Windows.Forms.TextBox(); this.hexTextBox = new System.Windows.Forms.TextBox();
this.binaryGroupBox = new System.Windows.Forms.GroupBox(); this.binaryGroupBox = new System.Windows.Forms.GroupBox();
this.binaryTextBox = new System.Windows.Forms.TextBox(); this.binaryTextBox = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox();
this.decimalTextBox = new System.Windows.Forms.TextBox(); this.decimalTextBox = new System.Windows.Forms.TextBox();
this.exitButton = new System.Windows.Forms.Button(); this.exitButton = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox(); this.groupBox3 = new System.Windows.Forms.GroupBox();
this.octalRadioButton = new System.Windows.Forms.RadioButton(); this.octalRadioButton = new System.Windows.Forms.RadioButton();
this.decimalRadioButton = new System.Windows.Forms.RadioButton(); this.decimalRadioButton = new System.Windows.Forms.RadioButton();
this.hexRadioButton = new System.Windows.Forms.RadioButton(); this.hexRadioButton = new System.Windows.Forms.RadioButton();
this.binaryRadioButton = new System.Windows.Forms.RadioButton(); this.binaryRadioButton = new System.Windows.Forms.RadioButton();
this.groupBox4 = new System.Windows.Forms.GroupBox(); this.groupBox4 = new System.Windows.Forms.GroupBox();
this.octalTextBox = new System.Windows.Forms.TextBox(); this.octalTextBox = new System.Windows.Forms.TextBox();
this.autoCompute = new System.Windows.Forms.CheckBox(); this.autoCompute = new System.Windows.Forms.CheckBox();
this.autoComputeToolTip = new System.Windows.Forms.ToolTip(this.components); this.autoComputeToolTip = new System.Windows.Forms.ToolTip(this.components);
this.paddingToggle = new System.Windows.Forms.CheckBox(); this.paddingToggle = new System.Windows.Forms.CheckBox();
this.groupBox5 = new System.Windows.Forms.GroupBox(); this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.paddingOffsetTextBox = new System.Windows.Forms.TextBox(); this.paddingOffsetTextBox = new System.Windows.Forms.TextBox();
this.groupBox6 = new System.Windows.Forms.GroupBox(); this.groupBox6 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label();
this.spacingOffsetTextBox = new System.Windows.Forms.TextBox(); this.spacingOffsetTextBox = new System.Windows.Forms.TextBox();
this.spacingToggle = new System.Windows.Forms.CheckBox(); this.spacingToggle = new System.Windows.Forms.CheckBox();
this.debugLabel = new System.Windows.Forms.Label(); this.debugLabel = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout(); this.groupBox1.SuspendLayout();
this.binaryGroupBox.SuspendLayout(); this.binaryGroupBox.SuspendLayout();
this.groupBox2.SuspendLayout(); this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout(); this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout(); this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout(); this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout(); this.groupBox6.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// computeButton // computeButton
// //
this.computeButton.Location = new System.Drawing.Point(12, 329); this.computeButton.Location = new System.Drawing.Point(12, 329);
this.computeButton.Name = "computeButton"; this.computeButton.Name = "computeButton";
this.computeButton.Size = new System.Drawing.Size(91, 23); this.computeButton.Size = new System.Drawing.Size(91, 23);
this.computeButton.TabIndex = 5; this.computeButton.TabIndex = 5;
this.computeButton.Text = "Compute!"; this.computeButton.Text = "Compute!";
this.computeButton.UseVisualStyleBackColor = true; this.computeButton.UseVisualStyleBackColor = true;
this.computeButton.Click += new System.EventHandler(this.computeButton_Click); this.computeButton.Click += new System.EventHandler(this.computeButton_Click);
// //
// clearButton // clearButton
// //
this.clearButton.Location = new System.Drawing.Point(109, 329); this.clearButton.Location = new System.Drawing.Point(109, 329);
this.clearButton.Name = "clearButton"; this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(85, 23); this.clearButton.Size = new System.Drawing.Size(85, 23);
this.clearButton.TabIndex = 6; this.clearButton.TabIndex = 6;
this.clearButton.Text = "Clear"; this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true; this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click); this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
// //
// groupBox1 // groupBox1
// //
this.groupBox1.Controls.Add(this.hexTextBox); this.groupBox1.Controls.Add(this.hexTextBox);
this.groupBox1.Location = new System.Drawing.Point(10, 72); this.groupBox1.Location = new System.Drawing.Point(10, 72);
this.groupBox1.Name = "groupBox1"; this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(279, 54); this.groupBox1.Size = new System.Drawing.Size(279, 54);
this.groupBox1.TabIndex = 1; this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false; this.groupBox1.TabStop = false;
this.groupBox1.Text = "Hexadecimal"; this.groupBox1.Text = "Hexadecimal";
// //
// hexTextBox // hexTextBox
// //
this.hexTextBox.AccessibleDescription = ""; this.hexTextBox.AccessibleDescription = "";
this.hexTextBox.Location = new System.Drawing.Point(7, 20); this.hexTextBox.Location = new System.Drawing.Point(7, 20);
this.hexTextBox.Name = "hexTextBox"; this.hexTextBox.Name = "hexTextBox";
this.hexTextBox.Size = new System.Drawing.Size(261, 20); this.hexTextBox.Size = new System.Drawing.Size(261, 20);
this.hexTextBox.TabIndex = 0; this.hexTextBox.TabIndex = 0;
this.hexTextBox.Text = "0"; this.hexTextBox.Text = "0";
this.hexTextBox.TextChanged += new System.EventHandler(this.hexTextBox_TextChanged); this.hexTextBox.Click += new System.EventHandler(this.hexTextBox_Enter);
// //
// binaryGroupBox // binaryGroupBox
// //
this.binaryGroupBox.Controls.Add(this.binaryTextBox); this.binaryGroupBox.Controls.Add(this.binaryTextBox);
this.binaryGroupBox.Location = new System.Drawing.Point(9, 12); this.binaryGroupBox.Location = new System.Drawing.Point(9, 12);
this.binaryGroupBox.Name = "binaryGroupBox"; this.binaryGroupBox.Name = "binaryGroupBox";
this.binaryGroupBox.Size = new System.Drawing.Size(279, 54); this.binaryGroupBox.Size = new System.Drawing.Size(279, 54);
this.binaryGroupBox.TabIndex = 0; this.binaryGroupBox.TabIndex = 0;
this.binaryGroupBox.TabStop = false; this.binaryGroupBox.TabStop = false;
this.binaryGroupBox.Text = "Binary"; this.binaryGroupBox.Text = "Binary";
// //
// binaryTextBox // binaryTextBox
// //
this.binaryTextBox.AccessibleDescription = ""; this.binaryTextBox.AccessibleDescription = "";
this.binaryTextBox.Location = new System.Drawing.Point(7, 20); this.binaryTextBox.Location = new System.Drawing.Point(7, 20);
this.binaryTextBox.Name = "binaryTextBox"; this.binaryTextBox.Name = "binaryTextBox";
this.binaryTextBox.Size = new System.Drawing.Size(261, 20); this.binaryTextBox.Size = new System.Drawing.Size(261, 20);
this.binaryTextBox.TabIndex = 0; this.binaryTextBox.TabIndex = 0;
this.binaryTextBox.Text = "0"; this.binaryTextBox.Text = "0";
this.binaryTextBox.TextChanged += new System.EventHandler(this.binaryTextBox_TextChanged); this.binaryTextBox.Click += new System.EventHandler(this.binaryTextBox_Enter);
// //
// groupBox2 // groupBox2
// //
this.groupBox2.Controls.Add(this.decimalTextBox); this.groupBox2.Controls.Add(this.decimalTextBox);
this.groupBox2.Location = new System.Drawing.Point(10, 192); this.groupBox2.Location = new System.Drawing.Point(10, 192);
this.groupBox2.Name = "groupBox2"; this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(279, 54); this.groupBox2.Size = new System.Drawing.Size(279, 54);
this.groupBox2.TabIndex = 3; this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false; this.groupBox2.TabStop = false;
this.groupBox2.Text = "Decimal"; this.groupBox2.Text = "Decimal";
// //
// decimalTextBox // decimalTextBox
// //
this.decimalTextBox.AccessibleDescription = ""; this.decimalTextBox.AccessibleDescription = "";
this.decimalTextBox.Location = new System.Drawing.Point(7, 20); this.decimalTextBox.Location = new System.Drawing.Point(7, 20);
this.decimalTextBox.Name = "decimalTextBox"; this.decimalTextBox.Name = "decimalTextBox";
this.decimalTextBox.Size = new System.Drawing.Size(261, 20); this.decimalTextBox.Size = new System.Drawing.Size(261, 20);
this.decimalTextBox.TabIndex = 0; this.decimalTextBox.TabIndex = 0;
this.decimalTextBox.Text = "0"; this.decimalTextBox.Text = "0";
this.decimalTextBox.TextChanged += new System.EventHandler(this.decimalTextBox_TextChanged); this.decimalTextBox.Click += new System.EventHandler(this.decimalTextBox_Enter);
// //
// exitButton // exitButton
// //
this.exitButton.Location = new System.Drawing.Point(200, 329); this.exitButton.Location = new System.Drawing.Point(200, 329);
this.exitButton.Name = "exitButton"; this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(91, 23); this.exitButton.Size = new System.Drawing.Size(91, 23);
this.exitButton.TabIndex = 7; this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit"; this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true; this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click); this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
// //
// groupBox3 // groupBox3
// //
this.groupBox3.Controls.Add(this.octalRadioButton); this.groupBox3.Controls.Add(this.octalRadioButton);
this.groupBox3.Controls.Add(this.decimalRadioButton); this.groupBox3.Controls.Add(this.decimalRadioButton);
this.groupBox3.Controls.Add(this.hexRadioButton); this.groupBox3.Controls.Add(this.hexRadioButton);
this.groupBox3.Controls.Add(this.binaryRadioButton); this.groupBox3.Controls.Add(this.binaryRadioButton);
this.groupBox3.Location = new System.Drawing.Point(12, 252); this.groupBox3.Location = new System.Drawing.Point(12, 252);
this.groupBox3.Name = "groupBox3"; this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(279, 52); this.groupBox3.Size = new System.Drawing.Size(279, 52);
this.groupBox3.TabIndex = 4; this.groupBox3.TabIndex = 4;
this.groupBox3.TabStop = false; this.groupBox3.TabStop = false;
this.groupBox3.Text = "Which Base would you like to convert from?"; this.groupBox3.Text = "Which Base would you like to convert from?";
// //
// octalRadioButton // octalRadioButton
// //
this.octalRadioButton.AutoSize = true; this.octalRadioButton.AutoSize = true;
this.octalRadioButton.Location = new System.Drawing.Point(159, 19); this.octalRadioButton.Location = new System.Drawing.Point(159, 19);
this.octalRadioButton.Name = "octalRadioButton"; this.octalRadioButton.Name = "octalRadioButton";
this.octalRadioButton.Size = new System.Drawing.Size(50, 17); this.octalRadioButton.Size = new System.Drawing.Size(50, 17);
this.octalRadioButton.TabIndex = 3; this.octalRadioButton.TabIndex = 3;
this.octalRadioButton.TabStop = true; this.octalRadioButton.TabStop = true;
this.octalRadioButton.Text = "Octal"; this.octalRadioButton.Text = "Octal";
this.octalRadioButton.UseVisualStyleBackColor = true; this.octalRadioButton.UseVisualStyleBackColor = true;
this.octalRadioButton.CheckedChanged += new System.EventHandler(this.octalRadioButton_CheckedChanged); this.octalRadioButton.CheckedChanged += new System.EventHandler(this.octalRadioButton_CheckedChanged);
// //
// decimalRadioButton // decimalRadioButton
// //
this.decimalRadioButton.AutoSize = true; this.decimalRadioButton.AutoSize = true;
this.decimalRadioButton.Location = new System.Drawing.Point(215, 19); this.decimalRadioButton.Location = new System.Drawing.Point(215, 19);
this.decimalRadioButton.Name = "decimalRadioButton"; this.decimalRadioButton.Name = "decimalRadioButton";
this.decimalRadioButton.Size = new System.Drawing.Size(63, 17); this.decimalRadioButton.Size = new System.Drawing.Size(63, 17);
this.decimalRadioButton.TabIndex = 2; this.decimalRadioButton.TabIndex = 2;
this.decimalRadioButton.TabStop = true; this.decimalRadioButton.TabStop = true;
this.decimalRadioButton.Text = "Decimal"; this.decimalRadioButton.Text = "Decimal";
this.decimalRadioButton.UseVisualStyleBackColor = true; this.decimalRadioButton.UseVisualStyleBackColor = true;
this.decimalRadioButton.CheckedChanged += new System.EventHandler(this.decimalRadioButton_CheckedChanged); this.decimalRadioButton.CheckedChanged += new System.EventHandler(this.decimalRadioButton_CheckedChanged);
// //
// hexRadioButton // hexRadioButton
// //
this.hexRadioButton.AutoSize = true; this.hexRadioButton.AutoSize = true;
this.hexRadioButton.Location = new System.Drawing.Point(67, 19); this.hexRadioButton.Location = new System.Drawing.Point(67, 19);
this.hexRadioButton.Name = "hexRadioButton"; this.hexRadioButton.Name = "hexRadioButton";
this.hexRadioButton.Size = new System.Drawing.Size(86, 17); this.hexRadioButton.Size = new System.Drawing.Size(86, 17);
this.hexRadioButton.TabIndex = 1; this.hexRadioButton.TabIndex = 1;
this.hexRadioButton.TabStop = true; this.hexRadioButton.TabStop = true;
this.hexRadioButton.Text = "Hexadecimal"; this.hexRadioButton.Text = "Hexadecimal";
this.hexRadioButton.UseVisualStyleBackColor = true; this.hexRadioButton.UseVisualStyleBackColor = true;
this.hexRadioButton.CheckedChanged += new System.EventHandler(this.hexRadioButton_CheckedChanged); this.hexRadioButton.CheckedChanged += new System.EventHandler(this.hexRadioButton_CheckedChanged);
// //
// binaryRadioButton // binaryRadioButton
// //
this.binaryRadioButton.AutoSize = true; this.binaryRadioButton.AutoSize = true;
this.binaryRadioButton.Location = new System.Drawing.Point(7, 19); this.binaryRadioButton.Location = new System.Drawing.Point(7, 19);
this.binaryRadioButton.Name = "binaryRadioButton"; this.binaryRadioButton.Name = "binaryRadioButton";
this.binaryRadioButton.Size = new System.Drawing.Size(54, 17); this.binaryRadioButton.Size = new System.Drawing.Size(54, 17);
this.binaryRadioButton.TabIndex = 0; this.binaryRadioButton.TabIndex = 0;
this.binaryRadioButton.TabStop = true; this.binaryRadioButton.TabStop = true;
this.binaryRadioButton.Text = "Binary"; this.binaryRadioButton.Text = "Binary";
this.binaryRadioButton.UseVisualStyleBackColor = true; this.binaryRadioButton.UseVisualStyleBackColor = true;
this.binaryRadioButton.CheckedChanged += new System.EventHandler(this.binaryRadioButton_CheckedChanged); this.binaryRadioButton.CheckedChanged += new System.EventHandler(this.binaryRadioButton_CheckedChanged);
// //
// groupBox4 // groupBox4
// //
this.groupBox4.Controls.Add(this.octalTextBox); this.groupBox4.Controls.Add(this.octalTextBox);
this.groupBox4.Location = new System.Drawing.Point(9, 132); this.groupBox4.Location = new System.Drawing.Point(9, 132);
this.groupBox4.Name = "groupBox4"; this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(279, 54); this.groupBox4.Size = new System.Drawing.Size(279, 54);
this.groupBox4.TabIndex = 2; this.groupBox4.TabIndex = 2;
this.groupBox4.TabStop = false; this.groupBox4.TabStop = false;
this.groupBox4.Text = "Octal"; this.groupBox4.Text = "Octal";
// //
// octalTextBox // octalTextBox
// //
this.octalTextBox.AccessibleDescription = ""; this.octalTextBox.AccessibleDescription = "";
this.octalTextBox.Location = new System.Drawing.Point(7, 20); this.octalTextBox.Location = new System.Drawing.Point(7, 20);
this.octalTextBox.Name = "octalTextBox"; this.octalTextBox.Name = "octalTextBox";
this.octalTextBox.Size = new System.Drawing.Size(261, 20); this.octalTextBox.Size = new System.Drawing.Size(261, 20);
this.octalTextBox.TabIndex = 0; this.octalTextBox.TabIndex = 0;
this.octalTextBox.Text = "0"; this.octalTextBox.Text = "0";
this.octalTextBox.TextChanged += new System.EventHandler(this.octalTextBox_TextChanged); this.octalTextBox.Click += new System.EventHandler(this.octalTextBox_Enter);
// //
// autoCompute // autoCompute
// //
this.autoCompute.AutoSize = true; this.autoCompute.AutoSize = true;
this.autoCompute.Location = new System.Drawing.Point(16, 310); this.autoCompute.Location = new System.Drawing.Point(16, 310);
this.autoCompute.Name = "autoCompute"; this.autoCompute.Name = "autoCompute";
this.autoCompute.Size = new System.Drawing.Size(138, 17); this.autoCompute.Size = new System.Drawing.Size(170, 17);
this.autoCompute.TabIndex = 8; this.autoCompute.TabIndex = 8;
this.autoCompute.Text = "Automatically compute?"; this.autoCompute.Text = "Compute upon pressing enter?";
this.autoCompute.UseVisualStyleBackColor = true; this.autoCompute.UseVisualStyleBackColor = true;
// //
// autoComputeToolTip // autoComputeToolTip
// //
this.autoComputeToolTip.IsBalloon = true; this.autoComputeToolTip.IsBalloon = true;
// //
// paddingToggle // paddingToggle
// //
this.paddingToggle.AutoSize = true; this.paddingToggle.AutoSize = true;
this.paddingToggle.Location = new System.Drawing.Point(6, 19); this.paddingToggle.Location = new System.Drawing.Point(6, 19);
this.paddingToggle.Name = "paddingToggle"; this.paddingToggle.Name = "paddingToggle";
this.paddingToggle.Size = new System.Drawing.Size(81, 17); this.paddingToggle.Size = new System.Drawing.Size(81, 17);
this.paddingToggle.TabIndex = 9; this.paddingToggle.TabIndex = 9;
this.paddingToggle.Text = "Pad Zeros?"; this.paddingToggle.Text = "Pad Zeros?";
this.paddingToggle.UseVisualStyleBackColor = true; this.paddingToggle.UseVisualStyleBackColor = true;
this.paddingToggle.CheckedChanged += new System.EventHandler(this.paddingToggle_CheckedChanged); this.paddingToggle.CheckedChanged += new System.EventHandler(this.paddingToggle_CheckedChanged);
// //
// groupBox5 // groupBox5
// //
this.groupBox5.Controls.Add(this.label1); this.groupBox5.Controls.Add(this.label1);
this.groupBox5.Controls.Add(this.paddingOffsetTextBox); this.groupBox5.Controls.Add(this.paddingOffsetTextBox);
this.groupBox5.Controls.Add(this.paddingToggle); this.groupBox5.Controls.Add(this.paddingToggle);
this.groupBox5.Location = new System.Drawing.Point(295, 13); this.groupBox5.Location = new System.Drawing.Point(295, 13);
this.groupBox5.Name = "groupBox5"; this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(89, 88); this.groupBox5.Size = new System.Drawing.Size(89, 88);
this.groupBox5.TabIndex = 10; this.groupBox5.TabIndex = 10;
this.groupBox5.TabStop = false; this.groupBox5.TabStop = false;
this.groupBox5.Text = "Padding"; this.groupBox5.Text = "Padding";
// //
// label1 // label1
// //
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(7, 39); this.label1.Location = new System.Drawing.Point(7, 39);
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(76, 14); this.label1.Size = new System.Drawing.Size(76, 14);
this.label1.TabIndex = 11; this.label1.TabIndex = 11;
this.label1.Text = "Padding offset"; this.label1.Text = "Padding offset";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
// //
// paddingOffsetTextBox // paddingOffsetTextBox
// //
this.paddingOffsetTextBox.Location = new System.Drawing.Point(7, 59); this.paddingOffsetTextBox.Location = new System.Drawing.Point(7, 59);
this.paddingOffsetTextBox.Name = "paddingOffsetTextBox"; this.paddingOffsetTextBox.Name = "paddingOffsetTextBox";
this.paddingOffsetTextBox.ReadOnly = true; this.paddingOffsetTextBox.ReadOnly = true;
this.paddingOffsetTextBox.Size = new System.Drawing.Size(76, 20); this.paddingOffsetTextBox.Size = new System.Drawing.Size(76, 20);
this.paddingOffsetTextBox.TabIndex = 10; this.paddingOffsetTextBox.TabIndex = 10;
this.paddingOffsetTextBox.Text = "8"; this.paddingOffsetTextBox.Text = "8";
this.paddingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.paddingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
// //
// groupBox6 // groupBox6
// //
this.groupBox6.Controls.Add(this.label2); this.groupBox6.Controls.Add(this.label2);
this.groupBox6.Controls.Add(this.spacingOffsetTextBox); this.groupBox6.Controls.Add(this.spacingOffsetTextBox);
this.groupBox6.Controls.Add(this.spacingToggle); this.groupBox6.Controls.Add(this.spacingToggle);
this.groupBox6.Location = new System.Drawing.Point(295, 107); this.groupBox6.Location = new System.Drawing.Point(295, 107);
this.groupBox6.Name = "groupBox6"; this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(89, 88); this.groupBox6.Size = new System.Drawing.Size(89, 88);
this.groupBox6.TabIndex = 12; this.groupBox6.TabIndex = 12;
this.groupBox6.TabStop = false; this.groupBox6.TabStop = false;
this.groupBox6.Text = "Spacing"; this.groupBox6.Text = "Spacing";
// //
// label2 // label2
// //
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(7, 39); this.label2.Location = new System.Drawing.Point(7, 39);
this.label2.Name = "label2"; this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(76, 14); this.label2.Size = new System.Drawing.Size(76, 14);
this.label2.TabIndex = 11; this.label2.TabIndex = 11;
this.label2.Text = "Spacing offset"; this.label2.Text = "Spacing offset";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
// //
// spacingOffsetTextBox // spacingOffsetTextBox
// //
this.spacingOffsetTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.spacingOffsetTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.spacingOffsetTextBox.Location = new System.Drawing.Point(7, 59); this.spacingOffsetTextBox.Location = new System.Drawing.Point(7, 59);
this.spacingOffsetTextBox.Name = "spacingOffsetTextBox"; this.spacingOffsetTextBox.Name = "spacingOffsetTextBox";
this.spacingOffsetTextBox.ReadOnly = true; this.spacingOffsetTextBox.ReadOnly = true;
this.spacingOffsetTextBox.Size = new System.Drawing.Size(76, 20); this.spacingOffsetTextBox.Size = new System.Drawing.Size(76, 20);
this.spacingOffsetTextBox.TabIndex = 10; this.spacingOffsetTextBox.TabIndex = 10;
this.spacingOffsetTextBox.Text = "4"; this.spacingOffsetTextBox.Text = "4";
this.spacingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.spacingOffsetTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
// //
// spacingToggle // spacingToggle
// //
this.spacingToggle.AutoSize = true; this.spacingToggle.AutoSize = true;
this.spacingToggle.Location = new System.Drawing.Point(6, 19); this.spacingToggle.Location = new System.Drawing.Point(6, 19);
this.spacingToggle.Name = "spacingToggle"; this.spacingToggle.Name = "spacingToggle";
this.spacingToggle.Size = new System.Drawing.Size(71, 17); this.spacingToggle.Size = new System.Drawing.Size(71, 17);
this.spacingToggle.TabIndex = 9; this.spacingToggle.TabIndex = 9;
this.spacingToggle.Text = "Spacing?"; this.spacingToggle.Text = "Spacing?";
this.spacingToggle.UseVisualStyleBackColor = true; this.spacingToggle.UseVisualStyleBackColor = true;
this.spacingToggle.CheckedChanged += new System.EventHandler(this.spacingToggle_CheckedChanged); this.spacingToggle.CheckedChanged += new System.EventHandler(this.spacingToggle_CheckedChanged);
// //
// debugLabel // debugLabel
// //
this.debugLabel.AutoSize = true; this.debugLabel.AutoSize = true;
this.debugLabel.Location = new System.Drawing.Point(160, 311); this.debugLabel.Location = new System.Drawing.Point(192, 311);
this.debugLabel.Name = "debugLabel"; this.debugLabel.Name = "debugLabel";
this.debugLabel.Size = new System.Drawing.Size(63, 13); this.debugLabel.Size = new System.Drawing.Size(63, 13);
this.debugLabel.TabIndex = 14; this.debugLabel.TabIndex = 14;
this.debugLabel.Text = "debugLabel"; this.debugLabel.Text = "debugLabel";
// //
// Form1 // Form1
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(396, 364); this.ClientSize = new System.Drawing.Size(396, 364);
this.Controls.Add(this.debugLabel); this.Controls.Add(this.debugLabel);
this.Controls.Add(this.groupBox6); this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5); this.Controls.Add(this.groupBox5);
this.Controls.Add(this.autoCompute); this.Controls.Add(this.autoCompute);
this.Controls.Add(this.groupBox4); this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3); this.Controls.Add(this.groupBox3);
this.Controls.Add(this.exitButton); this.Controls.Add(this.exitButton);
this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox2);
this.Controls.Add(this.binaryGroupBox); this.Controls.Add(this.binaryGroupBox);
this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBox1);
this.Controls.Add(this.clearButton); this.Controls.Add(this.clearButton);
this.Controls.Add(this.computeButton); this.Controls.Add(this.computeButton);
this.Name = "Form1"; this.Name = "Form1";
this.Text = "Base Converter - Caleb Fontenot"; this.Text = "Base Converter - Caleb Fontenot";
this.groupBox1.ResumeLayout(false); this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout(); this.groupBox1.PerformLayout();
this.binaryGroupBox.ResumeLayout(false); this.binaryGroupBox.ResumeLayout(false);
this.binaryGroupBox.PerformLayout(); this.binaryGroupBox.PerformLayout();
this.groupBox2.ResumeLayout(false); this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout(); this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false); this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout(); this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false); this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout(); this.groupBox4.PerformLayout();
this.groupBox5.ResumeLayout(false); this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout(); this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false); this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout(); this.groupBox6.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();
} }
#endregion #endregion

View File

@ -1,333 +1,361 @@
/* /*
Base-Converter - This file is a part of Base Converter Base-Converter - This file is a part of Base Converter
Copyright (C) 2022 Caleb Fontenot <foley2431@gmail.com> Copyright (C) 2022 Caleb Fontenot <foley2431@gmail.com>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Data; using System.Data;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
using System.Windows.Forms; using System.Windows.Forms;
namespace WindowsFormsApplication1 namespace WindowsFormsApplication1
{ {
public partial class Form1 : Form public partial class Form1 : Form
{ {
public Form1() public Form1()
{ {
InitializeComponent(); InitializeComponent();
ToolTip toolTip = new ToolTip(); ToolTip toolTip = new ToolTip();
toolTip.SetToolTip(autoCompute, "Automatically computes input based on changes made to textbox contents."); toolTip.SetToolTip(autoCompute, "Automatically computes input based on changes made to textbox contents.");
} }
int paddingOffset = 0, spacingOffset = 0, i = 0; int paddingOffset = 0, spacingOffset = 0, i = 0;
public void compute()
{ public void printToBinary(string whatToPrint)
// Define variables {
long decimalNum = 0, hexNum = 0, binNum = 0, octalNum = 0; binaryTextBox.Text = whatToPrint;
//int paddingOffset = 0,spacingOffset = 0, i = 0; }
try public long compute()
{ // Extract data from text boxes. {
// Define variables
decimalNum = long.Parse(decimalTextBox.Text); long decimalNum = 0, hexNum = 0, binNum = 0, octalNum = 0;
//int paddingOffset = 0,spacingOffset = 0, i = 0;
binNum = Convert.ToInt64(binaryTextBox.Text, 2); try
{ // Extract data from text boxes.
hexNum = Convert.ToInt64(hexTextBox.Text, 16);
octalNum = Convert.ToInt64(octalTextBox.Text, 8); decimalNum = long.Parse(decimalTextBox.Text);
paddingOffset = int.Parse(paddingOffsetTextBox.Text);
} binNum = Convert.ToInt64(binaryTextBox.Text, 2);
catch
{ hexNum = Convert.ToInt64(hexTextBox.Text, 16);
clearTextboxes(); octalNum = Convert.ToInt64(octalTextBox.Text, 8);
MessageBox.Show("Invalid number entered into one of the textboxes!"); paddingOffset = int.Parse(paddingOffsetTextBox.Text);
}
}
// What does the user want us to convert from? catch
if (decimalRadioButton.Checked) {
{ clearTextboxes();
// The decimal radio button is pressed. MessageBox.Show("Invalid number entered into one of the textboxes!");
hexNum = decimalNum; }
binNum = decimalNum;
octalNum = decimalNum; // What does the user want us to convert from?
//Refocus the textbox when done. if (decimalRadioButton.Checked)
currentFocus("decimalTextBox"); {
} // The decimal radio button is pressed.
if (octalRadioButton.Checked) hexNum = decimalNum;
{ binNum = decimalNum;
// The octal radio button is pressed. octalNum = decimalNum;
hexNum = octalNum; //Refocus the textbox when done.
binNum = octalNum; currentFocus("decimalTextBox");
decimalNum = octalNum; }
//Refocus the textbox when done. if (octalRadioButton.Checked)
currentFocus("octalTextBox"); {
// The octal radio button is pressed.
} hexNum = octalNum;
if (hexRadioButton.Checked) binNum = octalNum;
{ decimalNum = octalNum;
// The hexadecimal radio button is pressed. //Refocus the textbox when done.
binNum = hexNum; currentFocus("octalTextBox");
decimalNum = hexNum;
octalNum = hexNum; }
//Refocus the textbox when done. if (hexRadioButton.Checked)
currentFocus("hexTextBox"); {
} // The hexadecimal radio button is pressed.
if (binaryRadioButton.Checked) binNum = hexNum;
{ decimalNum = hexNum;
// The binary radio button is pressed. octalNum = hexNum;
hexNum = binNum; //Refocus the textbox when done.
decimalNum = binNum; currentFocus("hexTextBox");
octalNum = binNum; }
//Refocus the textbox when done. if (binaryRadioButton.Checked)
currentFocus("binaryTextBox"); {
} // The binary radio button is pressed.
// Print output hexNum = binNum;
if (paddingToggle.Checked) // Padding: Add Zeros to the beginning of the string decimalNum = binNum;
{ octalNum = binNum;
string binaryString = Convert.ToString(binNum, 2); // Define string to offset //Refocus the textbox when done.
int binarySize = binaryString.Length; //count the length of the string. currentFocus("binaryTextBox");
}
if (paddingOffset > binarySize) // Print output
{ // Is the decimal offset larger than the size of ths string? hexTextBox.Text = hexNum.ToString("X");
while (i != (paddingOffset - binarySize)) octalTextBox.Text = Convert.ToString(octalNum, 8);
{ decimalTextBox.Text = decimalNum.ToString();
binaryString = "0" + binaryString; return binNum;
i++; }
} public string padding(long paddingInput)
} {
//debugLabel.Text = sender.GetType().ToString(); if (paddingToggle.Checked) // Padding: Add Zeros to the beginning of the string
binaryTextBox.Text = binaryString; {
} string binaryString = Convert.ToString(paddingInput, 2); // Define string to offset
else int binarySize = binaryString.Length; //count the length of the string.
{
binaryTextBox.Text = Convert.ToString(binNum, 2); if (paddingOffset > binarySize)
} { // Is the decimal offset larger than the size of ths string?
while (i <= (paddingOffset - binarySize))
hexTextBox.Text = hexNum.ToString("X"); {
octalTextBox.Text = Convert.ToString(octalNum, 8); binaryString = "0" + binaryString;
decimalTextBox.Text = decimalNum.ToString(); i++;
} }
public void spacing() }
{ //debugLabel.Text = sender.GetType().ToString();
return binaryString;
}
else
{
return Convert.ToString(paddingInput, 2);
}
}
public string spacing(string binaryString)
{
spacingOffset = int.Parse(spacingOffsetTextBox.Text); spacingOffset = int.Parse(spacingOffsetTextBox.Text);
try try
{ {
if (spacingToggle.Checked) if (spacingToggle.Checked)
{ {
string binaryString = binaryTextBox.Text; // Define string to offset //string binaryString = spacingInput; // Define string to offset
int binarySize = binaryString.Length; //count the length of the string. int binarySize = binaryString.Length; //count the length of the string.
i = binarySize; i = binarySize; //- (spacingOffset + 1);
var builder = new StringBuilder(binaryString); // String builder int spacingCounterOffset = 0;
while (i != 0) var builder = new StringBuilder(binaryString); // String builder
{ /*
if (!(i == binarySize)) // Get rid of trailing space if (binarySize % 2 == 0) // compensate for numbers being odd
{ {
if (i % spacingOffset == 0) // If i mod spacingOffset equals zero, append a space to the offset specified by i. spacingCounterOffset = 0;
{ }
builder.Insert(i, " "); else
} {
i--; spacingCounterOffset = spacingOffset - 1;
} }
else */
{ while (i != 0)
i--; {
} if (!(i == binarySize)) // Get rid of trailing space
} {
binaryTextBox.Text = builder.ToString(); if (i % spacingOffset == 0) // If i mod spacingOffset equals zero, append a space to the offset specified by i.
//builder = null; // null out builder when done {
//binaryTextBox.Text = binaryString; builder.Insert((i - spacingCounterOffset), " ");
} //spacingCounterOffset++;
} }
catch i--;
{ }
MessageBox.Show("Divide by zero"); else
} {
} i--;
private void currentFocus(string focusOn) }
{ }
switch (focusOn) return builder.ToString();
{ //builder = null; // null out builder when done
case "binaryTextBox": //binaryTextBox.Text = binaryString;
binaryTextBox.Focus(); }
break; }
case "hexTextBox": catch
hexTextBox.Focus(); {
break; MessageBox.Show("Divide by zero");
case "octalTextBox": }
octalTextBox.Focus(); return binaryString;
break; }
case "decimalTextBox": private void currentFocus(string focusOn)
decimalTextBox.Focus(); {
break; switch (focusOn)
default: {
this.Focus(); case "binaryTextBox":
break; binaryTextBox.Focus();
} break;
} case "hexTextBox":
hexTextBox.Focus();
private void clearTextboxes() break;
{ case "octalTextBox":
hexTextBox.Text = "0"; octalTextBox.Focus();
binaryTextBox.Text = "0"; break;
octalTextBox.Text = "0"; case "decimalTextBox":
decimalTextBox.Text = "0"; decimalTextBox.Focus();
} break;
default:
private void computeButton_Click(object sender, EventArgs e) this.Focus();
break;
}
}
private void clearTextboxes()
{
hexTextBox.Text = "0";
binaryTextBox.Text = "0";
octalTextBox.Text = "0";
decimalTextBox.Text = "0";
}
private void computeButton_Click(object sender, EventArgs e)
{ {
// Remove commas from decimalTextBox before parsing it // Remove commas from decimalTextBox before parsing it
decimalTextBox.Text = decimalTextBox.Text.Replace(",", ""); decimalTextBox.Text = decimalTextBox.Text.Replace(",", "");
// Remove spacing from binaryTextBox before parsing it // Remove spacing from binaryTextBox before parsing it
binaryTextBox.Text = binaryTextBox.Text.Replace(" ", ""); binaryTextBox.Text = binaryTextBox.Text.Replace(" ", "");
compute();
spacing(); // Set binary output
} string paddingString = padding(compute());
binaryTextBox.Text = spacing(paddingString);
private void clearButton_Click(object sender, EventArgs e) }
{
// Clear the textboxes. private void clearButton_Click(object sender, EventArgs e)
clearTextboxes(); {
// Clear the textboxes.
// Reset focus to the textbox that is currently selected to be converted to. clearTextboxes();
if (decimalRadioButton.Checked)
currentFocus("decimalTextBox"); // Reset focus to the textbox that is currently selected to be converted to.
if (hexRadioButton.Checked) if (decimalRadioButton.Checked)
currentFocus("hexTextBox"); currentFocus("decimalTextBox");
if (binaryRadioButton.Checked) if (hexRadioButton.Checked)
currentFocus("binaryTextBox"); currentFocus("hexTextBox");
if (octalRadioButton.Checked) if (binaryRadioButton.Checked)
currentFocus("octalTextBox"); currentFocus("binaryTextBox");
} if (octalRadioButton.Checked)
currentFocus("octalTextBox");
private void exitButton_Click(object sender, EventArgs e) }
{
this.Close(); private void exitButton_Click(object sender, EventArgs e)
} {
this.Close();
private void binaryRadioButton_CheckedChanged(object sender, EventArgs e) }
{
currentFocus("binaryTextBox"); private void binaryRadioButton_CheckedChanged(object sender, EventArgs e)
} {
currentFocus("binaryTextBox");
private void hexRadioButton_CheckedChanged(object sender, EventArgs e) }
{
currentFocus("hexTextBox"); private void hexRadioButton_CheckedChanged(object sender, EventArgs e)
} {
currentFocus("hexTextBox");
private void decimalRadioButton_CheckedChanged(object sender, EventArgs e) }
{
currentFocus("decimalTextBox"); private void decimalRadioButton_CheckedChanged(object sender, EventArgs e)
} {
currentFocus("decimalTextBox");
private void octalRadioButton_CheckedChanged(object sender, EventArgs e) }
{
currentFocus("octalTextBox"); private void octalRadioButton_CheckedChanged(object sender, EventArgs e)
} {
currentFocus("octalTextBox");
private void binaryTextBox_TextChanged(object sender, EventArgs e) }
{
//debugLabel.Text = sender.GetType().ToString(); private void binaryTextBox_Enter(object sender, EventArgs e)
{
//debugLabel.Text = sender.GetType().ToString();
if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox"))) if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox")))
{ {
// Remove commas from decimalTextBox before parsing it // Remove commas from decimalTextBox before parsing it
//decimalTextBox.Text = decimalTextBox.Text.Replace(",", ""); //decimalTextBox.Text = decimalTextBox.Text.Replace(",", "");
// Remove spacing from binaryTextBox before parsing it // Remove spacing from binaryTextBox before parsing it
binaryTextBox.Text = binaryTextBox.Text.Replace(" ", ""); binaryTextBox.Text = binaryTextBox.Text.Replace(" ", "");
compute();
//spacing(); // Set binary output
} string paddingString = padding(compute());
binaryTextBox.Text = spacing(paddingString);
} }
private void hexTextBox_TextChanged(object sender, EventArgs e) }
{
//debugLabel.Text = sender.GetType().ToString(); private void hexTextBox_Enter(object sender, EventArgs e)
{
//debugLabel.Text = sender.GetType().ToString();
if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox"))) if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox")))
{ {
// Remove commas from decimalTextBox before parsing it // Remove commas from decimalTextBox before parsing it
decimalTextBox.Text = decimalTextBox.Text.Replace(",", ""); decimalTextBox.Text = decimalTextBox.Text.Replace(",", "");
// Remove spacing from binaryTextBox before parsing it // Remove spacing from binaryTextBox before parsing it
binaryTextBox.Text = binaryTextBox.Text.Replace(" ", ""); binaryTextBox.Text = binaryTextBox.Text.Replace(" ", "");
compute(); // Set binary output
spacing(); string paddingString = padding(compute());
binaryTextBox.Text = spacing(paddingString);
} }
} }
private void octalTextBox_TextChanged(object sender, EventArgs e) private void octalTextBox_Enter(object sender, EventArgs e)
{ {
//debugLabel.Text = sender.GetType().ToString(); //debugLabel.Text = sender.GetType().ToString();
if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox"))) if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox")))
{ {
// Remove commas from decimalTextBox before parsing it // Remove commas from decimalTextBox before parsing it
decimalTextBox.Text = decimalTextBox.Text.Replace(",", ""); decimalTextBox.Text = decimalTextBox.Text.Replace(",", "");
// Remove spacing from binaryTextBox before parsing it // Remove spacing from binaryTextBox before parsing it
binaryTextBox.Text = binaryTextBox.Text.Replace(" ", ""); binaryTextBox.Text = binaryTextBox.Text.Replace(" ", "");
compute(); // Set binary output
spacing(); string paddingString = padding(compute());
} binaryTextBox.Text = spacing(paddingString);
}
}
}
private void decimalTextBox_TextChanged(object sender, EventArgs e)
{ private void decimalTextBox_Enter(object sender, EventArgs e)
//debugLabel.Text = sender.GetType().ToString(); {
//debugLabel.Text = sender.GetType().ToString();
if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox"))) if (autoCompute.Checked & (sender.GetType().ToString().Equals("System.Windows.Forms.TextBox")))
{ {
// Remove commas from decimalTextBox before parsing it // Remove commas from decimalTextBox before parsing it
//decimalTextBox.Text = decimalTextBox.Text.Replace(",", ""); //decimalTextBox.Text = decimalTextBox.Text.Replace(",", "");
// Remove spacing from binaryTextBox before parsing it // Remove spacing from binaryTextBox before parsing it
binaryTextBox.Text = binaryTextBox.Text.Replace(" ", ""); binaryTextBox.Text = binaryTextBox.Text.Replace(" ", "");
compute(); // Set binary output
Thread.Sleep(250); string paddingString = padding(compute());
spacing(); binaryTextBox.Text = spacing(paddingString);
} }
} }
private void paddingToggle_CheckedChanged(object sender, EventArgs e) private void paddingToggle_CheckedChanged(object sender, EventArgs e)
{ {
if (paddingToggle.Checked) if (paddingToggle.Checked)
{ {
paddingOffsetTextBox.ReadOnly = false; paddingOffsetTextBox.ReadOnly = false;
} }
else else
{ {
paddingOffsetTextBox.ReadOnly = true; paddingOffsetTextBox.ReadOnly = true;
} }
} }
private void spacingToggle_CheckedChanged(object sender, EventArgs e) private void spacingToggle_CheckedChanged(object sender, EventArgs e)
{ {
if (spacingToggle.Checked) if (spacingToggle.Checked)
{ {
spacingOffsetTextBox.ReadOnly = false; spacingOffsetTextBox.ReadOnly = false;
} }
else else
{ {
spacingOffsetTextBox.ReadOnly = true; spacingOffsetTextBox.ReadOnly = true;
} }
} }
} }
} }

View File

@ -1,123 +1,123 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<root> <root>
<!-- <!--
Microsoft ResX Schema Microsoft ResX Schema
Version 2.0 Version 2.0
The primary goals of this format is to allow a simple XML format The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes various data types are done through the TypeConverter classes
associated with the data types. associated with the data types.
Example: Example:
... ado.net/XML headers & schema ... ... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader> <resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value> <value>[base64 mime encoded serialized .NET Framework object]</value>
</data> </data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment> <comment>This is a comment</comment>
</data> </data>
There are any number of "resheader" rows that contain simple There are any number of "resheader" rows that contain simple
name/value pairs. name/value pairs.
Each data row contains a name, and value. The row also contains a Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture. text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the Classes that don't support this are serialized and stored with the
mimetype set. mimetype set.
The mimetype is used for serialized objects, and tells the The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly: extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below. read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64 mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding. : and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64 mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding. : and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64 mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter : using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding. : and then encoded with base64 encoding.
--> -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true"> <xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType> <xsd:complexType>
<xsd:choice maxOccurs="unbounded"> <xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata"> <xsd:element name="metadata">
<xsd:complexType> <xsd:complexType>
<xsd:sequence> <xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" /> <xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence> </xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" /> <xsd:attribute ref="xml:space" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="assembly"> <xsd:element name="assembly">
<xsd:complexType> <xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="data"> <xsd:element name="data">
<xsd:complexType> <xsd:complexType>
<xsd:sequence> <xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence> </xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" /> <xsd:attribute ref="xml:space" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="resheader"> <xsd:element name="resheader">
<xsd:complexType> <xsd:complexType>
<xsd:sequence> <xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence> </xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" /> <xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
</xsd:choice> </xsd:choice>
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
</xsd:schema> </xsd:schema>
<resheader name="resmimetype"> <resheader name="resmimetype">
<value>text/microsoft-resx</value> <value>text/microsoft-resx</value>
</resheader> </resheader>
<resheader name="version"> <resheader name="version">
<value>2.0</value> <value>2.0</value>
</resheader> </resheader>
<resheader name="reader"> <resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.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="autoComputeToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="autoComputeToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value> <value>17, 17</value>
</metadata> </metadata>
</root> </root>

View File

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>FLb7o5PmMolOEu475l0smDzDYPLdyAdRY/RzK0kEIiY=</dsig:DigestValue> <dsig:DigestValue>/rV8ETvxmwvaJgmA8G++8CRvC5PaSPtVNGW0eHdPwfI=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -49,7 +49,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>RykjKwuxJc8SDlNEdmViyEwnW/WDjfua+galOLDEBps=</dsig:DigestValue> <dsig:DigestValue>6QZaxI7Qf42UjLMkjvkpSc+vkOrsV7rHWYV3m96IzcM=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>FLb7o5PmMolOEu475l0smDzDYPLdyAdRY/RzK0kEIiY=</dsig:DigestValue> <dsig:DigestValue>/rV8ETvxmwvaJgmA8G++8CRvC5PaSPtVNGW0eHdPwfI=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -25,3 +25,18 @@ Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.exe.manifest
Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.application Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.application
Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.exe Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.exe
Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.pdb Z:\home\caleb\Base-Converter\BaseConverter\obj\Debug\BaseConverter.pdb
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\bin\Debug\BaseConverter.exe.config
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\bin\Debug\BaseConverter.exe.manifest
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\bin\Debug\BaseConverter.application
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\bin\Debug\BaseConverter.exe
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\bin\Debug\BaseConverter.pdb
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.csproj.SuggestedBindingRedirects.cache
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\WindowsFormsApplication1.Form1.resources
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.exe.manifest
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.application
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.exe
Z:\media\DataEXT4\Documents\Base-Converter\BaseConverter\obj\Debug\BaseConverter.pdb

View File

@ -49,7 +49,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>RykjKwuxJc8SDlNEdmViyEwnW/WDjfua+galOLDEBps=</dsig:DigestValue> <dsig:DigestValue>6QZaxI7Qf42UjLMkjvkpSc+vkOrsV7rHWYV3m96IzcM=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>