File: ProxyForm.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 (248 lines) | stat: -rw-r--r-- 9,737 bytes parent folder | download | duplicates (2)
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
namespace KeePass.Forms
{
	partial class ProxyForm
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if(disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.m_btnOK = new System.Windows.Forms.Button();
			this.m_btnCancel = new System.Windows.Forms.Button();
			this.m_grpServer = new System.Windows.Forms.GroupBox();
			this.m_tbPort = new System.Windows.Forms.TextBox();
			this.m_lblPort = new System.Windows.Forms.Label();
			this.m_tbAddress = new System.Windows.Forms.TextBox();
			this.m_lblAddress = new System.Windows.Forms.Label();
			this.m_rbManualProxy = new System.Windows.Forms.RadioButton();
			this.m_rbSystemProxy = new System.Windows.Forms.RadioButton();
			this.m_rbNoProxy = new System.Windows.Forms.RadioButton();
			this.m_grpAuth = new System.Windows.Forms.GroupBox();
			this.m_tbPassword = new System.Windows.Forms.TextBox();
			this.m_lblPassword = new System.Windows.Forms.Label();
			this.m_tbUser = new System.Windows.Forms.TextBox();
			this.m_lblUser = new System.Windows.Forms.Label();
			this.m_grpServer.SuspendLayout();
			this.m_grpAuth.SuspendLayout();
			this.SuspendLayout();
			// 
			// m_btnOK
			// 
			this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.m_btnOK.Location = new System.Drawing.Point(183, 227);
			this.m_btnOK.Name = "m_btnOK";
			this.m_btnOK.Size = new System.Drawing.Size(75, 23);
			this.m_btnOK.TabIndex = 0;
			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(264, 227);
			this.m_btnCancel.Name = "m_btnCancel";
			this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
			this.m_btnCancel.TabIndex = 1;
			this.m_btnCancel.Text = "&Cancel";
			this.m_btnCancel.UseVisualStyleBackColor = true;
			// 
			// m_grpServer
			// 
			this.m_grpServer.Controls.Add(this.m_tbPort);
			this.m_grpServer.Controls.Add(this.m_lblPort);
			this.m_grpServer.Controls.Add(this.m_tbAddress);
			this.m_grpServer.Controls.Add(this.m_lblAddress);
			this.m_grpServer.Controls.Add(this.m_rbManualProxy);
			this.m_grpServer.Controls.Add(this.m_rbSystemProxy);
			this.m_grpServer.Controls.Add(this.m_rbNoProxy);
			this.m_grpServer.Location = new System.Drawing.Point(12, 12);
			this.m_grpServer.Name = "m_grpServer";
			this.m_grpServer.Size = new System.Drawing.Size(327, 120);
			this.m_grpServer.TabIndex = 2;
			this.m_grpServer.TabStop = false;
			this.m_grpServer.Text = "Server";
			// 
			// m_tbPort
			// 
			this.m_tbPort.Location = new System.Drawing.Point(266, 88);
			this.m_tbPort.Name = "m_tbPort";
			this.m_tbPort.Size = new System.Drawing.Size(50, 20);
			this.m_tbPort.TabIndex = 6;
			// 
			// m_lblPort
			// 
			this.m_lblPort.AutoSize = true;
			this.m_lblPort.Location = new System.Drawing.Point(231, 91);
			this.m_lblPort.Name = "m_lblPort";
			this.m_lblPort.Size = new System.Drawing.Size(29, 13);
			this.m_lblPort.TabIndex = 5;
			this.m_lblPort.Text = "Port:";
			// 
			// m_tbAddress
			// 
			this.m_tbAddress.Location = new System.Drawing.Point(80, 88);
			this.m_tbAddress.Name = "m_tbAddress";
			this.m_tbAddress.Size = new System.Drawing.Size(144, 20);
			this.m_tbAddress.TabIndex = 4;
			this.m_tbAddress.TextChanged += new System.EventHandler(this.OnAddressTextChanged);
			// 
			// m_lblAddress
			// 
			this.m_lblAddress.AutoSize = true;
			this.m_lblAddress.Location = new System.Drawing.Point(26, 91);
			this.m_lblAddress.Name = "m_lblAddress";
			this.m_lblAddress.Size = new System.Drawing.Size(48, 13);
			this.m_lblAddress.TabIndex = 3;
			this.m_lblAddress.Text = "Address:";
			// 
			// m_rbManualProxy
			// 
			this.m_rbManualProxy.AutoSize = true;
			this.m_rbManualProxy.Location = new System.Drawing.Point(9, 65);
			this.m_rbManualProxy.Name = "m_rbManualProxy";
			this.m_rbManualProxy.Size = new System.Drawing.Size(155, 17);
			this.m_rbManualProxy.TabIndex = 2;
			this.m_rbManualProxy.TabStop = true;
			this.m_rbManualProxy.Text = "&Manual proxy configuration:";
			this.m_rbManualProxy.UseVisualStyleBackColor = true;
			this.m_rbManualProxy.CheckedChanged += new System.EventHandler(this.OnManualProxyCheckedChanged);
			// 
			// m_rbSystemProxy
			// 
			this.m_rbSystemProxy.AutoSize = true;
			this.m_rbSystemProxy.Location = new System.Drawing.Point(9, 42);
			this.m_rbSystemProxy.Name = "m_rbSystemProxy";
			this.m_rbSystemProxy.Size = new System.Drawing.Size(146, 17);
			this.m_rbSystemProxy.TabIndex = 1;
			this.m_rbSystemProxy.TabStop = true;
			this.m_rbSystemProxy.Text = "Use &system proxy settings";
			this.m_rbSystemProxy.UseVisualStyleBackColor = true;
			this.m_rbSystemProxy.CheckedChanged += new System.EventHandler(this.OnSystemProxyCheckedChanged);
			// 
			// m_rbNoProxy
			// 
			this.m_rbNoProxy.AutoSize = true;
			this.m_rbNoProxy.Location = new System.Drawing.Point(9, 19);
			this.m_rbNoProxy.Name = "m_rbNoProxy";
			this.m_rbNoProxy.Size = new System.Drawing.Size(67, 17);
			this.m_rbNoProxy.TabIndex = 0;
			this.m_rbNoProxy.TabStop = true;
			this.m_rbNoProxy.Text = "&No proxy";
			this.m_rbNoProxy.UseVisualStyleBackColor = true;
			this.m_rbNoProxy.CheckedChanged += new System.EventHandler(this.OnNoProxyCheckedChanged);
			// 
			// m_grpAuth
			// 
			this.m_grpAuth.Controls.Add(this.m_tbPassword);
			this.m_grpAuth.Controls.Add(this.m_lblPassword);
			this.m_grpAuth.Controls.Add(this.m_tbUser);
			this.m_grpAuth.Controls.Add(this.m_lblUser);
			this.m_grpAuth.Location = new System.Drawing.Point(12, 138);
			this.m_grpAuth.Name = "m_grpAuth";
			this.m_grpAuth.Size = new System.Drawing.Size(327, 77);
			this.m_grpAuth.TabIndex = 3;
			this.m_grpAuth.TabStop = false;
			this.m_grpAuth.Text = "Authentication";
			// 
			// m_tbPassword
			// 
			this.m_tbPassword.Location = new System.Drawing.Point(80, 45);
			this.m_tbPassword.Name = "m_tbPassword";
			this.m_tbPassword.Size = new System.Drawing.Size(236, 20);
			this.m_tbPassword.TabIndex = 3;
			this.m_tbPassword.UseSystemPasswordChar = true;
			// 
			// m_lblPassword
			// 
			this.m_lblPassword.AutoSize = true;
			this.m_lblPassword.Location = new System.Drawing.Point(6, 48);
			this.m_lblPassword.Name = "m_lblPassword";
			this.m_lblPassword.Size = new System.Drawing.Size(56, 13);
			this.m_lblPassword.TabIndex = 2;
			this.m_lblPassword.Text = "Password:";
			// 
			// m_tbUser
			// 
			this.m_tbUser.Location = new System.Drawing.Point(80, 19);
			this.m_tbUser.Name = "m_tbUser";
			this.m_tbUser.Size = new System.Drawing.Size(236, 20);
			this.m_tbUser.TabIndex = 1;
			// 
			// m_lblUser
			// 
			this.m_lblUser.AutoSize = true;
			this.m_lblUser.Location = new System.Drawing.Point(6, 22);
			this.m_lblUser.Name = "m_lblUser";
			this.m_lblUser.Size = new System.Drawing.Size(61, 13);
			this.m_lblUser.TabIndex = 0;
			this.m_lblUser.Text = "User name:";
			// 
			// ProxyForm
			// 
			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(351, 262);
			this.Controls.Add(this.m_grpAuth);
			this.Controls.Add(this.m_grpServer);
			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 = "ProxyForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Proxy Settings";
			this.Load += new System.EventHandler(this.OnFormLoad);
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
			this.m_grpServer.ResumeLayout(false);
			this.m_grpServer.PerformLayout();
			this.m_grpAuth.ResumeLayout(false);
			this.m_grpAuth.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.Button m_btnOK;
		private System.Windows.Forms.Button m_btnCancel;
		private System.Windows.Forms.GroupBox m_grpServer;
		private System.Windows.Forms.RadioButton m_rbSystemProxy;
		private System.Windows.Forms.RadioButton m_rbNoProxy;
		private System.Windows.Forms.GroupBox m_grpAuth;
		private System.Windows.Forms.TextBox m_tbPassword;
		private System.Windows.Forms.Label m_lblPassword;
		private System.Windows.Forms.TextBox m_tbUser;
		private System.Windows.Forms.Label m_lblUser;
		private System.Windows.Forms.TextBox m_tbPort;
		private System.Windows.Forms.Label m_lblPort;
		private System.Windows.Forms.TextBox m_tbAddress;
		private System.Windows.Forms.Label m_lblAddress;
		private System.Windows.Forms.RadioButton m_rbManualProxy;
	}
}