File: EntropyForm.Designer.cs

package info (click to toggle)
keepass2 2.19%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,496 kB
  • sloc: cs: 87,098; xml: 6,569; cpp: 311; makefile: 49; sh: 9
file content (233 lines) | stat: -rw-r--r-- 9,662 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
namespace KeePass.Forms
{
	partial class EntropyForm
	{
		/// <summary>
		/// Erforderliche Designervariable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Verwendete Ressourcen bereinigen.
		/// </summary>
		/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
		protected override void Dispose(bool disposing)
		{
			if(disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Vom Windows Form-Designer generierter Code

		/// <summary>
		/// Erforderliche Methode für die Designerunterstützung.
		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
		/// </summary>
		private void InitializeComponent()
		{
			this.m_btnOK = new System.Windows.Forms.Button();
			this.m_btnCancel = new System.Windows.Forms.Button();
			this.m_picRandom = new System.Windows.Forms.PictureBox();
			this.m_lblHint = new System.Windows.Forms.Label();
			this.m_lblGeneratedHint = new System.Windows.Forms.Label();
			this.m_pbGenerated = new KeePass.UI.QualityProgressBar();
			this.m_lblStatus = new System.Windows.Forms.Label();
			this.m_bannerImage = new System.Windows.Forms.PictureBox();
			this.m_grpMouse = new System.Windows.Forms.GroupBox();
			this.m_grpKeyboard = new System.Windows.Forms.GroupBox();
			this.m_lblKeysDesc = new System.Windows.Forms.Label();
			this.m_lblKeysIntro = new System.Windows.Forms.Label();
			this.m_tbEdit = new System.Windows.Forms.TextBox();
			((System.ComponentModel.ISupportInitialize)(this.m_picRandom)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
			this.m_grpMouse.SuspendLayout();
			this.m_grpKeyboard.SuspendLayout();
			this.SuspendLayout();
			// 
			// m_btnOK
			// 
			this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.m_btnOK.Location = new System.Drawing.Point(462, 383);
			this.m_btnOK.Name = "m_btnOK";
			this.m_btnOK.Size = new System.Drawing.Size(75, 23);
			this.m_btnOK.TabIndex = 1;
			this.m_btnOK.Text = "&OK";
			this.m_btnOK.UseVisualStyleBackColor = true;
			this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
			// 
			// m_btnCancel
			// 
			this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.m_btnCancel.Location = new System.Drawing.Point(543, 383);
			this.m_btnCancel.Name = "m_btnCancel";
			this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
			this.m_btnCancel.TabIndex = 2;
			this.m_btnCancel.Text = "&Cancel";
			this.m_btnCancel.UseVisualStyleBackColor = true;
			this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
			// 
			// m_picRandom
			// 
			this.m_picRandom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.m_picRandom.Image = global::KeePass.Properties.Resources.B284x231_Random;
			this.m_picRandom.Location = new System.Drawing.Point(9, 47);
			this.m_picRandom.Name = "m_picRandom";
			this.m_picRandom.Size = new System.Drawing.Size(286, 233);
			this.m_picRandom.TabIndex = 2;
			this.m_picRandom.TabStop = false;
			this.m_picRandom.MouseMove += new System.Windows.Forms.MouseEventHandler(this.OnRandomMouseMove);
			// 
			// m_lblHint
			// 
			this.m_lblHint.Location = new System.Drawing.Point(6, 16);
			this.m_lblHint.Name = "m_lblHint";
			this.m_lblHint.Size = new System.Drawing.Size(289, 28);
			this.m_lblHint.TabIndex = 0;
			this.m_lblHint.Text = "Move the mouse randomly in the following field to generate random bits:";
			// 
			// m_lblGeneratedHint
			// 
			this.m_lblGeneratedHint.AutoSize = true;
			this.m_lblGeneratedHint.Location = new System.Drawing.Point(6, 286);
			this.m_lblGeneratedHint.Name = "m_lblGeneratedHint";
			this.m_lblGeneratedHint.Size = new System.Drawing.Size(79, 13);
			this.m_lblGeneratedHint.TabIndex = 1;
			this.m_lblGeneratedHint.Text = "Generated bits:";
			// 
			// m_pbGenerated
			// 
			this.m_pbGenerated.Location = new System.Drawing.Point(91, 286);
			this.m_pbGenerated.Maximum = 100;
			this.m_pbGenerated.Minimum = 0;
			this.m_pbGenerated.Name = "m_pbGenerated";
			this.m_pbGenerated.Size = new System.Drawing.Size(148, 13);
			this.m_pbGenerated.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
			this.m_pbGenerated.TabIndex = 2;
			this.m_pbGenerated.TabStop = false;
			this.m_pbGenerated.Value = 0;
			// 
			// m_lblStatus
			// 
			this.m_lblStatus.AutoSize = true;
			this.m_lblStatus.Location = new System.Drawing.Point(245, 286);
			this.m_lblStatus.Name = "m_lblStatus";
			this.m_lblStatus.Size = new System.Drawing.Size(50, 13);
			this.m_lblStatus.TabIndex = 3;
			this.m_lblStatus.Text = "9999 bits";
			this.m_lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// m_bannerImage
			// 
			this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
			this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
			this.m_bannerImage.Name = "m_bannerImage";
			this.m_bannerImage.Size = new System.Drawing.Size(630, 60);
			this.m_bannerImage.TabIndex = 8;
			this.m_bannerImage.TabStop = false;
			// 
			// m_grpMouse
			// 
			this.m_grpMouse.Controls.Add(this.m_lblHint);
			this.m_grpMouse.Controls.Add(this.m_picRandom);
			this.m_grpMouse.Controls.Add(this.m_lblGeneratedHint);
			this.m_grpMouse.Controls.Add(this.m_pbGenerated);
			this.m_grpMouse.Controls.Add(this.m_lblStatus);
			this.m_grpMouse.Location = new System.Drawing.Point(12, 66);
			this.m_grpMouse.Name = "m_grpMouse";
			this.m_grpMouse.Size = new System.Drawing.Size(301, 311);
			this.m_grpMouse.TabIndex = 3;
			this.m_grpMouse.TabStop = false;
			this.m_grpMouse.Text = "Random mouse input";
			// 
			// m_grpKeyboard
			// 
			this.m_grpKeyboard.Controls.Add(this.m_lblKeysDesc);
			this.m_grpKeyboard.Controls.Add(this.m_lblKeysIntro);
			this.m_grpKeyboard.Controls.Add(this.m_tbEdit);
			this.m_grpKeyboard.Location = new System.Drawing.Point(319, 66);
			this.m_grpKeyboard.Name = "m_grpKeyboard";
			this.m_grpKeyboard.Size = new System.Drawing.Size(299, 311);
			this.m_grpKeyboard.TabIndex = 0;
			this.m_grpKeyboard.TabStop = false;
			this.m_grpKeyboard.Text = "Random keyboard input";
			// 
			// m_lblKeysDesc
			// 
			this.m_lblKeysDesc.Location = new System.Drawing.Point(6, 254);
			this.m_lblKeysDesc.Name = "m_lblKeysDesc";
			this.m_lblKeysDesc.Size = new System.Drawing.Size(287, 54);
			this.m_lblKeysDesc.TabIndex = 2;
			this.m_lblKeysDesc.Text = "Just hack some random keys into the box above. You do not need to remember them. " +
				"They are only used as a random seed for a cryptographically strong random number" +
				" generator.";
			// 
			// m_lblKeysIntro
			// 
			this.m_lblKeysIntro.AutoSize = true;
			this.m_lblKeysIntro.Location = new System.Drawing.Point(6, 16);
			this.m_lblKeysIntro.Name = "m_lblKeysIntro";
			this.m_lblKeysIntro.Size = new System.Drawing.Size(229, 13);
			this.m_lblKeysIntro.TabIndex = 1;
			this.m_lblKeysIntro.Text = "Type random characters into the following field:";
			// 
			// m_tbEdit
			// 
			this.m_tbEdit.AcceptsReturn = true;
			this.m_tbEdit.Location = new System.Drawing.Point(6, 47);
			this.m_tbEdit.Multiline = true;
			this.m_tbEdit.Name = "m_tbEdit";
			this.m_tbEdit.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.m_tbEdit.Size = new System.Drawing.Size(287, 204);
			this.m_tbEdit.TabIndex = 0;
			// 
			// EntropyForm
			// 
			this.AcceptButton = this.m_btnOK;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.m_btnCancel;
			this.ClientSize = new System.Drawing.Size(630, 418);
			this.Controls.Add(this.m_grpKeyboard);
			this.Controls.Add(this.m_grpMouse);
			this.Controls.Add(this.m_bannerImage);
			this.Controls.Add(this.m_btnCancel);
			this.Controls.Add(this.m_btnOK);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "EntropyForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "<>";
			this.Load += new System.EventHandler(this.OnFormLoad);
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
			((System.ComponentModel.ISupportInitialize)(this.m_picRandom)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
			this.m_grpMouse.ResumeLayout(false);
			this.m_grpMouse.PerformLayout();
			this.m_grpKeyboard.ResumeLayout(false);
			this.m_grpKeyboard.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.Button m_btnOK;
		private System.Windows.Forms.Button m_btnCancel;
		private System.Windows.Forms.PictureBox m_picRandom;
		private System.Windows.Forms.Label m_lblHint;
		private System.Windows.Forms.Label m_lblGeneratedHint;
		private KeePass.UI.QualityProgressBar m_pbGenerated;
		private System.Windows.Forms.Label m_lblStatus;
		private System.Windows.Forms.PictureBox m_bannerImage;
		private System.Windows.Forms.GroupBox m_grpMouse;
		private System.Windows.Forms.GroupBox m_grpKeyboard;
		private System.Windows.Forms.TextBox m_tbEdit;
		private System.Windows.Forms.Label m_lblKeysIntro;
		private System.Windows.Forms.Label m_lblKeysDesc;
	}
}