comparison ARClient/frmSettings.Designer.cs @ 0:90ea68d4f92f

First release
author Ivo Smits <Ivo@UCIS.nl>
date Sat, 08 Nov 2014 22:43:51 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:90ea68d4f92f
1 namespace ARClient {
2 partial class frmSettings {
3 /// <summary>
4 /// Required designer variable.
5 /// </summary>
6 private System.ComponentModel.IContainer components = null;
7
8 /// <summary>
9 /// Clean up any resources being used.
10 /// </summary>
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12 protected override void Dispose(bool disposing) {
13 if (disposing && (components != null)) {
14 components.Dispose();
15 }
16 base.Dispose(disposing);
17 }
18
19 #region Windows Form Designer generated code
20
21 /// <summary>
22 /// Required method for Designer support - do not modify
23 /// the contents of this method with the code editor.
24 /// </summary>
25 private void InitializeComponent() {
26 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSettings));
27 this.tabControl1 = new System.Windows.Forms.TabControl();
28 this.tabPage1 = new System.Windows.Forms.TabPage();
29 this.lstSyncPeers = new System.Windows.Forms.ListBox();
30 this.panel1 = new System.Windows.Forms.Panel();
31 this.btnPeerEdit = new System.Windows.Forms.Button();
32 this.btnPeerDelete = new System.Windows.Forms.Button();
33 this.btnPeerAdd = new System.Windows.Forms.Button();
34 this.tabPage2 = new System.Windows.Forms.TabPage();
35 this.label5 = new System.Windows.Forms.Label();
36 this.btnKeypairImport = new System.Windows.Forms.Button();
37 this.btnKeypairGenerate = new System.Windows.Forms.Button();
38 this.btnKeypairExport = new System.Windows.Forms.Button();
39 this.btnKeypairInput = new System.Windows.Forms.Button();
40 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
41 this.txtSecretKey = new System.Windows.Forms.TextBox();
42 this.label2 = new System.Windows.Forms.Label();
43 this.label1 = new System.Windows.Forms.Label();
44 this.txtPublicKey = new System.Windows.Forms.TextBox();
45 this.tabPage3 = new System.Windows.Forms.TabPage();
46 this.label3 = new System.Windows.Forms.Label();
47 this.btnDatabaseCreate = new System.Windows.Forms.Button();
48 this.btnDatabaseSaveAs = new System.Windows.Forms.Button();
49 this.btnDatabaseOpen = new System.Windows.Forms.Button();
50 this.btnDatabaseSave = new System.Windows.Forms.Button();
51 this.btnDatabaseReload = new System.Windows.Forms.Button();
52 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
53 this.label4 = new System.Windows.Forms.Label();
54 this.txtDatabase = new System.Windows.Forms.TextBox();
55 this.tabPage4 = new System.Windows.Forms.TabPage();
56 this.groupBox2 = new System.Windows.Forms.GroupBox();
57 this.lstFilterKey = new System.Windows.Forms.ListBox();
58 this.panel2 = new System.Windows.Forms.Panel();
59 this.btnFilterDeleteAllFiltered = new System.Windows.Forms.Button();
60 this.btnFilterKeyDelete = new System.Windows.Forms.Button();
61 this.btnFilterKeyAdd = new System.Windows.Forms.Button();
62 this.groupBox1 = new System.Windows.Forms.GroupBox();
63 this.chkFilterTypeKey = new System.Windows.Forms.CheckBox();
64 this.chkFilterTypeInvalid = new System.Windows.Forms.CheckBox();
65 this.chkFilterTypeOther = new System.Windows.Forms.CheckBox();
66 this.chkFilterTypeOtherDom = new System.Windows.Forms.CheckBox();
67 this.chkFilterTypeOtherIPv6 = new System.Windows.Forms.CheckBox();
68 this.chkFilterTypeOtherIPv4 = new System.Windows.Forms.CheckBox();
69 this.chkFilterTypeAnonetDom = new System.Windows.Forms.CheckBox();
70 this.chkFilterTypeASN = new System.Windows.Forms.CheckBox();
71 this.chkFilterTypeAnonetIPv6 = new System.Windows.Forms.CheckBox();
72 this.chkFilterTypeAnonetIPv4 = new System.Windows.Forms.CheckBox();
73 this.tabControl1.SuspendLayout();
74 this.tabPage1.SuspendLayout();
75 this.panel1.SuspendLayout();
76 this.tabPage2.SuspendLayout();
77 this.tableLayoutPanel1.SuspendLayout();
78 this.tabPage3.SuspendLayout();
79 this.tableLayoutPanel2.SuspendLayout();
80 this.tabPage4.SuspendLayout();
81 this.groupBox2.SuspendLayout();
82 this.panel2.SuspendLayout();
83 this.groupBox1.SuspendLayout();
84 this.SuspendLayout();
85 //
86 // tabControl1
87 //
88 this.tabControl1.Controls.Add(this.tabPage1);
89 this.tabControl1.Controls.Add(this.tabPage2);
90 this.tabControl1.Controls.Add(this.tabPage3);
91 this.tabControl1.Controls.Add(this.tabPage4);
92 this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
93 this.tabControl1.Location = new System.Drawing.Point(0, 0);
94 this.tabControl1.Name = "tabControl1";
95 this.tabControl1.SelectedIndex = 0;
96 this.tabControl1.Size = new System.Drawing.Size(551, 288);
97 this.tabControl1.TabIndex = 0;
98 //
99 // tabPage1
100 //
101 this.tabPage1.Controls.Add(this.lstSyncPeers);
102 this.tabPage1.Controls.Add(this.panel1);
103 this.tabPage1.Location = new System.Drawing.Point(4, 22);
104 this.tabPage1.Name = "tabPage1";
105 this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
106 this.tabPage1.Size = new System.Drawing.Size(543, 262);
107 this.tabPage1.TabIndex = 0;
108 this.tabPage1.Text = "Synchronization";
109 this.tabPage1.UseVisualStyleBackColor = true;
110 //
111 // lstSyncPeers
112 //
113 this.lstSyncPeers.Dock = System.Windows.Forms.DockStyle.Fill;
114 this.lstSyncPeers.FormattingEnabled = true;
115 this.lstSyncPeers.Location = new System.Drawing.Point(3, 3);
116 this.lstSyncPeers.Name = "lstSyncPeers";
117 this.lstSyncPeers.Size = new System.Drawing.Size(537, 225);
118 this.lstSyncPeers.TabIndex = 0;
119 //
120 // panel1
121 //
122 this.panel1.AutoSize = true;
123 this.panel1.Controls.Add(this.btnPeerEdit);
124 this.panel1.Controls.Add(this.btnPeerDelete);
125 this.panel1.Controls.Add(this.btnPeerAdd);
126 this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
127 this.panel1.Location = new System.Drawing.Point(3, 230);
128 this.panel1.Name = "panel1";
129 this.panel1.Size = new System.Drawing.Size(537, 29);
130 this.panel1.TabIndex = 1;
131 //
132 // btnPeerEdit
133 //
134 this.btnPeerEdit.Location = new System.Drawing.Point(165, 3);
135 this.btnPeerEdit.Name = "btnPeerEdit";
136 this.btnPeerEdit.Size = new System.Drawing.Size(75, 23);
137 this.btnPeerEdit.TabIndex = 2;
138 this.btnPeerEdit.Text = "Edit peer";
139 this.btnPeerEdit.UseVisualStyleBackColor = true;
140 this.btnPeerEdit.Click += new System.EventHandler(this.btnPeerEdit_Click);
141 //
142 // btnPeerDelete
143 //
144 this.btnPeerDelete.Location = new System.Drawing.Point(84, 3);
145 this.btnPeerDelete.Name = "btnPeerDelete";
146 this.btnPeerDelete.Size = new System.Drawing.Size(75, 23);
147 this.btnPeerDelete.TabIndex = 1;
148 this.btnPeerDelete.Text = "Delete peer";
149 this.btnPeerDelete.UseVisualStyleBackColor = true;
150 this.btnPeerDelete.Click += new System.EventHandler(this.btnPeerDelete_Click);
151 //
152 // btnPeerAdd
153 //
154 this.btnPeerAdd.Location = new System.Drawing.Point(3, 3);
155 this.btnPeerAdd.Name = "btnPeerAdd";
156 this.btnPeerAdd.Size = new System.Drawing.Size(75, 23);
157 this.btnPeerAdd.TabIndex = 0;
158 this.btnPeerAdd.Text = "Add peer";
159 this.btnPeerAdd.UseVisualStyleBackColor = true;
160 this.btnPeerAdd.Click += new System.EventHandler(this.btnPeerAdd_Click);
161 //
162 // tabPage2
163 //
164 this.tabPage2.Controls.Add(this.label5);
165 this.tabPage2.Controls.Add(this.btnKeypairImport);
166 this.tabPage2.Controls.Add(this.btnKeypairGenerate);
167 this.tabPage2.Controls.Add(this.btnKeypairExport);
168 this.tabPage2.Controls.Add(this.btnKeypairInput);
169 this.tabPage2.Controls.Add(this.tableLayoutPanel1);
170 this.tabPage2.Location = new System.Drawing.Point(4, 22);
171 this.tabPage2.Name = "tabPage2";
172 this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
173 this.tabPage2.Size = new System.Drawing.Size(543, 262);
174 this.tabPage2.TabIndex = 1;
175 this.tabPage2.Text = "Key pair";
176 this.tabPage2.UseVisualStyleBackColor = true;
177 //
178 // label5
179 //
180 this.label5.Dock = System.Windows.Forms.DockStyle.Top;
181 this.label5.Location = new System.Drawing.Point(3, 147);
182 this.label5.Name = "label5";
183 this.label5.Size = new System.Drawing.Size(537, 66);
184 this.label5.TabIndex = 19;
185 this.label5.Text = "Note: Loss of your key pair will render you unable to update your resource claims" +
186 "! Make sure to backup at least your key file.";
187 //
188 // btnKeypairImport
189 //
190 this.btnKeypairImport.Dock = System.Windows.Forms.DockStyle.Top;
191 this.btnKeypairImport.Location = new System.Drawing.Point(3, 124);
192 this.btnKeypairImport.Name = "btnKeypairImport";
193 this.btnKeypairImport.Size = new System.Drawing.Size(537, 23);
194 this.btnKeypairImport.TabIndex = 11;
195 this.btnKeypairImport.Text = "Import key file";
196 this.btnKeypairImport.UseVisualStyleBackColor = true;
197 this.btnKeypairImport.Click += new System.EventHandler(this.btnKeypairImport_Click);
198 //
199 // btnKeypairGenerate
200 //
201 this.btnKeypairGenerate.Dock = System.Windows.Forms.DockStyle.Top;
202 this.btnKeypairGenerate.Location = new System.Drawing.Point(3, 101);
203 this.btnKeypairGenerate.Name = "btnKeypairGenerate";
204 this.btnKeypairGenerate.Size = new System.Drawing.Size(537, 23);
205 this.btnKeypairGenerate.TabIndex = 10;
206 this.btnKeypairGenerate.Text = "Generate key pair";
207 this.btnKeypairGenerate.UseVisualStyleBackColor = true;
208 this.btnKeypairGenerate.Click += new System.EventHandler(this.btnKeypairGenerate_Click);
209 //
210 // btnKeypairExport
211 //
212 this.btnKeypairExport.Dock = System.Windows.Forms.DockStyle.Top;
213 this.btnKeypairExport.Location = new System.Drawing.Point(3, 78);
214 this.btnKeypairExport.Name = "btnKeypairExport";
215 this.btnKeypairExport.Size = new System.Drawing.Size(537, 23);
216 this.btnKeypairExport.TabIndex = 9;
217 this.btnKeypairExport.Text = "Export key file";
218 this.btnKeypairExport.UseVisualStyleBackColor = true;
219 this.btnKeypairExport.Click += new System.EventHandler(this.btnKeypairExport_Click);
220 //
221 // btnKeypairInput
222 //
223 this.btnKeypairInput.Dock = System.Windows.Forms.DockStyle.Top;
224 this.btnKeypairInput.Location = new System.Drawing.Point(3, 55);
225 this.btnKeypairInput.Name = "btnKeypairInput";
226 this.btnKeypairInput.Size = new System.Drawing.Size(537, 23);
227 this.btnKeypairInput.TabIndex = 8;
228 this.btnKeypairInput.Text = "Input new key";
229 this.btnKeypairInput.UseVisualStyleBackColor = true;
230 this.btnKeypairInput.Click += new System.EventHandler(this.btnKeypairInput_Click);
231 //
232 // tableLayoutPanel1
233 //
234 this.tableLayoutPanel1.AutoSize = true;
235 this.tableLayoutPanel1.ColumnCount = 2;
236 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
237 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
238 this.tableLayoutPanel1.Controls.Add(this.txtSecretKey, 1, 1);
239 this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
240 this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
241 this.tableLayoutPanel1.Controls.Add(this.txtPublicKey, 1, 0);
242 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
243 this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
244 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
245 this.tableLayoutPanel1.RowCount = 2;
246 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
247 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
248 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
249 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
250 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
251 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
252 this.tableLayoutPanel1.Size = new System.Drawing.Size(537, 52);
253 this.tableLayoutPanel1.TabIndex = 0;
254 //
255 // txtSecretKey
256 //
257 this.txtSecretKey.Dock = System.Windows.Forms.DockStyle.Fill;
258 this.txtSecretKey.Location = new System.Drawing.Point(103, 29);
259 this.txtSecretKey.Name = "txtSecretKey";
260 this.txtSecretKey.ReadOnly = true;
261 this.txtSecretKey.Size = new System.Drawing.Size(431, 20);
262 this.txtSecretKey.TabIndex = 3;
263 //
264 // label2
265 //
266 this.label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
267 this.label2.AutoSize = true;
268 this.label2.Location = new System.Drawing.Point(3, 32);
269 this.label2.Name = "label2";
270 this.label2.Size = new System.Drawing.Size(58, 13);
271 this.label2.TabIndex = 2;
272 this.label2.Text = "Secret key";
273 //
274 // label1
275 //
276 this.label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
277 this.label1.AutoSize = true;
278 this.label1.Location = new System.Drawing.Point(3, 6);
279 this.label1.Name = "label1";
280 this.label1.Size = new System.Drawing.Size(56, 13);
281 this.label1.TabIndex = 0;
282 this.label1.Text = "Public key";
283 //
284 // txtPublicKey
285 //
286 this.txtPublicKey.Dock = System.Windows.Forms.DockStyle.Fill;
287 this.txtPublicKey.Location = new System.Drawing.Point(103, 3);
288 this.txtPublicKey.Name = "txtPublicKey";
289 this.txtPublicKey.ReadOnly = true;
290 this.txtPublicKey.Size = new System.Drawing.Size(431, 20);
291 this.txtPublicKey.TabIndex = 1;
292 //
293 // tabPage3
294 //
295 this.tabPage3.Controls.Add(this.label3);
296 this.tabPage3.Controls.Add(this.btnDatabaseCreate);
297 this.tabPage3.Controls.Add(this.btnDatabaseSaveAs);
298 this.tabPage3.Controls.Add(this.btnDatabaseOpen);
299 this.tabPage3.Controls.Add(this.btnDatabaseSave);
300 this.tabPage3.Controls.Add(this.btnDatabaseReload);
301 this.tabPage3.Controls.Add(this.tableLayoutPanel2);
302 this.tabPage3.Location = new System.Drawing.Point(4, 22);
303 this.tabPage3.Name = "tabPage3";
304 this.tabPage3.Size = new System.Drawing.Size(543, 262);
305 this.tabPage3.TabIndex = 2;
306 this.tabPage3.Text = "Local storage";
307 this.tabPage3.UseVisualStyleBackColor = true;
308 //
309 // label3
310 //
311 this.label3.Dock = System.Windows.Forms.DockStyle.Top;
312 this.label3.Location = new System.Drawing.Point(0, 141);
313 this.label3.Name = "label3";
314 this.label3.Size = new System.Drawing.Size(543, 66);
315 this.label3.TabIndex = 18;
316 this.label3.Text = resources.GetString("label3.Text");
317 //
318 // btnDatabaseCreate
319 //
320 this.btnDatabaseCreate.Dock = System.Windows.Forms.DockStyle.Top;
321 this.btnDatabaseCreate.Location = new System.Drawing.Point(0, 118);
322 this.btnDatabaseCreate.Name = "btnDatabaseCreate";
323 this.btnDatabaseCreate.Size = new System.Drawing.Size(543, 23);
324 this.btnDatabaseCreate.TabIndex = 17;
325 this.btnDatabaseCreate.Text = "Create new database";
326 this.btnDatabaseCreate.UseVisualStyleBackColor = true;
327 this.btnDatabaseCreate.Click += new System.EventHandler(this.btnDatabaseCreate_Click);
328 //
329 // btnDatabaseSaveAs
330 //
331 this.btnDatabaseSaveAs.Dock = System.Windows.Forms.DockStyle.Top;
332 this.btnDatabaseSaveAs.Location = new System.Drawing.Point(0, 95);
333 this.btnDatabaseSaveAs.Name = "btnDatabaseSaveAs";
334 this.btnDatabaseSaveAs.Size = new System.Drawing.Size(543, 23);
335 this.btnDatabaseSaveAs.TabIndex = 15;
336 this.btnDatabaseSaveAs.Text = "Save database as";
337 this.btnDatabaseSaveAs.UseVisualStyleBackColor = true;
338 this.btnDatabaseSaveAs.Click += new System.EventHandler(this.btnDatabaseSaveAs_Click);
339 //
340 // btnDatabaseOpen
341 //
342 this.btnDatabaseOpen.Dock = System.Windows.Forms.DockStyle.Top;
343 this.btnDatabaseOpen.Location = new System.Drawing.Point(0, 72);
344 this.btnDatabaseOpen.Name = "btnDatabaseOpen";
345 this.btnDatabaseOpen.Size = new System.Drawing.Size(543, 23);
346 this.btnDatabaseOpen.TabIndex = 14;
347 this.btnDatabaseOpen.Text = "Open different database";
348 this.btnDatabaseOpen.UseVisualStyleBackColor = true;
349 this.btnDatabaseOpen.Click += new System.EventHandler(this.btnDatabaseOpen_Click);
350 //
351 // btnDatabaseSave
352 //
353 this.btnDatabaseSave.Dock = System.Windows.Forms.DockStyle.Top;
354 this.btnDatabaseSave.Location = new System.Drawing.Point(0, 49);
355 this.btnDatabaseSave.Name = "btnDatabaseSave";
356 this.btnDatabaseSave.Size = new System.Drawing.Size(543, 23);
357 this.btnDatabaseSave.TabIndex = 13;
358 this.btnDatabaseSave.Text = "Save database";
359 this.btnDatabaseSave.UseVisualStyleBackColor = true;
360 this.btnDatabaseSave.Click += new System.EventHandler(this.btnDatabaseSave_Click);
361 //
362 // btnDatabaseReload
363 //
364 this.btnDatabaseReload.Dock = System.Windows.Forms.DockStyle.Top;
365 this.btnDatabaseReload.Location = new System.Drawing.Point(0, 26);
366 this.btnDatabaseReload.Name = "btnDatabaseReload";
367 this.btnDatabaseReload.Size = new System.Drawing.Size(543, 23);
368 this.btnDatabaseReload.TabIndex = 12;
369 this.btnDatabaseReload.Text = "Reload database";
370 this.btnDatabaseReload.UseVisualStyleBackColor = true;
371 this.btnDatabaseReload.Click += new System.EventHandler(this.btnDatabaseReload_Click);
372 //
373 // tableLayoutPanel2
374 //
375 this.tableLayoutPanel2.AutoSize = true;
376 this.tableLayoutPanel2.ColumnCount = 2;
377 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
378 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
379 this.tableLayoutPanel2.Controls.Add(this.label4, 0, 0);
380 this.tableLayoutPanel2.Controls.Add(this.txtDatabase, 1, 0);
381 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
382 this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
383 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
384 this.tableLayoutPanel2.RowCount = 1;
385 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
386 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
387 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
388 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
389 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
390 this.tableLayoutPanel2.Size = new System.Drawing.Size(543, 26);
391 this.tableLayoutPanel2.TabIndex = 16;
392 //
393 // label4
394 //
395 this.label4.Anchor = System.Windows.Forms.AnchorStyles.Left;
396 this.label4.AutoSize = true;
397 this.label4.Location = new System.Drawing.Point(3, 6);
398 this.label4.Name = "label4";
399 this.label4.Size = new System.Drawing.Size(53, 13);
400 this.label4.TabIndex = 0;
401 this.label4.Text = "Database";
402 //
403 // txtDatabase
404 //
405 this.txtDatabase.Dock = System.Windows.Forms.DockStyle.Fill;
406 this.txtDatabase.Location = new System.Drawing.Point(103, 3);
407 this.txtDatabase.Name = "txtDatabase";
408 this.txtDatabase.ReadOnly = true;
409 this.txtDatabase.Size = new System.Drawing.Size(437, 20);
410 this.txtDatabase.TabIndex = 1;
411 //
412 // tabPage4
413 //
414 this.tabPage4.Controls.Add(this.groupBox2);
415 this.tabPage4.Controls.Add(this.groupBox1);
416 this.tabPage4.Location = new System.Drawing.Point(4, 22);
417 this.tabPage4.Name = "tabPage4";
418 this.tabPage4.Size = new System.Drawing.Size(543, 262);
419 this.tabPage4.TabIndex = 3;
420 this.tabPage4.Text = "Filters";
421 this.tabPage4.UseVisualStyleBackColor = true;
422 //
423 // groupBox2
424 //
425 this.groupBox2.Controls.Add(this.lstFilterKey);
426 this.groupBox2.Controls.Add(this.panel2);
427 this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
428 this.groupBox2.Location = new System.Drawing.Point(0, 64);
429 this.groupBox2.Name = "groupBox2";
430 this.groupBox2.Size = new System.Drawing.Size(543, 198);
431 this.groupBox2.TabIndex = 1;
432 this.groupBox2.TabStop = false;
433 this.groupBox2.Text = "Blocked keys";
434 //
435 // lstFilterKey
436 //
437 this.lstFilterKey.Dock = System.Windows.Forms.DockStyle.Fill;
438 this.lstFilterKey.FormattingEnabled = true;
439 this.lstFilterKey.Location = new System.Drawing.Point(3, 16);
440 this.lstFilterKey.Name = "lstFilterKey";
441 this.lstFilterKey.Size = new System.Drawing.Size(537, 147);
442 this.lstFilterKey.TabIndex = 2;
443 //
444 // panel2
445 //
446 this.panel2.AutoSize = true;
447 this.panel2.Controls.Add(this.btnFilterDeleteAllFiltered);
448 this.panel2.Controls.Add(this.btnFilterKeyDelete);
449 this.panel2.Controls.Add(this.btnFilterKeyAdd);
450 this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
451 this.panel2.Location = new System.Drawing.Point(3, 166);
452 this.panel2.Name = "panel2";
453 this.panel2.Size = new System.Drawing.Size(537, 29);
454 this.panel2.TabIndex = 3;
455 //
456 // btnFilterDeleteAllFiltered
457 //
458 this.btnFilterDeleteAllFiltered.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
459 this.btnFilterDeleteAllFiltered.Location = new System.Drawing.Point(364, 3);
460 this.btnFilterDeleteAllFiltered.Name = "btnFilterDeleteAllFiltered";
461 this.btnFilterDeleteAllFiltered.Size = new System.Drawing.Size(170, 23);
462 this.btnFilterDeleteAllFiltered.TabIndex = 2;
463 this.btnFilterDeleteAllFiltered.Text = "Delete all filtered resources";
464 this.btnFilterDeleteAllFiltered.UseVisualStyleBackColor = true;
465 this.btnFilterDeleteAllFiltered.Click += new System.EventHandler(this.btnFilterDeleteAllFiltered_Click);
466 //
467 // btnFilterKeyDelete
468 //
469 this.btnFilterKeyDelete.Location = new System.Drawing.Point(84, 3);
470 this.btnFilterKeyDelete.Name = "btnFilterKeyDelete";
471 this.btnFilterKeyDelete.Size = new System.Drawing.Size(75, 23);
472 this.btnFilterKeyDelete.TabIndex = 1;
473 this.btnFilterKeyDelete.Text = "Delete key";
474 this.btnFilterKeyDelete.UseVisualStyleBackColor = true;
475 this.btnFilterKeyDelete.Click += new System.EventHandler(this.btnFilterKeyDelete_Click);
476 //
477 // btnFilterKeyAdd
478 //
479 this.btnFilterKeyAdd.Enabled = false;
480 this.btnFilterKeyAdd.Location = new System.Drawing.Point(3, 3);
481 this.btnFilterKeyAdd.Name = "btnFilterKeyAdd";
482 this.btnFilterKeyAdd.Size = new System.Drawing.Size(75, 23);
483 this.btnFilterKeyAdd.TabIndex = 0;
484 this.btnFilterKeyAdd.Text = "Add key";
485 this.btnFilterKeyAdd.UseVisualStyleBackColor = true;
486 //
487 // groupBox1
488 //
489 this.groupBox1.Controls.Add(this.chkFilterTypeKey);
490 this.groupBox1.Controls.Add(this.chkFilterTypeInvalid);
491 this.groupBox1.Controls.Add(this.chkFilterTypeOther);
492 this.groupBox1.Controls.Add(this.chkFilterTypeOtherDom);
493 this.groupBox1.Controls.Add(this.chkFilterTypeOtherIPv6);
494 this.groupBox1.Controls.Add(this.chkFilterTypeOtherIPv4);
495 this.groupBox1.Controls.Add(this.chkFilterTypeAnonetDom);
496 this.groupBox1.Controls.Add(this.chkFilterTypeASN);
497 this.groupBox1.Controls.Add(this.chkFilterTypeAnonetIPv6);
498 this.groupBox1.Controls.Add(this.chkFilterTypeAnonetIPv4);
499 this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
500 this.groupBox1.Location = new System.Drawing.Point(0, 0);
501 this.groupBox1.Name = "groupBox1";
502 this.groupBox1.Size = new System.Drawing.Size(543, 64);
503 this.groupBox1.TabIndex = 0;
504 this.groupBox1.TabStop = false;
505 this.groupBox1.Text = "Resource types";
506 //
507 // chkFilterTypeKey
508 //
509 this.chkFilterTypeKey.AutoSize = true;
510 this.chkFilterTypeKey.Checked = true;
511 this.chkFilterTypeKey.CheckState = System.Windows.Forms.CheckState.Checked;
512 this.chkFilterTypeKey.Location = new System.Drawing.Point(188, 19);
513 this.chkFilterTypeKey.Name = "chkFilterTypeKey";
514 this.chkFilterTypeKey.Size = new System.Drawing.Size(64, 17);
515 this.chkFilterTypeKey.TabIndex = 9;
516 this.chkFilterTypeKey.Text = "Key info";
517 this.chkFilterTypeKey.UseVisualStyleBackColor = true;
518 //
519 // chkFilterTypeInvalid
520 //
521 this.chkFilterTypeInvalid.AutoSize = true;
522 this.chkFilterTypeInvalid.Checked = true;
523 this.chkFilterTypeInvalid.CheckState = System.Windows.Forms.CheckState.Checked;
524 this.chkFilterTypeInvalid.Location = new System.Drawing.Point(414, 19);
525 this.chkFilterTypeInvalid.Name = "chkFilterTypeInvalid";
526 this.chkFilterTypeInvalid.Size = new System.Drawing.Size(106, 17);
527 this.chkFilterTypeInvalid.TabIndex = 8;
528 this.chkFilterTypeInvalid.Text = "Invalid resources";
529 this.chkFilterTypeInvalid.UseVisualStyleBackColor = true;
530 this.chkFilterTypeInvalid.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
531 //
532 // chkFilterTypeOther
533 //
534 this.chkFilterTypeOther.AutoSize = true;
535 this.chkFilterTypeOther.Checked = true;
536 this.chkFilterTypeOther.CheckState = System.Windows.Forms.CheckState.Checked;
537 this.chkFilterTypeOther.Location = new System.Drawing.Point(414, 42);
538 this.chkFilterTypeOther.Name = "chkFilterTypeOther";
539 this.chkFilterTypeOther.Size = new System.Drawing.Size(101, 17);
540 this.chkFilterTypeOther.TabIndex = 7;
541 this.chkFilterTypeOther.Text = "Other resources";
542 this.chkFilterTypeOther.UseVisualStyleBackColor = true;
543 this.chkFilterTypeOther.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
544 //
545 // chkFilterTypeOtherDom
546 //
547 this.chkFilterTypeOtherDom.AutoSize = true;
548 this.chkFilterTypeOtherDom.Checked = true;
549 this.chkFilterTypeOtherDom.CheckState = System.Windows.Forms.CheckState.Checked;
550 this.chkFilterTypeOtherDom.Location = new System.Drawing.Point(277, 42);
551 this.chkFilterTypeOtherDom.Name = "chkFilterTypeOtherDom";
552 this.chkFilterTypeOtherDom.Size = new System.Drawing.Size(123, 17);
553 this.chkFilterTypeOtherDom.TabIndex = 6;
554 this.chkFilterTypeOtherDom.Text = "Other domain names";
555 this.chkFilterTypeOtherDom.UseVisualStyleBackColor = true;
556 this.chkFilterTypeOtherDom.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
557 //
558 // chkFilterTypeOtherIPv6
559 //
560 this.chkFilterTypeOtherIPv6.AutoSize = true;
561 this.chkFilterTypeOtherIPv6.Checked = true;
562 this.chkFilterTypeOtherIPv6.CheckState = System.Windows.Forms.CheckState.Checked;
563 this.chkFilterTypeOtherIPv6.Location = new System.Drawing.Point(97, 42);
564 this.chkFilterTypeOtherIPv6.Name = "chkFilterTypeOtherIPv6";
565 this.chkFilterTypeOtherIPv6.Size = new System.Drawing.Size(77, 17);
566 this.chkFilterTypeOtherIPv6.TabIndex = 5;
567 this.chkFilterTypeOtherIPv6.Text = "Other IPv6";
568 this.chkFilterTypeOtherIPv6.UseVisualStyleBackColor = true;
569 this.chkFilterTypeOtherIPv6.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
570 //
571 // chkFilterTypeOtherIPv4
572 //
573 this.chkFilterTypeOtherIPv4.AutoSize = true;
574 this.chkFilterTypeOtherIPv4.Checked = true;
575 this.chkFilterTypeOtherIPv4.CheckState = System.Windows.Forms.CheckState.Checked;
576 this.chkFilterTypeOtherIPv4.Location = new System.Drawing.Point(6, 42);
577 this.chkFilterTypeOtherIPv4.Name = "chkFilterTypeOtherIPv4";
578 this.chkFilterTypeOtherIPv4.Size = new System.Drawing.Size(77, 17);
579 this.chkFilterTypeOtherIPv4.TabIndex = 4;
580 this.chkFilterTypeOtherIPv4.Text = "Other IPv4";
581 this.chkFilterTypeOtherIPv4.UseVisualStyleBackColor = true;
582 this.chkFilterTypeOtherIPv4.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
583 //
584 // chkFilterTypeAnonetDom
585 //
586 this.chkFilterTypeAnonetDom.AutoSize = true;
587 this.chkFilterTypeAnonetDom.Checked = true;
588 this.chkFilterTypeAnonetDom.CheckState = System.Windows.Forms.CheckState.Checked;
589 this.chkFilterTypeAnonetDom.Location = new System.Drawing.Point(277, 19);
590 this.chkFilterTypeAnonetDom.Name = "chkFilterTypeAnonetDom";
591 this.chkFilterTypeAnonetDom.Size = new System.Drawing.Size(131, 17);
592 this.chkFilterTypeAnonetDom.TabIndex = 3;
593 this.chkFilterTypeAnonetDom.Text = "Anonet domain names";
594 this.chkFilterTypeAnonetDom.UseVisualStyleBackColor = true;
595 this.chkFilterTypeAnonetDom.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
596 //
597 // chkFilterTypeASN
598 //
599 this.chkFilterTypeASN.AutoSize = true;
600 this.chkFilterTypeASN.Checked = true;
601 this.chkFilterTypeASN.CheckState = System.Windows.Forms.CheckState.Checked;
602 this.chkFilterTypeASN.Location = new System.Drawing.Point(188, 42);
603 this.chkFilterTypeASN.Name = "chkFilterTypeASN";
604 this.chkFilterTypeASN.Size = new System.Drawing.Size(83, 17);
605 this.chkFilterTypeASN.TabIndex = 2;
606 this.chkFilterTypeASN.Text = "AS numbers";
607 this.chkFilterTypeASN.UseVisualStyleBackColor = true;
608 this.chkFilterTypeASN.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
609 //
610 // chkFilterTypeAnonetIPv6
611 //
612 this.chkFilterTypeAnonetIPv6.AutoSize = true;
613 this.chkFilterTypeAnonetIPv6.Checked = true;
614 this.chkFilterTypeAnonetIPv6.CheckState = System.Windows.Forms.CheckState.Checked;
615 this.chkFilterTypeAnonetIPv6.Location = new System.Drawing.Point(97, 19);
616 this.chkFilterTypeAnonetIPv6.Name = "chkFilterTypeAnonetIPv6";
617 this.chkFilterTypeAnonetIPv6.Size = new System.Drawing.Size(85, 17);
618 this.chkFilterTypeAnonetIPv6.TabIndex = 1;
619 this.chkFilterTypeAnonetIPv6.Text = "Anonet IPv6";
620 this.chkFilterTypeAnonetIPv6.UseVisualStyleBackColor = true;
621 this.chkFilterTypeAnonetIPv6.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
622 //
623 // chkFilterTypeAnonetIPv4
624 //
625 this.chkFilterTypeAnonetIPv4.AutoSize = true;
626 this.chkFilterTypeAnonetIPv4.Checked = true;
627 this.chkFilterTypeAnonetIPv4.CheckState = System.Windows.Forms.CheckState.Checked;
628 this.chkFilterTypeAnonetIPv4.Location = new System.Drawing.Point(6, 19);
629 this.chkFilterTypeAnonetIPv4.Name = "chkFilterTypeAnonetIPv4";
630 this.chkFilterTypeAnonetIPv4.Size = new System.Drawing.Size(85, 17);
631 this.chkFilterTypeAnonetIPv4.TabIndex = 0;
632 this.chkFilterTypeAnonetIPv4.Text = "Anonet IPv4";
633 this.chkFilterTypeAnonetIPv4.UseVisualStyleBackColor = true;
634 this.chkFilterTypeAnonetIPv4.CheckedChanged += new System.EventHandler(this.chkFilterType_CheckedChanged);
635 //
636 // frmSettings
637 //
638 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
639 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
640 this.ClientSize = new System.Drawing.Size(551, 288);
641 this.Controls.Add(this.tabControl1);
642 this.Name = "frmSettings";
643 this.ShowInTaskbar = false;
644 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
645 this.Text = "MARC Resource Manager settings";
646 this.Load += new System.EventHandler(this.frmSettings_Load);
647 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmSettings_FormClosed);
648 this.tabControl1.ResumeLayout(false);
649 this.tabPage1.ResumeLayout(false);
650 this.tabPage1.PerformLayout();
651 this.panel1.ResumeLayout(false);
652 this.tabPage2.ResumeLayout(false);
653 this.tabPage2.PerformLayout();
654 this.tableLayoutPanel1.ResumeLayout(false);
655 this.tableLayoutPanel1.PerformLayout();
656 this.tabPage3.ResumeLayout(false);
657 this.tabPage3.PerformLayout();
658 this.tableLayoutPanel2.ResumeLayout(false);
659 this.tableLayoutPanel2.PerformLayout();
660 this.tabPage4.ResumeLayout(false);
661 this.groupBox2.ResumeLayout(false);
662 this.groupBox2.PerformLayout();
663 this.panel2.ResumeLayout(false);
664 this.groupBox1.ResumeLayout(false);
665 this.groupBox1.PerformLayout();
666 this.ResumeLayout(false);
667
668 }
669
670 #endregion
671
672 private System.Windows.Forms.TabControl tabControl1;
673 private System.Windows.Forms.TabPage tabPage1;
674 private System.Windows.Forms.ListBox lstSyncPeers;
675 private System.Windows.Forms.Panel panel1;
676 private System.Windows.Forms.Button btnPeerEdit;
677 private System.Windows.Forms.Button btnPeerDelete;
678 private System.Windows.Forms.Button btnPeerAdd;
679 private System.Windows.Forms.TabPage tabPage2;
680 private System.Windows.Forms.TabPage tabPage3;
681 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
682 private System.Windows.Forms.TextBox txtSecretKey;
683 private System.Windows.Forms.Label label2;
684 private System.Windows.Forms.Label label1;
685 private System.Windows.Forms.TextBox txtPublicKey;
686 private System.Windows.Forms.Button btnKeypairImport;
687 private System.Windows.Forms.Button btnKeypairGenerate;
688 private System.Windows.Forms.Button btnKeypairExport;
689 private System.Windows.Forms.Button btnKeypairInput;
690 private System.Windows.Forms.Button btnDatabaseCreate;
691 private System.Windows.Forms.Button btnDatabaseSaveAs;
692 private System.Windows.Forms.Button btnDatabaseOpen;
693 private System.Windows.Forms.Button btnDatabaseSave;
694 private System.Windows.Forms.Button btnDatabaseReload;
695 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
696 private System.Windows.Forms.Label label4;
697 private System.Windows.Forms.TextBox txtDatabase;
698 private System.Windows.Forms.Label label3;
699 private System.Windows.Forms.Label label5;
700 private System.Windows.Forms.TabPage tabPage4;
701 private System.Windows.Forms.GroupBox groupBox1;
702 private System.Windows.Forms.CheckBox chkFilterTypeOther;
703 private System.Windows.Forms.CheckBox chkFilterTypeOtherDom;
704 private System.Windows.Forms.CheckBox chkFilterTypeOtherIPv6;
705 private System.Windows.Forms.CheckBox chkFilterTypeOtherIPv4;
706 private System.Windows.Forms.CheckBox chkFilterTypeAnonetDom;
707 private System.Windows.Forms.CheckBox chkFilterTypeASN;
708 private System.Windows.Forms.CheckBox chkFilterTypeAnonetIPv6;
709 private System.Windows.Forms.CheckBox chkFilterTypeAnonetIPv4;
710 private System.Windows.Forms.GroupBox groupBox2;
711 private System.Windows.Forms.ListBox lstFilterKey;
712 private System.Windows.Forms.Panel panel2;
713 private System.Windows.Forms.Button btnFilterKeyDelete;
714 private System.Windows.Forms.Button btnFilterKeyAdd;
715 private System.Windows.Forms.Button btnFilterDeleteAllFiltered;
716 private System.Windows.Forms.CheckBox chkFilterTypeInvalid;
717 private System.Windows.Forms.CheckBox chkFilterTypeKey;
718 }
719 }