From 203260cab1c78f8761be8550ce6d781d0c0867f6 Mon Sep 17 00:00:00 2001 From: emkael Date: Sun, 6 Jul 2014 09:33:35 +0000 Subject: * interface for contract analysis git-svn-id: https://svn.emkael.info/an9k@29 05ec0d5d-773b-4d93-9e23-c81a7ac79feb --- Analizator9000/Analizator9000/Contract.cs | 28 +- Analizator9000/Analizator9000/Form1.Designer.cs | 2016 ++++++++++++++++++----- Analizator9000/Analizator9000/Form1.cs | 49 + 3 files changed, 1671 insertions(+), 422 deletions(-) (limited to 'Analizator9000') diff --git a/Analizator9000/Analizator9000/Contract.cs b/Analizator9000/Analizator9000/Contract.cs index 0ef4fef..e6c4978 100644 --- a/Analizator9000/Analizator9000/Contract.cs +++ b/Analizator9000/Analizator9000/Contract.cs @@ -10,19 +10,27 @@ namespace Analizator9000 /// class Contract: IEquatable { + /// + /// Level of the contract. + /// + public int Level; /// /// Trump denomination, in numeric format. /// /// public int Denomination; /// + /// Modifiers - double or redouble. + /// + public int Modifiers; + /// /// Declaring player, in numeric format. /// /// public int Declarer; /// - /// Tuple constructor. + /// Constructor for contract without full information (just general trick-taking in a denomination). /// /// Trump denomination. /// Declaring player. @@ -32,6 +40,21 @@ namespace Analizator9000 this.Declarer = decl; } + /// + /// Constructor with full contract information. + /// + /// Contract level. + /// Trump denomination. + /// Declaring player. + /// Modifiers: 1 = X, 2 = XX + public Contract(int level, int denom, int decl, int modifiers = 0) + { + this.Level = level; + this.Denomination = denom; + this.Declarer = decl; + this.Modifiers = modifiers; + } + /// /// IEquatable method for comparing (checking equality) of two tuples. /// @@ -39,7 +62,8 @@ namespace Analizator9000 /// TRUE if both tuple components are equal. public bool Equals(Contract other) { - return this.Denomination == other.Denomination && this.Declarer == other.Declarer; + return this.Denomination == other.Denomination && this.Declarer == other.Declarer && + this.Level == other.Level && this.Modifiers == other.Modifiers; } } } diff --git a/Analizator9000/Analizator9000/Form1.Designer.cs b/Analizator9000/Analizator9000/Form1.Designer.cs index 619e0a5..a51f617 100644 --- a/Analizator9000/Analizator9000/Form1.Designer.cs +++ b/Analizator9000/Analizator9000/Form1.Designer.cs @@ -30,6 +30,8 @@ { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.generateGroup = new System.Windows.Forms.GroupBox(); + this.actionsBox = new System.Windows.Forms.RichTextBox(); + this.label23 = new System.Windows.Forms.Label(); this.conditionBox = new System.Windows.Forms.RichTextBox(); this.generateButton = new System.Windows.Forms.Button(); this.produceBox = new System.Windows.Forms.TextBox(); @@ -66,39 +68,6 @@ this.button1 = new System.Windows.Forms.Button(); this.generateFileNameTextBox = new System.Windows.Forms.TextBox(); this.analyzeGroup = new System.Windows.Forms.GroupBox(); - this.contractTable = new System.Windows.Forms.TableLayoutPanel(); - this.label21 = new System.Windows.Forms.Label(); - this.label17 = new System.Windows.Forms.Label(); - this.label15 = 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.checkBox5 = new System.Windows.Forms.CheckBox(); - this.checkBox6 = new System.Windows.Forms.CheckBox(); - this.checkBox7 = new System.Windows.Forms.CheckBox(); - this.checkBox8 = new System.Windows.Forms.CheckBox(); - this.checkBox9 = new System.Windows.Forms.CheckBox(); - this.checkBox10 = new System.Windows.Forms.CheckBox(); - this.checkBox11 = new System.Windows.Forms.CheckBox(); - this.checkBox12 = new System.Windows.Forms.CheckBox(); - this.checkBox13 = new System.Windows.Forms.CheckBox(); - this.checkBox14 = new System.Windows.Forms.CheckBox(); - this.checkBox15 = new System.Windows.Forms.CheckBox(); - this.checkBox16 = new System.Windows.Forms.CheckBox(); - this.checkBox17 = new System.Windows.Forms.CheckBox(); - this.checkBox18 = new System.Windows.Forms.CheckBox(); - this.checkBox19 = new System.Windows.Forms.CheckBox(); - this.checkBox20 = new System.Windows.Forms.CheckBox(); - this.label14 = new System.Windows.Forms.Label(); - this.label16 = new System.Windows.Forms.Label(); - this.label18 = new System.Windows.Forms.Label(); - this.label19 = new System.Windows.Forms.Label(); - this.label20 = new System.Windows.Forms.Label(); - this.label22 = new System.Windows.Forms.Label(); - this.button3 = new System.Windows.Forms.Button(); - this.analyzeButton = new System.Windows.Forms.Button(); - this.label13 = new System.Windows.Forms.Label(); this.button2 = new System.Windows.Forms.Button(); this.analyzeFileNameTextBox = new System.Windows.Forms.TextBox(); this.generateFileDialog = new System.Windows.Forms.OpenFileDialog(); @@ -106,13 +75,132 @@ this.statusListBox = new System.Windows.Forms.ListBox(); this.analyzeFileDialog = new System.Windows.Forms.OpenFileDialog(); this.resultTextBox = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.button3 = new System.Windows.Forms.Button(); + this.label22 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.checkBox20 = new System.Windows.Forms.CheckBox(); + this.checkBox19 = new System.Windows.Forms.CheckBox(); + this.checkBox18 = new System.Windows.Forms.CheckBox(); + this.checkBox17 = new System.Windows.Forms.CheckBox(); + this.checkBox16 = new System.Windows.Forms.CheckBox(); + this.checkBox15 = new System.Windows.Forms.CheckBox(); + this.checkBox14 = new System.Windows.Forms.CheckBox(); + this.checkBox13 = new System.Windows.Forms.CheckBox(); + this.checkBox12 = new System.Windows.Forms.CheckBox(); + this.checkBox11 = new System.Windows.Forms.CheckBox(); + this.checkBox10 = new System.Windows.Forms.CheckBox(); + this.checkBox9 = new System.Windows.Forms.CheckBox(); + this.checkBox8 = new System.Windows.Forms.CheckBox(); + this.checkBox7 = new System.Windows.Forms.CheckBox(); + this.checkBox6 = new System.Windows.Forms.CheckBox(); + this.checkBox5 = new System.Windows.Forms.CheckBox(); + this.checkBox4 = new System.Windows.Forms.CheckBox(); + this.checkBox3 = new System.Windows.Forms.CheckBox(); + this.checkBox2 = new System.Windows.Forms.CheckBox(); + this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.label15 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.contractTable = new System.Windows.Forms.TableLayoutPanel(); + this.analyzeButton = new System.Windows.Forms.Button(); this.abortButton = new System.Windows.Forms.Button(); - this.label23 = new System.Windows.Forms.Label(); - this.actionsBox = new System.Windows.Forms.RichTextBox(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.tabPage2 = new System.Windows.Forms.TabPage(); + this.fullContractTable = new System.Windows.Forms.TableLayoutPanel(); + this.textBox29 = new System.Windows.Forms.TextBox(); + this.textBox22 = new System.Windows.Forms.TextBox(); + this.textBox23 = new System.Windows.Forms.TextBox(); + this.textBox24 = new System.Windows.Forms.TextBox(); + this.textBox25 = new System.Windows.Forms.TextBox(); + this.textBox26 = new System.Windows.Forms.TextBox(); + this.textBox27 = new System.Windows.Forms.TextBox(); + this.textBox28 = new System.Windows.Forms.TextBox(); + this.textBox15 = new System.Windows.Forms.TextBox(); + this.textBox16 = new System.Windows.Forms.TextBox(); + this.textBox17 = new System.Windows.Forms.TextBox(); + this.textBox18 = new System.Windows.Forms.TextBox(); + this.textBox19 = new System.Windows.Forms.TextBox(); + this.textBox20 = new System.Windows.Forms.TextBox(); + this.textBox21 = new System.Windows.Forms.TextBox(); + this.textBox9 = new System.Windows.Forms.TextBox(); + this.textBox10 = new System.Windows.Forms.TextBox(); + this.textBox11 = new System.Windows.Forms.TextBox(); + this.textBox12 = new System.Windows.Forms.TextBox(); + this.textBox13 = new System.Windows.Forms.TextBox(); + this.textBox14 = new System.Windows.Forms.TextBox(); + this.label24 = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.label27 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.label31 = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.comboBox1 = new System.Windows.Forms.ComboBox(); + this.comboBox2 = new System.Windows.Forms.ComboBox(); + this.comboBox3 = new System.Windows.Forms.ComboBox(); + this.comboBox4 = new System.Windows.Forms.ComboBox(); + this.comboBox5 = new System.Windows.Forms.ComboBox(); + this.comboBox6 = new System.Windows.Forms.ComboBox(); + this.comboBox7 = new System.Windows.Forms.ComboBox(); + this.comboBox8 = new System.Windows.Forms.ComboBox(); + this.comboBox9 = new System.Windows.Forms.ComboBox(); + this.comboBox10 = new System.Windows.Forms.ComboBox(); + this.comboBox11 = new System.Windows.Forms.ComboBox(); + this.comboBox12 = new System.Windows.Forms.ComboBox(); + this.comboBox13 = new System.Windows.Forms.ComboBox(); + this.comboBox14 = new System.Windows.Forms.ComboBox(); + this.comboBox15 = new System.Windows.Forms.ComboBox(); + this.comboBox16 = new System.Windows.Forms.ComboBox(); + this.comboBox17 = new System.Windows.Forms.ComboBox(); + this.comboBox18 = new System.Windows.Forms.ComboBox(); + this.comboBox19 = new System.Windows.Forms.ComboBox(); + this.comboBox20 = new System.Windows.Forms.ComboBox(); + this.comboBox21 = new System.Windows.Forms.ComboBox(); + this.comboBox22 = new System.Windows.Forms.ComboBox(); + this.comboBox23 = new System.Windows.Forms.ComboBox(); + this.comboBox24 = new System.Windows.Forms.ComboBox(); + this.comboBox25 = new System.Windows.Forms.ComboBox(); + this.comboBox26 = new System.Windows.Forms.ComboBox(); + this.comboBox27 = new System.Windows.Forms.ComboBox(); + this.comboBox28 = new System.Windows.Forms.ComboBox(); + this.numericUpDown1 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown2 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown3 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown4 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown5 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown6 = new System.Windows.Forms.NumericUpDown(); + this.numericUpDown7 = new System.Windows.Forms.NumericUpDown(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.textBox4 = new System.Windows.Forms.TextBox(); + this.textBox5 = new System.Windows.Forms.TextBox(); + this.textBox6 = new System.Windows.Forms.TextBox(); + this.textBox7 = new System.Windows.Forms.TextBox(); + this.button5 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); this.generateGroup.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout(); this.analyzeGroup.SuspendLayout(); this.contractTable.SuspendLayout(); + this.tabControl1.SuspendLayout(); + this.tabPage1.SuspendLayout(); + this.tabPage2.SuspendLayout(); + this.fullContractTable.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown7)).BeginInit(); this.SuspendLayout(); // // generateGroup @@ -137,6 +225,25 @@ this.generateGroup.TabStop = false; this.generateGroup.Text = "Generowanie"; // + // actionsBox + // + this.actionsBox.AcceptsTab = true; + this.actionsBox.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.actionsBox.Location = new System.Drawing.Point(269, 202); + this.actionsBox.Name = "actionsBox"; + this.actionsBox.Size = new System.Drawing.Size(217, 137); + this.actionsBox.TabIndex = 13; + this.actionsBox.Text = ""; + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Location = new System.Drawing.Point(269, 186); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(134, 13); + this.label23.TabIndex = 12; + this.label23.Text = "Zdarzenia do sprawdzenia:"; + // // conditionBox // this.conditionBox.AcceptsTab = true; @@ -533,244 +640,202 @@ // // analyzeGroup // - this.analyzeGroup.Controls.Add(this.contractTable); - this.analyzeGroup.Controls.Add(this.analyzeButton); - this.analyzeGroup.Controls.Add(this.label13); this.analyzeGroup.Controls.Add(this.button2); this.analyzeGroup.Controls.Add(this.analyzeFileNameTextBox); this.analyzeGroup.Location = new System.Drawing.Point(514, 12); this.analyzeGroup.Name = "analyzeGroup"; - this.analyzeGroup.Size = new System.Drawing.Size(492, 179); + this.analyzeGroup.Size = new System.Drawing.Size(492, 50); this.analyzeGroup.TabIndex = 1; this.analyzeGroup.TabStop = false; this.analyzeGroup.Text = "Analiza"; // - // contractTable + // button2 // - this.contractTable.ColumnCount = 6; - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); - this.contractTable.Controls.Add(this.label21, 0, 3); - this.contractTable.Controls.Add(this.label17, 5, 0); - this.contractTable.Controls.Add(this.label15, 3, 0); - this.contractTable.Controls.Add(this.checkBox1, 1, 1); - this.contractTable.Controls.Add(this.checkBox2, 1, 2); - this.contractTable.Controls.Add(this.checkBox3, 1, 3); - this.contractTable.Controls.Add(this.checkBox4, 1, 4); - this.contractTable.Controls.Add(this.checkBox5, 2, 1); - this.contractTable.Controls.Add(this.checkBox6, 2, 2); - this.contractTable.Controls.Add(this.checkBox7, 2, 3); - this.contractTable.Controls.Add(this.checkBox8, 2, 4); - this.contractTable.Controls.Add(this.checkBox9, 3, 1); - this.contractTable.Controls.Add(this.checkBox10, 4, 1); - this.contractTable.Controls.Add(this.checkBox11, 5, 1); - this.contractTable.Controls.Add(this.checkBox12, 3, 2); - this.contractTable.Controls.Add(this.checkBox13, 4, 2); - this.contractTable.Controls.Add(this.checkBox14, 5, 2); - this.contractTable.Controls.Add(this.checkBox15, 3, 3); - this.contractTable.Controls.Add(this.checkBox16, 4, 3); - this.contractTable.Controls.Add(this.checkBox17, 5, 3); - this.contractTable.Controls.Add(this.checkBox18, 3, 4); - this.contractTable.Controls.Add(this.checkBox19, 4, 4); - this.contractTable.Controls.Add(this.checkBox20, 5, 4); - this.contractTable.Controls.Add(this.label14, 2, 0); - this.contractTable.Controls.Add(this.label16, 4, 0); - this.contractTable.Controls.Add(this.label18, 1, 0); - this.contractTable.Controls.Add(this.label19, 0, 1); - this.contractTable.Controls.Add(this.label20, 0, 2); - this.contractTable.Controls.Add(this.label22, 0, 4); - this.contractTable.Controls.Add(this.button3, 0, 0); - this.contractTable.Location = new System.Drawing.Point(10, 63); - this.contractTable.Name = "contractTable"; - this.contractTable.RowCount = 5; - this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); - this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); - this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); - this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); - this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); - this.contractTable.Size = new System.Drawing.Size(210, 110); - this.contractTable.TabIndex = 12; + this.button2.Location = new System.Drawing.Point(411, 20); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(75, 23); + this.button2.TabIndex = 1; + this.button2.Text = "Wybierz plik"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); // - // label21 + // analyzeFileNameTextBox // - this.label21.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.label21.AutoSize = true; - this.label21.Location = new System.Drawing.Point(14, 70); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(17, 13); - this.label21.TabIndex = 29; - this.label21.Text = "S:"; - this.label21.Click += new System.EventHandler(this.label21_Click); + this.analyzeFileNameTextBox.Location = new System.Drawing.Point(7, 20); + this.analyzeFileNameTextBox.Name = "analyzeFileNameTextBox"; + this.analyzeFileNameTextBox.ReadOnly = true; + this.analyzeFileNameTextBox.Size = new System.Drawing.Size(398, 20); + this.analyzeFileNameTextBox.TabIndex = 0; // - // label17 + // generateFileDialog // - this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label17.AutoSize = true; - this.label17.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label17.Location = new System.Drawing.Point(173, 0); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(34, 22); - this.label17.TabIndex = 24; - this.label17.Text = "♣"; - this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.label17.Click += new System.EventHandler(this.label17_Click); + this.generateFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // - // label15 + // progressBar // - this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label15.AutoSize = true; - this.label15.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label15.ForeColor = System.Drawing.Color.Red; - this.label15.Location = new System.Drawing.Point(105, 0); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(28, 22); - this.label15.TabIndex = 24; - this.label15.Text = "♥"; - this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.label15.Click += new System.EventHandler(this.label15_Click); + this.progressBar.Location = new System.Drawing.Point(514, 327); + this.progressBar.Name = "progressBar"; + this.progressBar.Size = new System.Drawing.Size(492, 23); + this.progressBar.TabIndex = 2; // - // checkBox1 + // statusListBox // - this.checkBox1.AutoSize = true; - this.checkBox1.Location = new System.Drawing.Point(37, 25); - this.checkBox1.Name = "checkBox1"; - this.checkBox1.Size = new System.Drawing.Size(15, 14); - this.checkBox1.TabIndex = 0; - this.checkBox1.UseVisualStyleBackColor = true; + this.statusListBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.statusListBox.FormattingEnabled = true; + this.statusListBox.Location = new System.Drawing.Point(514, 356); + this.statusListBox.Name = "statusListBox"; + this.statusListBox.Size = new System.Drawing.Size(492, 95); + this.statusListBox.TabIndex = 3; // - // checkBox2 + // analyzeFileDialog // - this.checkBox2.AutoSize = true; - this.checkBox2.Location = new System.Drawing.Point(37, 47); - this.checkBox2.Name = "checkBox2"; - this.checkBox2.Size = new System.Drawing.Size(15, 14); - this.checkBox2.TabIndex = 1; - this.checkBox2.UseVisualStyleBackColor = true; + this.analyzeFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.analyzeFileDialog_FileOk); // - // checkBox3 + // resultTextBox // - this.checkBox3.AutoSize = true; - this.checkBox3.Location = new System.Drawing.Point(37, 69); - this.checkBox3.Name = "checkBox3"; - this.checkBox3.Size = new System.Drawing.Size(15, 14); - this.checkBox3.TabIndex = 2; - this.checkBox3.UseVisualStyleBackColor = true; + this.resultTextBox.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.resultTextBox.Location = new System.Drawing.Point(3, 129); + this.resultTextBox.Multiline = true; + this.resultTextBox.Name = "resultTextBox"; + this.resultTextBox.ReadOnly = true; + this.resultTextBox.Size = new System.Drawing.Size(475, 92); + this.resultTextBox.TabIndex = 4; // - // checkBox4 + // label13 // - this.checkBox4.AutoSize = true; - this.checkBox4.Location = new System.Drawing.Point(37, 91); - this.checkBox4.Name = "checkBox4"; - this.checkBox4.Size = new System.Drawing.Size(15, 14); - this.checkBox4.TabIndex = 3; - this.checkBox4.UseVisualStyleBackColor = true; + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(0, 3); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(50, 13); + this.label13.TabIndex = 2; + this.label13.Text = "Kontrakt:"; // - // checkBox5 + // button3 // - this.checkBox5.AutoSize = true; - this.checkBox5.Location = new System.Drawing.Point(71, 25); - this.checkBox5.Name = "checkBox5"; - this.checkBox5.Size = new System.Drawing.Size(15, 14); - this.checkBox5.TabIndex = 4; - this.checkBox5.UseVisualStyleBackColor = true; + this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.button3.Location = new System.Drawing.Point(13, 3); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(18, 16); + this.button3.TabIndex = 31; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); // - // checkBox6 + // label22 // - this.checkBox6.AutoSize = true; - this.checkBox6.Location = new System.Drawing.Point(71, 47); - this.checkBox6.Name = "checkBox6"; - this.checkBox6.Size = new System.Drawing.Size(15, 14); - this.checkBox6.TabIndex = 5; - this.checkBox6.UseVisualStyleBackColor = true; + this.label22.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.label22.AutoSize = true; + this.label22.Location = new System.Drawing.Point(10, 92); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(21, 13); + this.label22.TabIndex = 30; + this.label22.Text = "W:"; + this.label22.Click += new System.EventHandler(this.label22_Click); // - // checkBox7 + // label20 // - this.checkBox7.AutoSize = true; - this.checkBox7.Location = new System.Drawing.Point(71, 69); - this.checkBox7.Name = "checkBox7"; - this.checkBox7.Size = new System.Drawing.Size(15, 14); - this.checkBox7.TabIndex = 6; - this.checkBox7.UseVisualStyleBackColor = true; + this.label20.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.label20.AutoSize = true; + this.label20.Location = new System.Drawing.Point(14, 48); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(17, 13); + this.label20.TabIndex = 28; + this.label20.Text = "E:"; + this.label20.Click += new System.EventHandler(this.label20_Click); // - // checkBox8 + // label19 // - this.checkBox8.AutoSize = true; - this.checkBox8.Location = new System.Drawing.Point(71, 91); - this.checkBox8.Name = "checkBox8"; - this.checkBox8.Size = new System.Drawing.Size(15, 14); - this.checkBox8.TabIndex = 7; - this.checkBox8.UseVisualStyleBackColor = true; + this.label19.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.label19.AutoSize = true; + this.label19.Location = new System.Drawing.Point(13, 26); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(18, 13); + this.label19.TabIndex = 27; + this.label19.Text = "N:"; + this.label19.Click += new System.EventHandler(this.label19_Click); // - // checkBox9 + // label18 // - this.checkBox9.AutoSize = true; - this.checkBox9.Location = new System.Drawing.Point(105, 25); - this.checkBox9.Name = "checkBox9"; - this.checkBox9.Size = new System.Drawing.Size(15, 14); - this.checkBox9.TabIndex = 8; - this.checkBox9.UseVisualStyleBackColor = true; + this.label18.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("Lucida Sans Unicode", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label18.ForeColor = System.Drawing.Color.Blue; + this.label18.Location = new System.Drawing.Point(37, 0); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(28, 22); + this.label18.TabIndex = 26; + this.label18.Text = "NT"; + this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label18.Click += new System.EventHandler(this.label18_Click); // - // checkBox10 + // label16 // - this.checkBox10.AutoSize = true; - this.checkBox10.Location = new System.Drawing.Point(139, 25); - this.checkBox10.Name = "checkBox10"; - this.checkBox10.Size = new System.Drawing.Size(15, 14); - this.checkBox10.TabIndex = 9; - this.checkBox10.UseVisualStyleBackColor = true; + this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label16.ForeColor = System.Drawing.Color.Red; + this.label16.Location = new System.Drawing.Point(139, 0); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(28, 22); + this.label16.TabIndex = 25; + this.label16.Text = "♦"; + this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label16.Click += new System.EventHandler(this.label16_Click); // - // checkBox11 + // label14 // - this.checkBox11.AutoSize = true; - this.checkBox11.Location = new System.Drawing.Point(173, 25); - this.checkBox11.Name = "checkBox11"; - this.checkBox11.Size = new System.Drawing.Size(15, 14); - this.checkBox11.TabIndex = 10; - this.checkBox11.UseVisualStyleBackColor = true; + this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label14.AutoSize = true; + this.label14.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label14.Location = new System.Drawing.Point(71, 0); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(28, 22); + this.label14.TabIndex = 21; + this.label14.Text = "♠"; + this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label14.Click += new System.EventHandler(this.label14_Click); // - // checkBox12 + // checkBox20 // - this.checkBox12.AutoSize = true; - this.checkBox12.Location = new System.Drawing.Point(105, 47); - this.checkBox12.Name = "checkBox12"; - this.checkBox12.Size = new System.Drawing.Size(15, 14); - this.checkBox12.TabIndex = 11; - this.checkBox12.UseVisualStyleBackColor = true; + this.checkBox20.AutoSize = true; + this.checkBox20.Location = new System.Drawing.Point(173, 91); + this.checkBox20.Name = "checkBox20"; + this.checkBox20.Size = new System.Drawing.Size(15, 14); + this.checkBox20.TabIndex = 19; + this.checkBox20.UseVisualStyleBackColor = true; // - // checkBox13 + // checkBox19 // - this.checkBox13.AutoSize = true; - this.checkBox13.Location = new System.Drawing.Point(139, 47); - this.checkBox13.Name = "checkBox13"; - this.checkBox13.Size = new System.Drawing.Size(15, 14); - this.checkBox13.TabIndex = 12; - this.checkBox13.UseVisualStyleBackColor = true; + this.checkBox19.AutoSize = true; + this.checkBox19.Location = new System.Drawing.Point(139, 91); + this.checkBox19.Name = "checkBox19"; + this.checkBox19.Size = new System.Drawing.Size(15, 14); + this.checkBox19.TabIndex = 18; + this.checkBox19.UseVisualStyleBackColor = true; // - // checkBox14 + // checkBox18 // - this.checkBox14.AutoSize = true; - this.checkBox14.Location = new System.Drawing.Point(173, 47); - this.checkBox14.Name = "checkBox14"; - this.checkBox14.Size = new System.Drawing.Size(15, 14); - this.checkBox14.TabIndex = 13; - this.checkBox14.UseVisualStyleBackColor = true; + this.checkBox18.AutoSize = true; + this.checkBox18.Location = new System.Drawing.Point(105, 91); + this.checkBox18.Name = "checkBox18"; + this.checkBox18.Size = new System.Drawing.Size(15, 14); + this.checkBox18.TabIndex = 17; + this.checkBox18.UseVisualStyleBackColor = true; // - // checkBox15 + // checkBox17 // - this.checkBox15.AutoSize = true; - this.checkBox15.Location = new System.Drawing.Point(105, 69); - this.checkBox15.Name = "checkBox15"; - this.checkBox15.Size = new System.Drawing.Size(15, 14); - this.checkBox15.TabIndex = 14; - this.checkBox15.UseVisualStyleBackColor = true; + this.checkBox17.AutoSize = true; + this.checkBox17.Location = new System.Drawing.Point(173, 69); + this.checkBox17.Name = "checkBox17"; + this.checkBox17.Size = new System.Drawing.Size(15, 14); + this.checkBox17.TabIndex = 16; + this.checkBox17.UseVisualStyleBackColor = true; // // checkBox16 // @@ -781,208 +846,247 @@ this.checkBox16.TabIndex = 15; this.checkBox16.UseVisualStyleBackColor = true; // - // checkBox17 - // - this.checkBox17.AutoSize = true; - this.checkBox17.Location = new System.Drawing.Point(173, 69); - this.checkBox17.Name = "checkBox17"; - this.checkBox17.Size = new System.Drawing.Size(15, 14); - this.checkBox17.TabIndex = 16; - this.checkBox17.UseVisualStyleBackColor = true; + // checkBox15 // - // checkBox18 + this.checkBox15.AutoSize = true; + this.checkBox15.Location = new System.Drawing.Point(105, 69); + this.checkBox15.Name = "checkBox15"; + this.checkBox15.Size = new System.Drawing.Size(15, 14); + this.checkBox15.TabIndex = 14; + this.checkBox15.UseVisualStyleBackColor = true; // - this.checkBox18.AutoSize = true; - this.checkBox18.Location = new System.Drawing.Point(105, 91); - this.checkBox18.Name = "checkBox18"; - this.checkBox18.Size = new System.Drawing.Size(15, 14); - this.checkBox18.TabIndex = 17; - this.checkBox18.UseVisualStyleBackColor = true; + // checkBox14 // - // checkBox19 + this.checkBox14.AutoSize = true; + this.checkBox14.Location = new System.Drawing.Point(173, 47); + this.checkBox14.Name = "checkBox14"; + this.checkBox14.Size = new System.Drawing.Size(15, 14); + this.checkBox14.TabIndex = 13; + this.checkBox14.UseVisualStyleBackColor = true; // - this.checkBox19.AutoSize = true; - this.checkBox19.Location = new System.Drawing.Point(139, 91); - this.checkBox19.Name = "checkBox19"; - this.checkBox19.Size = new System.Drawing.Size(15, 14); - this.checkBox19.TabIndex = 18; - this.checkBox19.UseVisualStyleBackColor = true; + // checkBox13 // - // checkBox20 + this.checkBox13.AutoSize = true; + this.checkBox13.Location = new System.Drawing.Point(139, 47); + this.checkBox13.Name = "checkBox13"; + this.checkBox13.Size = new System.Drawing.Size(15, 14); + this.checkBox13.TabIndex = 12; + this.checkBox13.UseVisualStyleBackColor = true; // - this.checkBox20.AutoSize = true; - this.checkBox20.Location = new System.Drawing.Point(173, 91); - this.checkBox20.Name = "checkBox20"; - this.checkBox20.Size = new System.Drawing.Size(15, 14); - this.checkBox20.TabIndex = 19; - this.checkBox20.UseVisualStyleBackColor = true; + // checkBox12 // - // label14 + this.checkBox12.AutoSize = true; + this.checkBox12.Location = new System.Drawing.Point(105, 47); + this.checkBox12.Name = "checkBox12"; + this.checkBox12.Size = new System.Drawing.Size(15, 14); + this.checkBox12.TabIndex = 11; + this.checkBox12.UseVisualStyleBackColor = true; // - this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label14.AutoSize = true; - this.label14.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label14.Location = new System.Drawing.Point(71, 0); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(28, 22); - this.label14.TabIndex = 21; - this.label14.Text = "♠"; - this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.label14.Click += new System.EventHandler(this.label14_Click); + // checkBox11 // - // label16 + this.checkBox11.AutoSize = true; + this.checkBox11.Location = new System.Drawing.Point(173, 25); + this.checkBox11.Name = "checkBox11"; + this.checkBox11.Size = new System.Drawing.Size(15, 14); + this.checkBox11.TabIndex = 10; + this.checkBox11.UseVisualStyleBackColor = true; // - this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label16.AutoSize = true; - this.label16.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label16.ForeColor = System.Drawing.Color.Red; - this.label16.Location = new System.Drawing.Point(139, 0); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(28, 22); - this.label16.TabIndex = 25; - this.label16.Text = "♦"; - this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.label16.Click += new System.EventHandler(this.label16_Click); + // checkBox10 // - // label18 + this.checkBox10.AutoSize = true; + this.checkBox10.Location = new System.Drawing.Point(139, 25); + this.checkBox10.Name = "checkBox10"; + this.checkBox10.Size = new System.Drawing.Size(15, 14); + this.checkBox10.TabIndex = 9; + this.checkBox10.UseVisualStyleBackColor = true; // - this.label18.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.label18.AutoSize = true; - this.label18.Font = new System.Drawing.Font("Lucida Sans Unicode", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label18.ForeColor = System.Drawing.Color.Blue; - this.label18.Location = new System.Drawing.Point(37, 0); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(28, 22); - this.label18.TabIndex = 26; - this.label18.Text = "NT"; - this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.label18.Click += new System.EventHandler(this.label18_Click); + // checkBox9 // - // label19 + this.checkBox9.AutoSize = true; + this.checkBox9.Location = new System.Drawing.Point(105, 25); + this.checkBox9.Name = "checkBox9"; + this.checkBox9.Size = new System.Drawing.Size(15, 14); + this.checkBox9.TabIndex = 8; + this.checkBox9.UseVisualStyleBackColor = true; // - this.label19.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.label19.AutoSize = true; - this.label19.Location = new System.Drawing.Point(13, 26); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(18, 13); - this.label19.TabIndex = 27; - this.label19.Text = "N:"; - this.label19.Click += new System.EventHandler(this.label19_Click); + // checkBox8 // - // label20 + this.checkBox8.AutoSize = true; + this.checkBox8.Location = new System.Drawing.Point(71, 91); + this.checkBox8.Name = "checkBox8"; + this.checkBox8.Size = new System.Drawing.Size(15, 14); + this.checkBox8.TabIndex = 7; + this.checkBox8.UseVisualStyleBackColor = true; // - this.label20.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.label20.AutoSize = true; - this.label20.Location = new System.Drawing.Point(14, 48); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(17, 13); - this.label20.TabIndex = 28; - this.label20.Text = "E:"; - this.label20.Click += new System.EventHandler(this.label20_Click); + // checkBox7 // - // label22 + this.checkBox7.AutoSize = true; + this.checkBox7.Location = new System.Drawing.Point(71, 69); + this.checkBox7.Name = "checkBox7"; + this.checkBox7.Size = new System.Drawing.Size(15, 14); + this.checkBox7.TabIndex = 6; + this.checkBox7.UseVisualStyleBackColor = true; // - this.label22.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.label22.AutoSize = true; - this.label22.Location = new System.Drawing.Point(10, 92); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(21, 13); - this.label22.TabIndex = 30; - this.label22.Text = "W:"; - this.label22.Click += new System.EventHandler(this.label22_Click); + // checkBox6 // - // button3 + this.checkBox6.AutoSize = true; + this.checkBox6.Location = new System.Drawing.Point(71, 47); + this.checkBox6.Name = "checkBox6"; + this.checkBox6.Size = new System.Drawing.Size(15, 14); + this.checkBox6.TabIndex = 5; + this.checkBox6.UseVisualStyleBackColor = true; // - this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.button3.Location = new System.Drawing.Point(13, 3); - this.button3.Name = "button3"; - this.button3.Size = new System.Drawing.Size(18, 16); - this.button3.TabIndex = 31; - this.button3.UseVisualStyleBackColor = true; - this.button3.Click += new System.EventHandler(this.button3_Click); + // checkBox5 // - // analyzeButton + this.checkBox5.AutoSize = true; + this.checkBox5.Location = new System.Drawing.Point(71, 25); + this.checkBox5.Name = "checkBox5"; + this.checkBox5.Size = new System.Drawing.Size(15, 14); + this.checkBox5.TabIndex = 4; + this.checkBox5.UseVisualStyleBackColor = true; // - this.analyzeButton.Location = new System.Drawing.Point(226, 47); - this.analyzeButton.Name = "analyzeButton"; - this.analyzeButton.Size = new System.Drawing.Size(260, 99); - this.analyzeButton.TabIndex = 11; - this.analyzeButton.Text = "ANALIZUJ"; - this.analyzeButton.UseVisualStyleBackColor = true; - this.analyzeButton.Click += new System.EventHandler(this.analyzeButton_Click); + // checkBox4 // - // label13 + this.checkBox4.AutoSize = true; + this.checkBox4.Location = new System.Drawing.Point(37, 91); + this.checkBox4.Name = "checkBox4"; + this.checkBox4.Size = new System.Drawing.Size(15, 14); + this.checkBox4.TabIndex = 3; + this.checkBox4.UseVisualStyleBackColor = true; // - this.label13.AutoSize = true; - this.label13.Location = new System.Drawing.Point(7, 47); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(50, 13); - this.label13.TabIndex = 2; - this.label13.Text = "Kontrakt:"; + // checkBox3 // - // button2 + this.checkBox3.AutoSize = true; + this.checkBox3.Location = new System.Drawing.Point(37, 69); + this.checkBox3.Name = "checkBox3"; + this.checkBox3.Size = new System.Drawing.Size(15, 14); + this.checkBox3.TabIndex = 2; + this.checkBox3.UseVisualStyleBackColor = true; // - this.button2.Location = new System.Drawing.Point(411, 20); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(75, 23); - this.button2.TabIndex = 1; - this.button2.Text = "Wybierz plik"; - this.button2.UseVisualStyleBackColor = true; - this.button2.Click += new System.EventHandler(this.button2_Click); + // checkBox2 // - // analyzeFileNameTextBox + this.checkBox2.AutoSize = true; + this.checkBox2.Location = new System.Drawing.Point(37, 47); + this.checkBox2.Name = "checkBox2"; + this.checkBox2.Size = new System.Drawing.Size(15, 14); + this.checkBox2.TabIndex = 1; + this.checkBox2.UseVisualStyleBackColor = true; // - this.analyzeFileNameTextBox.Location = new System.Drawing.Point(7, 20); - this.analyzeFileNameTextBox.Name = "analyzeFileNameTextBox"; - this.analyzeFileNameTextBox.ReadOnly = true; - this.analyzeFileNameTextBox.Size = new System.Drawing.Size(398, 20); - this.analyzeFileNameTextBox.TabIndex = 0; + // checkBox1 // - // generateFileDialog + this.checkBox1.AutoSize = true; + this.checkBox1.Location = new System.Drawing.Point(37, 25); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.Size = new System.Drawing.Size(15, 14); + this.checkBox1.TabIndex = 0; + this.checkBox1.UseVisualStyleBackColor = true; // - this.generateFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); + // label15 // - // progressBar + this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label15.ForeColor = System.Drawing.Color.Red; + this.label15.Location = new System.Drawing.Point(105, 0); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(28, 22); + this.label15.TabIndex = 24; + this.label15.Text = "♥"; + this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label15.Click += new System.EventHandler(this.label15_Click); // - this.progressBar.Location = new System.Drawing.Point(531, 312); - this.progressBar.Name = "progressBar"; - this.progressBar.Size = new System.Drawing.Size(475, 23); - this.progressBar.TabIndex = 2; + // label17 // - // statusListBox + this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("Lucida Sans Unicode", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label17.Location = new System.Drawing.Point(173, 0); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(34, 22); + this.label17.TabIndex = 24; + this.label17.Text = "♣"; + this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label17.Click += new System.EventHandler(this.label17_Click); // - this.statusListBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.statusListBox.FormattingEnabled = true; - this.statusListBox.Location = new System.Drawing.Point(531, 343); - this.statusListBox.Name = "statusListBox"; - this.statusListBox.Size = new System.Drawing.Size(475, 108); - this.statusListBox.TabIndex = 3; + // label21 // - // analyzeFileDialog + this.label21.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.label21.AutoSize = true; + this.label21.Location = new System.Drawing.Point(14, 70); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(17, 13); + this.label21.TabIndex = 29; + this.label21.Text = "S:"; + this.label21.Click += new System.EventHandler(this.label21_Click); // - this.analyzeFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.analyzeFileDialog_FileOk); + // contractTable // - // resultTextBox + this.contractTable.ColumnCount = 6; + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.contractTable.Controls.Add(this.label21, 0, 3); + this.contractTable.Controls.Add(this.label17, 5, 0); + this.contractTable.Controls.Add(this.label15, 3, 0); + this.contractTable.Controls.Add(this.checkBox1, 1, 1); + this.contractTable.Controls.Add(this.checkBox2, 1, 2); + this.contractTable.Controls.Add(this.checkBox3, 1, 3); + this.contractTable.Controls.Add(this.checkBox4, 1, 4); + this.contractTable.Controls.Add(this.checkBox5, 2, 1); + this.contractTable.Controls.Add(this.checkBox6, 2, 2); + this.contractTable.Controls.Add(this.checkBox7, 2, 3); + this.contractTable.Controls.Add(this.checkBox8, 2, 4); + this.contractTable.Controls.Add(this.checkBox9, 3, 1); + this.contractTable.Controls.Add(this.checkBox10, 4, 1); + this.contractTable.Controls.Add(this.checkBox11, 5, 1); + this.contractTable.Controls.Add(this.checkBox12, 3, 2); + this.contractTable.Controls.Add(this.checkBox13, 4, 2); + this.contractTable.Controls.Add(this.checkBox14, 5, 2); + this.contractTable.Controls.Add(this.checkBox15, 3, 3); + this.contractTable.Controls.Add(this.checkBox16, 4, 3); + this.contractTable.Controls.Add(this.checkBox17, 5, 3); + this.contractTable.Controls.Add(this.checkBox18, 3, 4); + this.contractTable.Controls.Add(this.checkBox19, 4, 4); + this.contractTable.Controls.Add(this.checkBox20, 5, 4); + this.contractTable.Controls.Add(this.label14, 2, 0); + this.contractTable.Controls.Add(this.label16, 4, 0); + this.contractTable.Controls.Add(this.label18, 1, 0); + this.contractTable.Controls.Add(this.label19, 0, 1); + this.contractTable.Controls.Add(this.label20, 0, 2); + this.contractTable.Controls.Add(this.label22, 0, 4); + this.contractTable.Controls.Add(this.button3, 0, 0); + this.contractTable.Location = new System.Drawing.Point(3, 18); + this.contractTable.Name = "contractTable"; + this.contractTable.RowCount = 5; + this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.contractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.contractTable.Size = new System.Drawing.Size(210, 110); + this.contractTable.TabIndex = 12; // - this.resultTextBox.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.resultTextBox.Location = new System.Drawing.Point(531, 197); - this.resultTextBox.Multiline = true; - this.resultTextBox.Name = "resultTextBox"; - this.resultTextBox.ReadOnly = true; - this.resultTextBox.Size = new System.Drawing.Size(475, 109); - this.resultTextBox.TabIndex = 4; + // analyzeButton + // + this.analyzeButton.Location = new System.Drawing.Point(222, 6); + this.analyzeButton.Name = "analyzeButton"; + this.analyzeButton.Size = new System.Drawing.Size(260, 87); + this.analyzeButton.TabIndex = 11; + this.analyzeButton.Text = "ANALIZUJ"; + this.analyzeButton.UseVisualStyleBackColor = true; + this.analyzeButton.Click += new System.EventHandler(this.analyzeButton_Click); // // abortButton // this.abortButton.Enabled = false; - this.abortButton.Location = new System.Drawing.Point(740, 156); + this.abortButton.Location = new System.Drawing.Point(222, 92); this.abortButton.Name = "abortButton"; this.abortButton.Size = new System.Drawing.Size(260, 34); this.abortButton.TabIndex = 13; @@ -990,32 +1094,1015 @@ this.abortButton.UseVisualStyleBackColor = true; this.abortButton.Click += new System.EventHandler(this.abortButton_Click); // - // label23 - // - this.label23.AutoSize = true; - this.label23.Location = new System.Drawing.Point(269, 186); - this.label23.Name = "label23"; - this.label23.Size = new System.Drawing.Size(134, 13); - this.label23.TabIndex = 12; - this.label23.Text = "Zdarzenia do sprawdzenia:"; - // - // actionsBox - // - this.actionsBox.AcceptsTab = true; - this.actionsBox.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.actionsBox.Location = new System.Drawing.Point(269, 202); - this.actionsBox.Name = "actionsBox"; - this.actionsBox.Size = new System.Drawing.Size(217, 137); - this.actionsBox.TabIndex = 13; - this.actionsBox.Text = ""; + // tabControl1 + // + this.tabControl1.Controls.Add(this.tabPage1); + this.tabControl1.Controls.Add(this.tabPage2); + this.tabControl1.Location = new System.Drawing.Point(514, 68); + this.tabControl1.Name = "tabControl1"; + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(492, 253); + this.tabControl1.TabIndex = 14; + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.label13); + this.tabPage1.Controls.Add(this.resultTextBox); + this.tabPage1.Controls.Add(this.abortButton); + this.tabPage1.Controls.Add(this.analyzeButton); + this.tabPage1.Controls.Add(this.contractTable); + this.tabPage1.Location = new System.Drawing.Point(4, 22); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(3); + this.tabPage1.Size = new System.Drawing.Size(484, 227); + this.tabPage1.TabIndex = 0; + this.tabPage1.Text = "Analiza liczby lew"; + this.tabPage1.UseVisualStyleBackColor = true; + // + // tabPage2 + // + this.tabPage2.Controls.Add(this.fullContractTable); + this.tabPage2.Controls.Add(this.button5); + this.tabPage2.Controls.Add(this.button4); + this.tabPage2.Location = new System.Drawing.Point(4, 22); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(3); + this.tabPage2.Size = new System.Drawing.Size(484, 227); + this.tabPage2.TabIndex = 1; + this.tabPage2.Text = "Analiza kontraktów"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // fullContractTable + // + this.fullContractTable.ColumnCount = 9; + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.11111F)); + this.fullContractTable.Controls.Add(this.textBox29, 8, 7); + this.fullContractTable.Controls.Add(this.textBox22, 7, 5); + this.fullContractTable.Controls.Add(this.textBox23, 8, 5); + this.fullContractTable.Controls.Add(this.textBox24, 6, 6); + this.fullContractTable.Controls.Add(this.textBox25, 7, 6); + this.fullContractTable.Controls.Add(this.textBox26, 8, 6); + this.fullContractTable.Controls.Add(this.textBox27, 6, 7); + this.fullContractTable.Controls.Add(this.textBox28, 7, 7); + this.fullContractTable.Controls.Add(this.textBox15, 6, 3); + this.fullContractTable.Controls.Add(this.textBox16, 7, 3); + this.fullContractTable.Controls.Add(this.textBox17, 8, 3); + this.fullContractTable.Controls.Add(this.textBox18, 6, 4); + this.fullContractTable.Controls.Add(this.textBox19, 7, 4); + this.fullContractTable.Controls.Add(this.textBox20, 8, 4); + this.fullContractTable.Controls.Add(this.textBox21, 6, 5); + this.fullContractTable.Controls.Add(this.textBox9, 6, 1); + this.fullContractTable.Controls.Add(this.textBox10, 7, 1); + this.fullContractTable.Controls.Add(this.textBox11, 8, 1); + this.fullContractTable.Controls.Add(this.textBox12, 6, 2); + this.fullContractTable.Controls.Add(this.textBox13, 7, 2); + this.fullContractTable.Controls.Add(this.textBox14, 8, 2); + this.fullContractTable.Controls.Add(this.label24, 0, 0); + this.fullContractTable.Controls.Add(this.label25, 1, 0); + this.fullContractTable.Controls.Add(this.label27, 3, 0); + this.fullContractTable.Controls.Add(this.label28, 4, 0); + this.fullContractTable.Controls.Add(this.label29, 5, 0); + this.fullContractTable.Controls.Add(this.label30, 6, 0); + this.fullContractTable.Controls.Add(this.label31, 7, 0); + this.fullContractTable.Controls.Add(this.label32, 8, 0); + this.fullContractTable.Controls.Add(this.comboBox1, 0, 1); + this.fullContractTable.Controls.Add(this.comboBox2, 0, 2); + this.fullContractTable.Controls.Add(this.comboBox3, 0, 3); + this.fullContractTable.Controls.Add(this.comboBox4, 0, 4); + this.fullContractTable.Controls.Add(this.comboBox5, 0, 5); + this.fullContractTable.Controls.Add(this.comboBox6, 0, 6); + this.fullContractTable.Controls.Add(this.comboBox7, 0, 7); + this.fullContractTable.Controls.Add(this.comboBox8, 1, 1); + this.fullContractTable.Controls.Add(this.comboBox9, 1, 2); + this.fullContractTable.Controls.Add(this.comboBox10, 1, 3); + this.fullContractTable.Controls.Add(this.comboBox11, 1, 4); + this.fullContractTable.Controls.Add(this.comboBox12, 1, 5); + this.fullContractTable.Controls.Add(this.comboBox13, 1, 6); + this.fullContractTable.Controls.Add(this.comboBox14, 1, 7); + this.fullContractTable.Controls.Add(this.comboBox15, 2, 1); + this.fullContractTable.Controls.Add(this.comboBox16, 2, 2); + this.fullContractTable.Controls.Add(this.comboBox17, 2, 3); + this.fullContractTable.Controls.Add(this.comboBox18, 2, 4); + this.fullContractTable.Controls.Add(this.comboBox19, 2, 5); + this.fullContractTable.Controls.Add(this.comboBox20, 2, 6); + this.fullContractTable.Controls.Add(this.comboBox21, 2, 7); + this.fullContractTable.Controls.Add(this.comboBox22, 3, 1); + this.fullContractTable.Controls.Add(this.comboBox23, 3, 2); + this.fullContractTable.Controls.Add(this.comboBox24, 3, 3); + this.fullContractTable.Controls.Add(this.comboBox25, 3, 4); + this.fullContractTable.Controls.Add(this.comboBox26, 3, 5); + this.fullContractTable.Controls.Add(this.comboBox27, 3, 6); + this.fullContractTable.Controls.Add(this.comboBox28, 3, 7); + this.fullContractTable.Controls.Add(this.numericUpDown1, 4, 1); + this.fullContractTable.Controls.Add(this.numericUpDown2, 4, 2); + this.fullContractTable.Controls.Add(this.numericUpDown3, 4, 3); + this.fullContractTable.Controls.Add(this.numericUpDown4, 4, 4); + this.fullContractTable.Controls.Add(this.numericUpDown5, 4, 5); + this.fullContractTable.Controls.Add(this.numericUpDown6, 4, 6); + this.fullContractTable.Controls.Add(this.numericUpDown7, 4, 7); + this.fullContractTable.Controls.Add(this.textBox1, 5, 1); + this.fullContractTable.Controls.Add(this.textBox2, 5, 2); + this.fullContractTable.Controls.Add(this.textBox3, 5, 3); + this.fullContractTable.Controls.Add(this.textBox4, 5, 4); + this.fullContractTable.Controls.Add(this.textBox5, 5, 5); + this.fullContractTable.Controls.Add(this.textBox6, 5, 6); + this.fullContractTable.Controls.Add(this.textBox7, 5, 7); + this.fullContractTable.Location = new System.Drawing.Point(6, 13); + this.fullContractTable.Name = "fullContractTable"; + this.fullContractTable.RowCount = 8; + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 9.084998F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.98786F)); + this.fullContractTable.Size = new System.Drawing.Size(475, 179); + this.fullContractTable.TabIndex = 2; + // + // textBox29 + // + this.textBox29.Enabled = false; + this.textBox29.Location = new System.Drawing.Point(419, 157); + this.textBox29.Name = "textBox29"; + this.textBox29.ReadOnly = true; + this.textBox29.Size = new System.Drawing.Size(46, 20); + this.textBox29.TabIndex = 72; + // + // textBox22 + // + this.textBox22.Enabled = false; + this.textBox22.Location = new System.Drawing.Point(367, 111); + this.textBox22.Name = "textBox22"; + this.textBox22.ReadOnly = true; + this.textBox22.Size = new System.Drawing.Size(46, 20); + this.textBox22.TabIndex = 65; + // + // textBox23 + // + this.textBox23.Enabled = false; + this.textBox23.Location = new System.Drawing.Point(419, 111); + this.textBox23.Name = "textBox23"; + this.textBox23.ReadOnly = true; + this.textBox23.Size = new System.Drawing.Size(46, 20); + this.textBox23.TabIndex = 66; + // + // textBox24 + // + this.textBox24.Enabled = false; + this.textBox24.Location = new System.Drawing.Point(315, 134); + this.textBox24.Name = "textBox24"; + this.textBox24.ReadOnly = true; + this.textBox24.Size = new System.Drawing.Size(46, 20); + this.textBox24.TabIndex = 67; + // + // textBox25 + // + this.textBox25.Enabled = false; + this.textBox25.Location = new System.Drawing.Point(367, 134); + this.textBox25.Name = "textBox25"; + this.textBox25.ReadOnly = true; + this.textBox25.Size = new System.Drawing.Size(46, 20); + this.textBox25.TabIndex = 68; + // + // textBox26 + // + this.textBox26.Enabled = false; + this.textBox26.Location = new System.Drawing.Point(419, 134); + this.textBox26.Name = "textBox26"; + this.textBox26.ReadOnly = true; + this.textBox26.Size = new System.Drawing.Size(46, 20); + this.textBox26.TabIndex = 69; + // + // textBox27 + // + this.textBox27.Enabled = false; + this.textBox27.Location = new System.Drawing.Point(315, 157); + this.textBox27.Name = "textBox27"; + this.textBox27.ReadOnly = true; + this.textBox27.Size = new System.Drawing.Size(46, 20); + this.textBox27.TabIndex = 70; + // + // textBox28 + // + this.textBox28.Enabled = false; + this.textBox28.Location = new System.Drawing.Point(367, 157); + this.textBox28.Name = "textBox28"; + this.textBox28.ReadOnly = true; + this.textBox28.Size = new System.Drawing.Size(46, 20); + this.textBox28.TabIndex = 71; + // + // textBox15 + // + this.textBox15.Enabled = false; + this.textBox15.Location = new System.Drawing.Point(315, 65); + this.textBox15.Name = "textBox15"; + this.textBox15.ReadOnly = true; + this.textBox15.Size = new System.Drawing.Size(46, 20); + this.textBox15.TabIndex = 58; + // + // textBox16 + // + this.textBox16.Enabled = false; + this.textBox16.Location = new System.Drawing.Point(367, 65); + this.textBox16.Name = "textBox16"; + this.textBox16.ReadOnly = true; + this.textBox16.Size = new System.Drawing.Size(46, 20); + this.textBox16.TabIndex = 59; + // + // textBox17 + // + this.textBox17.Enabled = false; + this.textBox17.Location = new System.Drawing.Point(419, 65); + this.textBox17.Name = "textBox17"; + this.textBox17.ReadOnly = true; + this.textBox17.Size = new System.Drawing.Size(46, 20); + this.textBox17.TabIndex = 60; + // + // textBox18 + // + this.textBox18.Enabled = false; + this.textBox18.Location = new System.Drawing.Point(315, 88); + this.textBox18.Name = "textBox18"; + this.textBox18.ReadOnly = true; + this.textBox18.Size = new System.Drawing.Size(46, 20); + this.textBox18.TabIndex = 61; + // + // textBox19 + // + this.textBox19.Enabled = false; + this.textBox19.Location = new System.Drawing.Point(367, 88); + this.textBox19.Name = "textBox19"; + this.textBox19.ReadOnly = true; + this.textBox19.Size = new System.Drawing.Size(46, 20); + this.textBox19.TabIndex = 62; + // + // textBox20 + // + this.textBox20.Enabled = false; + this.textBox20.Location = new System.Drawing.Point(419, 88); + this.textBox20.Name = "textBox20"; + this.textBox20.ReadOnly = true; + this.textBox20.Size = new System.Drawing.Size(46, 20); + this.textBox20.TabIndex = 63; + // + // textBox21 + // + this.textBox21.Enabled = false; + this.textBox21.Location = new System.Drawing.Point(315, 111); + this.textBox21.Name = "textBox21"; + this.textBox21.ReadOnly = true; + this.textBox21.Size = new System.Drawing.Size(46, 20); + this.textBox21.TabIndex = 64; + // + // textBox9 + // + this.textBox9.Enabled = false; + this.textBox9.Location = new System.Drawing.Point(315, 19); + this.textBox9.Name = "textBox9"; + this.textBox9.ReadOnly = true; + this.textBox9.Size = new System.Drawing.Size(46, 20); + this.textBox9.TabIndex = 52; + // + // textBox10 + // + this.textBox10.Enabled = false; + this.textBox10.Location = new System.Drawing.Point(367, 19); + this.textBox10.Name = "textBox10"; + this.textBox10.ReadOnly = true; + this.textBox10.Size = new System.Drawing.Size(46, 20); + this.textBox10.TabIndex = 53; + // + // textBox11 + // + this.textBox11.Enabled = false; + this.textBox11.Location = new System.Drawing.Point(419, 19); + this.textBox11.Name = "textBox11"; + this.textBox11.ReadOnly = true; + this.textBox11.Size = new System.Drawing.Size(46, 20); + this.textBox11.TabIndex = 54; + // + // textBox12 + // + this.textBox12.Enabled = false; + this.textBox12.Location = new System.Drawing.Point(315, 42); + this.textBox12.Name = "textBox12"; + this.textBox12.ReadOnly = true; + this.textBox12.Size = new System.Drawing.Size(46, 20); + this.textBox12.TabIndex = 55; + // + // textBox13 + // + this.textBox13.Enabled = false; + this.textBox13.Location = new System.Drawing.Point(367, 42); + this.textBox13.Name = "textBox13"; + this.textBox13.ReadOnly = true; + this.textBox13.Size = new System.Drawing.Size(46, 20); + this.textBox13.TabIndex = 56; + // + // textBox14 + // + this.textBox14.Enabled = false; + this.textBox14.Location = new System.Drawing.Point(419, 42); + this.textBox14.Name = "textBox14"; + this.textBox14.ReadOnly = true; + this.textBox14.Size = new System.Drawing.Size(46, 20); + this.textBox14.TabIndex = 57; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Location = new System.Drawing.Point(3, 0); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(31, 13); + this.label24.TabIndex = 0; + this.label24.Text = "Wys."; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Location = new System.Drawing.Point(55, 0); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(36, 13); + this.label25.TabIndex = 1; + this.label25.Text = "Miano"; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Location = new System.Drawing.Point(159, 0); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(32, 13); + this.label27.TabIndex = 3; + this.label27.Text = "Rzgr."; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.Location = new System.Drawing.Point(211, 0); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(31, 13); + this.label28.TabIndex = 4; + this.label28.Text = "Frek."; + // + // label29 + // + this.label29.AutoSize = true; + this.label29.Location = new System.Drawing.Point(263, 0); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(32, 13); + this.label29.TabIndex = 5; + this.label29.Text = "Lewy"; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Location = new System.Drawing.Point(315, 0); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(33, 13); + this.label30.TabIndex = 6; + this.label30.Text = "Zapis"; + // + // label31 + // + this.label31.AutoSize = true; + this.label31.Location = new System.Drawing.Point(367, 0); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(27, 13); + this.label31.TabIndex = 7; + this.label31.Text = "Max"; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Location = new System.Drawing.Point(419, 0); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(26, 13); + this.label32.TabIndex = 8; + this.label32.Text = "IMP"; + // + // comboBox1 + // + this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox1.FormattingEnabled = true; + this.comboBox1.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox1.Location = new System.Drawing.Point(3, 19); + this.comboBox1.Name = "comboBox1"; + this.comboBox1.Size = new System.Drawing.Size(46, 21); + this.comboBox1.TabIndex = 9; + this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox2 + // + this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox2.FormattingEnabled = true; + this.comboBox2.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox2.Location = new System.Drawing.Point(3, 42); + this.comboBox2.Name = "comboBox2"; + this.comboBox2.Size = new System.Drawing.Size(46, 21); + this.comboBox2.TabIndex = 10; + this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox3 + // + this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox3.FormattingEnabled = true; + this.comboBox3.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox3.Location = new System.Drawing.Point(3, 65); + this.comboBox3.Name = "comboBox3"; + this.comboBox3.Size = new System.Drawing.Size(46, 21); + this.comboBox3.TabIndex = 11; + this.comboBox3.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox4 + // + this.comboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox4.FormattingEnabled = true; + this.comboBox4.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox4.Location = new System.Drawing.Point(3, 88); + this.comboBox4.Name = "comboBox4"; + this.comboBox4.Size = new System.Drawing.Size(46, 21); + this.comboBox4.TabIndex = 12; + this.comboBox4.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox5 + // + this.comboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox5.FormattingEnabled = true; + this.comboBox5.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox5.Location = new System.Drawing.Point(3, 111); + this.comboBox5.Name = "comboBox5"; + this.comboBox5.Size = new System.Drawing.Size(46, 21); + this.comboBox5.TabIndex = 13; + this.comboBox5.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox6 + // + this.comboBox6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox6.FormattingEnabled = true; + this.comboBox6.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox6.Location = new System.Drawing.Point(3, 134); + this.comboBox6.Name = "comboBox6"; + this.comboBox6.Size = new System.Drawing.Size(46, 21); + this.comboBox6.TabIndex = 14; + this.comboBox6.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox7 + // + this.comboBox7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox7.FormattingEnabled = true; + this.comboBox7.Items.AddRange(new object[] { + "", + "PASS", + "1", + "2", + "3", + "4", + "5", + "6", + "7"}); + this.comboBox7.Location = new System.Drawing.Point(3, 157); + this.comboBox7.Name = "comboBox7"; + this.comboBox7.Size = new System.Drawing.Size(46, 21); + this.comboBox7.TabIndex = 15; + this.comboBox7.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox8 + // + this.comboBox8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox8.FormattingEnabled = true; + this.comboBox8.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox8.Location = new System.Drawing.Point(55, 19); + this.comboBox8.Name = "comboBox8"; + this.comboBox8.Size = new System.Drawing.Size(46, 21); + this.comboBox8.TabIndex = 16; + this.comboBox8.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox9 + // + this.comboBox9.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox9.FormattingEnabled = true; + this.comboBox9.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox9.Location = new System.Drawing.Point(55, 42); + this.comboBox9.Name = "comboBox9"; + this.comboBox9.Size = new System.Drawing.Size(46, 21); + this.comboBox9.TabIndex = 17; + this.comboBox9.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox10 + // + this.comboBox10.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox10.FormattingEnabled = true; + this.comboBox10.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox10.Location = new System.Drawing.Point(55, 65); + this.comboBox10.Name = "comboBox10"; + this.comboBox10.Size = new System.Drawing.Size(46, 21); + this.comboBox10.TabIndex = 18; + this.comboBox10.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox11 + // + this.comboBox11.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox11.FormattingEnabled = true; + this.comboBox11.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox11.Location = new System.Drawing.Point(55, 88); + this.comboBox11.Name = "comboBox11"; + this.comboBox11.Size = new System.Drawing.Size(46, 21); + this.comboBox11.TabIndex = 19; + this.comboBox11.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox12 + // + this.comboBox12.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox12.FormattingEnabled = true; + this.comboBox12.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox12.Location = new System.Drawing.Point(55, 111); + this.comboBox12.Name = "comboBox12"; + this.comboBox12.Size = new System.Drawing.Size(46, 21); + this.comboBox12.TabIndex = 20; + this.comboBox12.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox13 + // + this.comboBox13.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox13.FormattingEnabled = true; + this.comboBox13.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox13.Location = new System.Drawing.Point(55, 134); + this.comboBox13.Name = "comboBox13"; + this.comboBox13.Size = new System.Drawing.Size(46, 21); + this.comboBox13.TabIndex = 21; + this.comboBox13.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox14 + // + this.comboBox14.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox14.FormattingEnabled = true; + this.comboBox14.Items.AddRange(new object[] { + "", + "♣", + "♦", + "♥", + "♠", + "NT"}); + this.comboBox14.Location = new System.Drawing.Point(55, 157); + this.comboBox14.Name = "comboBox14"; + this.comboBox14.Size = new System.Drawing.Size(46, 21); + this.comboBox14.TabIndex = 22; + this.comboBox14.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox15 + // + this.comboBox15.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox15.FormattingEnabled = true; + this.comboBox15.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox15.Location = new System.Drawing.Point(107, 19); + this.comboBox15.Name = "comboBox15"; + this.comboBox15.Size = new System.Drawing.Size(46, 21); + this.comboBox15.TabIndex = 23; + this.comboBox15.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox16 + // + this.comboBox16.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox16.FormattingEnabled = true; + this.comboBox16.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox16.Location = new System.Drawing.Point(107, 42); + this.comboBox16.Name = "comboBox16"; + this.comboBox16.Size = new System.Drawing.Size(46, 21); + this.comboBox16.TabIndex = 24; + this.comboBox16.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox17 + // + this.comboBox17.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox17.FormattingEnabled = true; + this.comboBox17.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox17.Location = new System.Drawing.Point(107, 65); + this.comboBox17.Name = "comboBox17"; + this.comboBox17.Size = new System.Drawing.Size(46, 21); + this.comboBox17.TabIndex = 25; + this.comboBox17.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox18 + // + this.comboBox18.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox18.FormattingEnabled = true; + this.comboBox18.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox18.Location = new System.Drawing.Point(107, 88); + this.comboBox18.Name = "comboBox18"; + this.comboBox18.Size = new System.Drawing.Size(46, 21); + this.comboBox18.TabIndex = 26; + this.comboBox18.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox19 + // + this.comboBox19.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox19.FormattingEnabled = true; + this.comboBox19.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox19.Location = new System.Drawing.Point(107, 111); + this.comboBox19.Name = "comboBox19"; + this.comboBox19.Size = new System.Drawing.Size(46, 21); + this.comboBox19.TabIndex = 27; + this.comboBox19.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox20 + // + this.comboBox20.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox20.FormattingEnabled = true; + this.comboBox20.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox20.Location = new System.Drawing.Point(107, 134); + this.comboBox20.Name = "comboBox20"; + this.comboBox20.Size = new System.Drawing.Size(46, 21); + this.comboBox20.TabIndex = 28; + this.comboBox20.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox21 + // + this.comboBox21.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox21.FormattingEnabled = true; + this.comboBox21.Items.AddRange(new object[] { + "", + "X", + "XX"}); + this.comboBox21.Location = new System.Drawing.Point(107, 157); + this.comboBox21.Name = "comboBox21"; + this.comboBox21.Size = new System.Drawing.Size(46, 21); + this.comboBox21.TabIndex = 29; + this.comboBox21.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox22 + // + this.comboBox22.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox22.FormattingEnabled = true; + this.comboBox22.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox22.Location = new System.Drawing.Point(159, 19); + this.comboBox22.Name = "comboBox22"; + this.comboBox22.Size = new System.Drawing.Size(46, 21); + this.comboBox22.TabIndex = 30; + this.comboBox22.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox23 + // + this.comboBox23.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox23.FormattingEnabled = true; + this.comboBox23.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox23.Location = new System.Drawing.Point(159, 42); + this.comboBox23.Name = "comboBox23"; + this.comboBox23.Size = new System.Drawing.Size(46, 21); + this.comboBox23.TabIndex = 31; + this.comboBox23.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox24 + // + this.comboBox24.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox24.FormattingEnabled = true; + this.comboBox24.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox24.Location = new System.Drawing.Point(159, 65); + this.comboBox24.Name = "comboBox24"; + this.comboBox24.Size = new System.Drawing.Size(46, 21); + this.comboBox24.TabIndex = 32; + this.comboBox24.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox25 + // + this.comboBox25.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox25.FormattingEnabled = true; + this.comboBox25.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox25.Location = new System.Drawing.Point(159, 88); + this.comboBox25.Name = "comboBox25"; + this.comboBox25.Size = new System.Drawing.Size(46, 21); + this.comboBox25.TabIndex = 33; + this.comboBox25.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox26 + // + this.comboBox26.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox26.FormattingEnabled = true; + this.comboBox26.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox26.Location = new System.Drawing.Point(159, 111); + this.comboBox26.Name = "comboBox26"; + this.comboBox26.Size = new System.Drawing.Size(46, 21); + this.comboBox26.TabIndex = 34; + this.comboBox26.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox27 + // + this.comboBox27.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox27.FormattingEnabled = true; + this.comboBox27.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox27.Location = new System.Drawing.Point(159, 134); + this.comboBox27.Name = "comboBox27"; + this.comboBox27.Size = new System.Drawing.Size(46, 21); + this.comboBox27.TabIndex = 35; + this.comboBox27.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // comboBox28 + // + this.comboBox28.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboBox28.FormattingEnabled = true; + this.comboBox28.Items.AddRange(new object[] { + "", + "W", + "N", + "E", + "S"}); + this.comboBox28.Location = new System.Drawing.Point(159, 157); + this.comboBox28.Name = "comboBox28"; + this.comboBox28.Size = new System.Drawing.Size(46, 21); + this.comboBox28.TabIndex = 36; + this.comboBox28.SelectedIndexChanged += new System.EventHandler(this.tableCombo_Change); + // + // numericUpDown1 + // + this.numericUpDown1.Enabled = false; + this.numericUpDown1.Location = new System.Drawing.Point(211, 19); + this.numericUpDown1.Name = "numericUpDown1"; + this.numericUpDown1.Size = new System.Drawing.Size(46, 20); + this.numericUpDown1.TabIndex = 37; + // + // numericUpDown2 + // + this.numericUpDown2.Enabled = false; + this.numericUpDown2.Location = new System.Drawing.Point(211, 42); + this.numericUpDown2.Name = "numericUpDown2"; + this.numericUpDown2.Size = new System.Drawing.Size(46, 20); + this.numericUpDown2.TabIndex = 38; + // + // numericUpDown3 + // + this.numericUpDown3.Enabled = false; + this.numericUpDown3.Location = new System.Drawing.Point(211, 65); + this.numericUpDown3.Name = "numericUpDown3"; + this.numericUpDown3.Size = new System.Drawing.Size(46, 20); + this.numericUpDown3.TabIndex = 39; + // + // numericUpDown4 + // + this.numericUpDown4.Enabled = false; + this.numericUpDown4.Location = new System.Drawing.Point(211, 88); + this.numericUpDown4.Name = "numericUpDown4"; + this.numericUpDown4.Size = new System.Drawing.Size(46, 20); + this.numericUpDown4.TabIndex = 40; + // + // numericUpDown5 + // + this.numericUpDown5.Enabled = false; + this.numericUpDown5.Location = new System.Drawing.Point(211, 111); + this.numericUpDown5.Name = "numericUpDown5"; + this.numericUpDown5.Size = new System.Drawing.Size(46, 20); + this.numericUpDown5.TabIndex = 41; + // + // numericUpDown6 + // + this.numericUpDown6.Enabled = false; + this.numericUpDown6.Location = new System.Drawing.Point(211, 134); + this.numericUpDown6.Name = "numericUpDown6"; + this.numericUpDown6.Size = new System.Drawing.Size(46, 20); + this.numericUpDown6.TabIndex = 42; + // + // numericUpDown7 + // + this.numericUpDown7.Enabled = false; + this.numericUpDown7.Location = new System.Drawing.Point(211, 157); + this.numericUpDown7.Name = "numericUpDown7"; + this.numericUpDown7.Size = new System.Drawing.Size(46, 20); + this.numericUpDown7.TabIndex = 43; + // + // textBox1 + // + this.textBox1.Enabled = false; + this.textBox1.Location = new System.Drawing.Point(263, 19); + this.textBox1.Name = "textBox1"; + this.textBox1.ReadOnly = true; + this.textBox1.Size = new System.Drawing.Size(46, 20); + this.textBox1.TabIndex = 44; + // + // textBox2 + // + this.textBox2.Enabled = false; + this.textBox2.Location = new System.Drawing.Point(263, 42); + this.textBox2.Name = "textBox2"; + this.textBox2.ReadOnly = true; + this.textBox2.Size = new System.Drawing.Size(46, 20); + this.textBox2.TabIndex = 45; + // + // textBox3 + // + this.textBox3.Enabled = false; + this.textBox3.Location = new System.Drawing.Point(263, 65); + this.textBox3.Name = "textBox3"; + this.textBox3.ReadOnly = true; + this.textBox3.Size = new System.Drawing.Size(46, 20); + this.textBox3.TabIndex = 46; + // + // textBox4 + // + this.textBox4.Enabled = false; + this.textBox4.Location = new System.Drawing.Point(263, 88); + this.textBox4.Name = "textBox4"; + this.textBox4.ReadOnly = true; + this.textBox4.Size = new System.Drawing.Size(46, 20); + this.textBox4.TabIndex = 47; + // + // textBox5 + // + this.textBox5.Enabled = false; + this.textBox5.Location = new System.Drawing.Point(263, 111); + this.textBox5.Name = "textBox5"; + this.textBox5.ReadOnly = true; + this.textBox5.Size = new System.Drawing.Size(46, 20); + this.textBox5.TabIndex = 48; + // + // textBox6 + // + this.textBox6.Enabled = false; + this.textBox6.Location = new System.Drawing.Point(263, 134); + this.textBox6.Name = "textBox6"; + this.textBox6.ReadOnly = true; + this.textBox6.Size = new System.Drawing.Size(46, 20); + this.textBox6.TabIndex = 49; + // + // textBox7 + // + this.textBox7.Enabled = false; + this.textBox7.Location = new System.Drawing.Point(263, 157); + this.textBox7.Name = "textBox7"; + this.textBox7.ReadOnly = true; + this.textBox7.Size = new System.Drawing.Size(46, 20); + this.textBox7.TabIndex = 50; + // + // button5 + // + this.button5.Location = new System.Drawing.Point(268, 198); + this.button5.Name = "button5"; + this.button5.Size = new System.Drawing.Size(210, 23); + this.button5.TabIndex = 1; + this.button5.Text = "Nie, czekaj!"; + this.button5.UseVisualStyleBackColor = true; + // + // button4 + // + this.button4.Location = new System.Drawing.Point(6, 198); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(210, 23); + this.button4.TabIndex = 0; + this.button4.Text = "Brzdęk!"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.button4_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1018, 463); - this.Controls.Add(this.abortButton); - this.Controls.Add(this.resultTextBox); + this.Controls.Add(this.tabControl1); this.Controls.Add(this.statusListBox); this.Controls.Add(this.progressBar); this.Controls.Add(this.analyzeGroup); @@ -1034,8 +2121,20 @@ this.analyzeGroup.PerformLayout(); this.contractTable.ResumeLayout(false); this.contractTable.PerformLayout(); + this.tabControl1.ResumeLayout(false); + this.tabPage1.ResumeLayout(false); + this.tabPage1.PerformLayout(); + this.tabPage2.ResumeLayout(false); + this.fullContractTable.ResumeLayout(false); + this.fullContractTable.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.numericUpDown7)).EndInit(); this.ResumeLayout(false); - this.PerformLayout(); } @@ -1080,14 +2179,16 @@ private System.Windows.Forms.Label label11; private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.ListBox statusListBox; - private System.Windows.Forms.Label label13; private System.Windows.Forms.Button button2; private System.Windows.Forms.TextBox analyzeFileNameTextBox; private System.Windows.Forms.OpenFileDialog analyzeFileDialog; - private System.Windows.Forms.Button analyzeButton; - private System.Windows.Forms.TextBox resultTextBox; private System.Windows.Forms.RichTextBox conditionBox; + private System.Windows.Forms.Label label23; + private System.Windows.Forms.RichTextBox actionsBox; private System.Windows.Forms.TableLayoutPanel contractTable; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label15; private System.Windows.Forms.CheckBox checkBox1; private System.Windows.Forms.CheckBox checkBox2; private System.Windows.Forms.CheckBox checkBox3; @@ -1108,19 +2209,94 @@ private System.Windows.Forms.CheckBox checkBox18; private System.Windows.Forms.CheckBox checkBox19; private System.Windows.Forms.CheckBox checkBox20; - private System.Windows.Forms.Label label21; - private System.Windows.Forms.Label label22; - private System.Windows.Forms.Label label17; - private System.Windows.Forms.Label label15; private System.Windows.Forms.Label label14; private System.Windows.Forms.Label label16; private System.Windows.Forms.Label label18; - private System.Windows.Forms.Label label20; private System.Windows.Forms.Label label19; - private System.Windows.Forms.Button abortButton; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label22; private System.Windows.Forms.Button button3; - private System.Windows.Forms.Label label23; - private System.Windows.Forms.RichTextBox actionsBox; + private System.Windows.Forms.Button analyzeButton; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.TextBox resultTextBox; + private System.Windows.Forms.Button abortButton; + private System.Windows.Forms.TabControl tabControl1; + private System.Windows.Forms.TabPage tabPage1; + private System.Windows.Forms.TabPage tabPage2; + private System.Windows.Forms.TableLayoutPanel fullContractTable; + private System.Windows.Forms.Button button5; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Label label24; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label label28; + private System.Windows.Forms.Label label29; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.Label label32; + private System.Windows.Forms.ComboBox comboBox1; + private System.Windows.Forms.ComboBox comboBox2; + private System.Windows.Forms.ComboBox comboBox3; + private System.Windows.Forms.ComboBox comboBox4; + private System.Windows.Forms.ComboBox comboBox5; + private System.Windows.Forms.ComboBox comboBox6; + private System.Windows.Forms.ComboBox comboBox7; + private System.Windows.Forms.ComboBox comboBox8; + private System.Windows.Forms.ComboBox comboBox9; + private System.Windows.Forms.ComboBox comboBox10; + private System.Windows.Forms.ComboBox comboBox11; + private System.Windows.Forms.ComboBox comboBox12; + private System.Windows.Forms.ComboBox comboBox13; + private System.Windows.Forms.ComboBox comboBox14; + private System.Windows.Forms.ComboBox comboBox15; + private System.Windows.Forms.ComboBox comboBox16; + private System.Windows.Forms.ComboBox comboBox17; + private System.Windows.Forms.ComboBox comboBox18; + private System.Windows.Forms.ComboBox comboBox19; + private System.Windows.Forms.ComboBox comboBox20; + private System.Windows.Forms.ComboBox comboBox21; + private System.Windows.Forms.ComboBox comboBox22; + private System.Windows.Forms.ComboBox comboBox23; + private System.Windows.Forms.ComboBox comboBox24; + private System.Windows.Forms.ComboBox comboBox25; + private System.Windows.Forms.ComboBox comboBox26; + private System.Windows.Forms.ComboBox comboBox27; + private System.Windows.Forms.ComboBox comboBox28; + private System.Windows.Forms.TextBox textBox29; + private System.Windows.Forms.TextBox textBox22; + private System.Windows.Forms.TextBox textBox23; + private System.Windows.Forms.TextBox textBox24; + private System.Windows.Forms.TextBox textBox25; + private System.Windows.Forms.TextBox textBox26; + private System.Windows.Forms.TextBox textBox27; + private System.Windows.Forms.TextBox textBox28; + private System.Windows.Forms.TextBox textBox15; + private System.Windows.Forms.TextBox textBox16; + private System.Windows.Forms.TextBox textBox17; + private System.Windows.Forms.TextBox textBox18; + private System.Windows.Forms.TextBox textBox19; + private System.Windows.Forms.TextBox textBox20; + private System.Windows.Forms.TextBox textBox21; + private System.Windows.Forms.TextBox textBox9; + private System.Windows.Forms.TextBox textBox10; + private System.Windows.Forms.TextBox textBox11; + private System.Windows.Forms.TextBox textBox12; + private System.Windows.Forms.TextBox textBox13; + private System.Windows.Forms.TextBox textBox14; + private System.Windows.Forms.NumericUpDown numericUpDown1; + private System.Windows.Forms.NumericUpDown numericUpDown2; + private System.Windows.Forms.NumericUpDown numericUpDown3; + private System.Windows.Forms.NumericUpDown numericUpDown4; + private System.Windows.Forms.NumericUpDown numericUpDown5; + private System.Windows.Forms.NumericUpDown numericUpDown6; + private System.Windows.Forms.NumericUpDown numericUpDown7; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.TextBox textBox4; + private System.Windows.Forms.TextBox textBox5; + private System.Windows.Forms.TextBox textBox6; + private System.Windows.Forms.TextBox textBox7; } } diff --git a/Analizator9000/Analizator9000/Form1.cs b/Analizator9000/Analizator9000/Form1.cs index 1f379f0..3c8308b 100644 --- a/Analizator9000/Analizator9000/Form1.cs +++ b/Analizator9000/Analizator9000/Form1.cs @@ -467,5 +467,54 @@ namespace Analizator9000 { this.toggleBoxes(Enumerable.Range(1, 5), Enumerable.Range(4, 1)); } + + private void button4_Click(object sender, EventArgs e) + { + + } + + /// + /// Enables contract table fields accordingly to selected combo boxes. + /// + /// + /// + private void tableCombo_Change(object sender, EventArgs e) + { + TableLayoutPanelCellPosition position = fullContractTable.GetPositionFromControl((Control)sender); + NumericUpDown frequencyBox = (NumericUpDown)fullContractTable.GetControlFromPosition(4, position.Row); + Contract rowContract = this.getContractFromTableRow(position.Row); + if (rowContract != null) + { + frequencyBox.Enabled = true; + if (frequencyBox.Value < 1) + { + frequencyBox.Value = 1; + } + if (rowContract.Level == 0) + { + ((ComboBox)fullContractTable.GetControlFromPosition(1, position.Row)).SelectedIndex = 0; + ((ComboBox)fullContractTable.GetControlFromPosition(2, position.Row)).SelectedIndex = 0; + ((ComboBox)fullContractTable.GetControlFromPosition(3, position.Row)).SelectedIndex = 0; + } + } + else + { + frequencyBox.Enabled = false; + frequencyBox.Value = 0; + } + } + + private Contract getContractFromTableRow(int rowIndex) + { + ComboBox levelBox = (ComboBox)fullContractTable.GetControlFromPosition(0, rowIndex); + ComboBox denominationBox = (ComboBox)fullContractTable.GetControlFromPosition(1, rowIndex); + ComboBox modifiersBox = (ComboBox)fullContractTable.GetControlFromPosition(2, rowIndex); + ComboBox declarerBox = (ComboBox)fullContractTable.GetControlFromPosition(3, rowIndex); + if (levelBox.SelectedIndex < 1 || (denominationBox.SelectedIndex < 1 && levelBox.SelectedIndex != 1) || (declarerBox.SelectedIndex < 1 && levelBox.SelectedIndex != 1)) + { + return null; + } + return new Contract(levelBox.SelectedIndex - 1, denominationBox.SelectedIndex, declarerBox.SelectedIndex, modifiersBox.SelectedIndex); + } } } -- cgit v1.2.3