diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-16 13:57:15 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-05-16 13:57:15 +0300 |
| commit | 5dba4e859e2806ce74d806fbd5dda37b7fa628d5 (patch) | |
| tree | 4e5bf391476a7dfc2c1cd13d020a2e581bd7e032 /Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs | |
| parent | fe19ef2694d92c91a493b9f3d1f41bc57ebbe6a2 (diff) | |
| download | Tango-5dba4e859e2806ce74d806fbd5dda37b7fa628d5.tar.gz Tango-5dba4e859e2806ce74d806fbd5dda37b7fa628d5.zip | |
Improved Tango Build Engine VS Extension.
Added HardwareSpeedSensor to DB Entities & PMR.
Added progress to proto folder compiler.
Diffstat (limited to 'Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs')
| -rw-r--r-- | Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs | 232 |
1 files changed, 232 insertions, 0 deletions
diff --git a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs new file mode 100644 index 000000000..4b95a83b0 --- /dev/null +++ b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/BuildForm.Designer.cs @@ -0,0 +1,232 @@ +namespace Tango.BuildExtensions +{ + partial class BuildForm + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.panel1 = new System.Windows.Forms.Panel(); + this.btnCancel = new System.Windows.Forms.Button(); + this.btnOK = new System.Windows.Forms.Button(); + this.chkBuildSolution = new System.Windows.Forms.CheckBox(); + this.chkUpdateAndBuildPMR = new System.Windows.Forms.CheckBox(); + this.chkGeneratePMR = new System.Windows.Forms.CheckBox(); + this.chkGenerateObservables = new System.Windows.Forms.CheckBox(); + this.chkUpdateDatabase = new System.Windows.Forms.CheckBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel1.Controls.Add(this.btnCancel); + this.panel1.Controls.Add(this.btnOK); + this.panel1.Controls.Add(this.chkBuildSolution); + this.panel1.Controls.Add(this.chkUpdateAndBuildPMR); + this.panel1.Controls.Add(this.chkGeneratePMR); + this.panel1.Controls.Add(this.chkGenerateObservables); + this.panel1.Controls.Add(this.chkUpdateDatabase); + this.panel1.Controls.Add(this.pictureBox1); + this.panel1.Controls.Add(this.label2); + this.panel1.Controls.Add(this.label1); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(596, 285); + this.panel1.TabIndex = 2; + // + // btnCancel + // + this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); + this.btnCancel.Cursor = System.Windows.Forms.Cursors.Arrow; + this.btnCancel.FlatAppearance.BorderSize = 0; + this.btnCancel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); + this.btnCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60))))); + this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnCancel.Location = new System.Drawing.Point(349, 230); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(114, 42); + this.btnCancel.TabIndex = 11; + this.btnCancel.Text = "CANCEL"; + this.btnCancel.UseVisualStyleBackColor = false; + // + // btnOK + // + this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); + this.btnOK.Cursor = System.Windows.Forms.Cursors.Arrow; + this.btnOK.FlatAppearance.BorderSize = 0; + this.btnOK.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15))))); + this.btnOK.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60))))); + this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOK.Location = new System.Drawing.Point(469, 230); + this.btnOK.Name = "btnOK"; + this.btnOK.Size = new System.Drawing.Size(114, 42); + this.btnOK.TabIndex = 10; + this.btnOK.Text = "START"; + this.btnOK.UseVisualStyleBackColor = false; + // + // chkBuildSolution + // + this.chkBuildSolution.AutoSize = true; + this.chkBuildSolution.Cursor = System.Windows.Forms.Cursors.Arrow; + this.chkBuildSolution.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkBuildSolution.Location = new System.Drawing.Point(27, 196); + this.chkBuildSolution.Name = "chkBuildSolution"; + this.chkBuildSolution.Size = new System.Drawing.Size(108, 20); + this.chkBuildSolution.TabIndex = 9; + this.chkBuildSolution.Text = "Build Solution"; + this.chkBuildSolution.UseVisualStyleBackColor = true; + // + // chkUpdateAndBuildPMR + // + this.chkUpdateAndBuildPMR.AutoSize = true; + this.chkUpdateAndBuildPMR.Cursor = System.Windows.Forms.Cursors.Arrow; + this.chkUpdateAndBuildPMR.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkUpdateAndBuildPMR.Location = new System.Drawing.Point(27, 170); + this.chkUpdateAndBuildPMR.Name = "chkUpdateAndBuildPMR"; + this.chkUpdateAndBuildPMR.Size = new System.Drawing.Size(233, 20); + this.chkUpdateAndBuildPMR.TabIndex = 8; + this.chkUpdateAndBuildPMR.Text = "Update and build PMR messages."; + this.chkUpdateAndBuildPMR.UseVisualStyleBackColor = true; + // + // chkGeneratePMR + // + this.chkGeneratePMR.AutoSize = true; + this.chkGeneratePMR.Cursor = System.Windows.Forms.Cursors.Arrow; + this.chkGeneratePMR.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkGeneratePMR.Location = new System.Drawing.Point(27, 144); + this.chkGeneratePMR.Name = "chkGeneratePMR"; + this.chkGeneratePMR.Size = new System.Drawing.Size(215, 20); + this.chkGeneratePMR.TabIndex = 7; + this.chkGeneratePMR.Text = "Generate auto PMR messages."; + this.chkGeneratePMR.UseVisualStyleBackColor = true; + // + // chkGenerateObservables + // + this.chkGenerateObservables.AutoSize = true; + this.chkGenerateObservables.Cursor = System.Windows.Forms.Cursors.Arrow; + this.chkGenerateObservables.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkGenerateObservables.Location = new System.Drawing.Point(27, 118); + this.chkGenerateObservables.Name = "chkGenerateObservables"; + this.chkGenerateObservables.Size = new System.Drawing.Size(223, 20); + this.chkGenerateObservables.TabIndex = 6; + this.chkGenerateObservables.Text = "Generate and build observables."; + this.chkGenerateObservables.UseVisualStyleBackColor = true; + // + // chkUpdateDatabase + // + this.chkUpdateDatabase.AutoSize = true; + this.chkUpdateDatabase.Cursor = System.Windows.Forms.Cursors.Arrow; + this.chkUpdateDatabase.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkUpdateDatabase.Location = new System.Drawing.Point(27, 92); + this.chkUpdateDatabase.Name = "chkUpdateDatabase"; + this.chkUpdateDatabase.Size = new System.Drawing.Size(181, 20); + this.chkUpdateDatabase.TabIndex = 5; + this.chkUpdateDatabase.Text = "Update database entities."; + this.chkUpdateDatabase.UseVisualStyleBackColor = true; + // + // pictureBox1 + // + this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Arrow; + this.pictureBox1.Image = global::Tango.BuildExtensions.Properties.Resources.machine_trans_small; + this.pictureBox1.Location = new System.Drawing.Point(499, 47); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(63, 68); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox1.TabIndex = 4; + this.pictureBox1.TabStop = false; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Cursor = System.Windows.Forms.Cursors.Arrow; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label2.Location = new System.Drawing.Point(24, 47); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(266, 16); + this.label2.TabIndex = 1; + this.label2.Text = "Select the components you want to initialize."; + // + // label1 + // + this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); + this.label1.Cursor = System.Windows.Forms.Cursors.Arrow; + this.label1.Dock = System.Windows.Forms.DockStyle.Top; + this.label1.Location = new System.Drawing.Point(0, 0); + this.label1.Margin = new System.Windows.Forms.Padding(0); + this.label1.Name = "label1"; + this.label1.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0); + this.label1.Size = new System.Drawing.Size(594, 29); + this.label1.TabIndex = 0; + this.label1.Text = "Tango Initializer"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // BuildForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20))))); + this.ClientSize = new System.Drawing.Size(596, 285); + this.ControlBox = false; + this.Controls.Add(this.panel1); + this.ForeColor = System.Drawing.Color.Gainsboro; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "BuildForm"; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Tango Initializer"; + this.TopMost = true; + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.CheckBox chkUpdateDatabase; + private System.Windows.Forms.CheckBox chkGenerateObservables; + private System.Windows.Forms.CheckBox chkGeneratePMR; + private System.Windows.Forms.CheckBox chkUpdateAndBuildPMR; + private System.Windows.Forms.CheckBox chkBuildSolution; + private System.Windows.Forms.Button btnOK; + private System.Windows.Forms.Button btnCancel; + } +}
\ No newline at end of file |
