summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Zimniewicz <michzimny@users.noreply.github.com>2016-11-19 17:59:27 +0100
committerGitHub <noreply@github.com>2016-11-19 17:59:27 +0100
commit3663f2248870cc33da1fcda39011423a199b7a10 (patch)
treef274fec74eaa624cc86f1b50514d6bddcefd7b20
parent001db1e8d9389c092def6037fe4ac098d5e0e535 (diff)
parentcd8f6bf8c23f9a63669d7489dd9d49525c9df6e4 (diff)
Merge pull request #4 from emkael/validate-lead-card
Kontrola karty pierwszego wistu
-rw-r--r--Aktywator/Bws.cs2
-rw-r--r--Aktywator/MainForm.Designer.cs21
-rw-r--r--Aktywator/MainForm.cs1
3 files changed, 20 insertions, 4 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs
index 8b92d7f..9533c7e 100644
--- a/Aktywator/Bws.cs
+++ b/Aktywator/Bws.cs
@@ -56,6 +56,7 @@ namespace Aktywator
settings.Add(new Setting("BM2ViewHandrecord", main.xViewHandrecord, this));
settings.Add(new Setting("BM2RecordBidding", main.xCollectBidding, this));
settings.Add(new Setting("BM2RecordPlay", main.xCollectPlay, this));
+ settings.Add(new Setting("BM2ValidateLeadCard", main.xCheckLeadCard, this));
}
public string sectionsForHandRecords()
@@ -137,6 +138,7 @@ namespace Aktywator
settings.Add(new Setting("BM2EnterHandrecord", "bit", "false"));
settings.Add(new Setting("BM2RecordBidding", "bit", "false"));
settings.Add(new Setting("BM2RecordPlay", "bit", "false"));
+ settings.Add(new Setting("BM2ValidateLeadCard", "bit", "false"));
settings.Add(new Setting("Name", "text(18)", "''", "PlayerNumbers"));
settings.Add(new Setting("Updated", "bit", "false", "PlayerNumbers"));
diff --git a/Aktywator/MainForm.Designer.cs b/Aktywator/MainForm.Designer.cs
index 03a692f..c28159e 100644
--- a/Aktywator/MainForm.Designer.cs
+++ b/Aktywator/MainForm.Designer.cs
@@ -45,6 +45,7 @@
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
+ this.xCheckLeadCard = new System.Windows.Forms.CheckBox();
this.xViewHandrecord = new System.Windows.Forms.CheckBox();
this.xResultsOverview = new System.Windows.Forms.ComboBox();
this.bLoad = new System.Windows.Forms.Button();
@@ -244,6 +245,7 @@
//
this.tabPage1.Controls.Add(this.xCollectPlay);
this.tabPage1.Controls.Add(this.xCollectBidding);
+ this.tabPage1.Controls.Add(this.xCheckLeadCard);
this.tabPage1.Controls.Add(this.xViewHandrecord);
this.tabPage1.Controls.Add(this.xResultsOverview);
this.tabPage1.Controls.Add(this.bLoad);
@@ -280,6 +282,16 @@
this.tabPage1.Text = "Ustawienia";
this.tabPage1.UseVisualStyleBackColor = true;
//
+ // xCheckLeadCard
+ //
+ this.xCheckLeadCard.AutoSize = true;
+ this.xCheckLeadCard.Location = new System.Drawing.Point(339, 253);
+ this.xCheckLeadCard.Name = "xCheckLeadCard";
+ this.xCheckLeadCard.Size = new System.Drawing.Size(180, 17);
+ this.xCheckLeadCard.TabIndex = 32;
+ this.xCheckLeadCard.Text = "sprawdź kartę wistu z rozkładem";
+ this.xCheckLeadCard.UseVisualStyleBackColor = true;
+ //
// xViewHandrecord
//
this.xViewHandrecord.AutoSize = true;
@@ -494,7 +506,7 @@
// xLeadCard
//
this.xLeadCard.AutoSize = true;
- this.xLeadCard.Location = new System.Drawing.Point(339, 253);
+ this.xLeadCard.Location = new System.Drawing.Point(339, 230);
this.xLeadCard.Name = "xLeadCard";
this.xLeadCard.Size = new System.Drawing.Size(111, 17);
this.xLeadCard.TabIndex = 21;
@@ -504,7 +516,7 @@
// xShowContract
//
this.xShowContract.AutoSize = true;
- this.xShowContract.Location = new System.Drawing.Point(339, 230);
+ this.xShowContract.Location = new System.Drawing.Point(339, 207);
this.xShowContract.Name = "xShowContract";
this.xShowContract.Size = new System.Drawing.Size(150, 17);
this.xShowContract.TabIndex = 20;
@@ -575,7 +587,7 @@
this.label1.Size = new System.Drawing.Size(398, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Te same ustawienia są ustawiane dla wszystkich sektorów, przynajmniej na razie :-" +
- ")";
+ ")";
//
// tabPage2
//
@@ -850,7 +862,7 @@
this.label13.Size = new System.Drawing.Size(476, 13);
this.label13.TabIndex = 4;
this.label13.Text = "Jeżeli Server->Show hand records w BCS nie pokazuje rozkładów (i/lub nie pokazują" +
- " ich pierniczki)";
+ " ich pierniczki)";
//
// lWczytywane
//
@@ -1034,6 +1046,7 @@
private System.Windows.Forms.TextBox eOomRounds;
public System.Windows.Forms.CheckBox xCollectPlay;
public System.Windows.Forms.CheckBox xCollectBidding;
+ public System.Windows.Forms.CheckBox xCheckLeadCard;
}
}
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index c009750..f684e34 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -286,5 +286,6 @@ namespace Aktywator
}
}
}
+
}
}