forked from nbauernfeind/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCredentialsDialog.Designer.cs
More file actions
412 lines (408 loc) · 15.7 KB
/
CredentialsDialog.Designer.cs
File metadata and controls
412 lines (408 loc) · 15.7 KB
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
namespace ExcelAddIn.views {
partial class CredentialsDialog {
/// <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() {
corePlusPanel = new Panel();
operateAsLabel = new Label();
validateCertCheckBox = new CheckBox();
operateAsBox = new TextBox();
passwordBox = new TextBox();
passwordLabel = new Label();
userIdBox = new TextBox();
userIdLabel = new Label();
jsonUrlBox = new TextBox();
jsonUrlLabel = new Label();
corePanel = new Panel();
connectionStringBox = new TextBox();
connectionStringLabel = new Label();
groupBox1 = new GroupBox();
sessionTypeIsGroovyButton = new RadioButton();
sessionTypeIsPythonButton = new RadioButton();
finalPanel = new Panel();
versionLabel = new Label();
makeDefaultCheckBox = new CheckBox();
testResultsTextBox = new TextBox();
testResultsLabel = new Label();
testCredentialsButton = new Button();
setCredentialsButton = new Button();
isCorePlusRadioButton = new RadioButton();
isCoreRadioButton = new RadioButton();
endpointIdBox = new TextBox();
connectionIdLabel = new Label();
connectionTypeGroup = new GroupBox();
connectionIdPanel = new Panel();
corePlusPanel.SuspendLayout();
corePanel.SuspendLayout();
groupBox1.SuspendLayout();
finalPanel.SuspendLayout();
connectionTypeGroup.SuspendLayout();
connectionIdPanel.SuspendLayout();
SuspendLayout();
//
// corePlusPanel
//
corePlusPanel.Controls.Add(operateAsLabel);
corePlusPanel.Controls.Add(validateCertCheckBox);
corePlusPanel.Controls.Add(operateAsBox);
corePlusPanel.Controls.Add(passwordBox);
corePlusPanel.Controls.Add(passwordLabel);
corePlusPanel.Controls.Add(userIdBox);
corePlusPanel.Controls.Add(userIdLabel);
corePlusPanel.Controls.Add(jsonUrlBox);
corePlusPanel.Controls.Add(jsonUrlLabel);
corePlusPanel.Dock = DockStyle.Top;
corePlusPanel.Location = new Point(0, 191);
corePlusPanel.Name = "corePlusPanel";
corePlusPanel.Size = new Size(1054, 299);
corePlusPanel.TabIndex = 2;
//
// operateAsLabel
//
operateAsLabel.AutoSize = true;
operateAsLabel.Location = new Point(75, 183);
operateAsLabel.Name = "operateAsLabel";
operateAsLabel.Size = new Size(96, 25);
operateAsLabel.TabIndex = 217;
operateAsLabel.Text = "OperateAs";
//
// validateCertCheckBox
//
validateCertCheckBox.AutoSize = true;
validateCertCheckBox.Location = new Point(194, 237);
validateCertCheckBox.Name = "validateCertCheckBox";
validateCertCheckBox.RightToLeft = RightToLeft.No;
validateCertCheckBox.Size = new Size(183, 29);
validateCertCheckBox.TabIndex = 5;
validateCertCheckBox.Text = "Validate Certificate";
validateCertCheckBox.UseVisualStyleBackColor = true;
//
// operateAsBox
//
operateAsBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
operateAsBox.Location = new Point(194, 180);
operateAsBox.Name = "operateAsBox";
operateAsBox.PlaceholderText = "Leave blank for default";
operateAsBox.Size = new Size(795, 31);
operateAsBox.TabIndex = 4;
//
// passwordBox
//
passwordBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
passwordBox.Location = new Point(194, 130);
passwordBox.Name = "passwordBox";
passwordBox.PasswordChar = '●';
passwordBox.Size = new Size(795, 31);
passwordBox.TabIndex = 3;
//
// passwordLabel
//
passwordLabel.AutoSize = true;
passwordLabel.Location = new Point(84, 133);
passwordLabel.Name = "passwordLabel";
passwordLabel.Size = new Size(87, 25);
passwordLabel.TabIndex = 4;
passwordLabel.Text = "Password";
//
// userIdBox
//
userIdBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
userIdBox.Location = new Point(194, 82);
userIdBox.Name = "userIdBox";
userIdBox.Size = new Size(795, 31);
userIdBox.TabIndex = 2;
//
// userIdLabel
//
userIdLabel.AutoSize = true;
userIdLabel.Location = new Point(108, 85);
userIdLabel.Name = "userIdLabel";
userIdLabel.Size = new Size(63, 25);
userIdLabel.TabIndex = 2;
userIdLabel.Text = "UserId";
//
// jsonUrlBox
//
jsonUrlBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
jsonUrlBox.Location = new Point(194, 27);
jsonUrlBox.Name = "jsonUrlBox";
jsonUrlBox.Size = new Size(795, 31);
jsonUrlBox.TabIndex = 1;
//
// jsonUrlLabel
//
jsonUrlLabel.AutoSize = true;
jsonUrlLabel.Location = new Point(89, 30);
jsonUrlLabel.Name = "jsonUrlLabel";
jsonUrlLabel.Size = new Size(91, 25);
jsonUrlLabel.TabIndex = 0;
jsonUrlLabel.Text = "JSON URL";
//
// corePanel
//
corePanel.Controls.Add(connectionStringBox);
corePanel.Controls.Add(connectionStringLabel);
corePanel.Controls.Add(groupBox1);
corePanel.Dock = DockStyle.Top;
corePanel.Location = new Point(0, 490);
corePanel.Name = "corePanel";
corePanel.Size = new Size(1054, 170);
corePanel.TabIndex = 3;
//
// connectionStringBox
//
connectionStringBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
connectionStringBox.Location = new Point(194, 20);
connectionStringBox.Name = "connectionStringBox";
connectionStringBox.Size = new Size(795, 31);
connectionStringBox.TabIndex = 1;
//
// connectionStringLabel
//
connectionStringLabel.AutoSize = true;
connectionStringLabel.Location = new Point(27, 23);
connectionStringLabel.Name = "connectionStringLabel";
connectionStringLabel.Size = new Size(153, 25);
connectionStringLabel.TabIndex = 0;
connectionStringLabel.Text = "Connection String";
//
// groupBox1
//
groupBox1.Controls.Add(sessionTypeIsGroovyButton);
groupBox1.Controls.Add(sessionTypeIsPythonButton);
groupBox1.Location = new Point(18, 80);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(970, 71);
groupBox1.TabIndex = 2;
groupBox1.TabStop = false;
groupBox1.Text = "Session Type";
//
// sessionTypeIsGroovyButton
//
sessionTypeIsGroovyButton.AutoSize = true;
sessionTypeIsGroovyButton.Location = new Point(338, 30);
sessionTypeIsGroovyButton.Name = "sessionTypeIsGroovyButton";
sessionTypeIsGroovyButton.Size = new Size(95, 29);
sessionTypeIsGroovyButton.TabIndex = 2;
sessionTypeIsGroovyButton.TabStop = true;
sessionTypeIsGroovyButton.Text = "Groovy";
sessionTypeIsGroovyButton.UseVisualStyleBackColor = true;
//
// sessionTypeIsPythonButton
//
sessionTypeIsPythonButton.AutoSize = true;
sessionTypeIsPythonButton.Location = new Point(192, 30);
sessionTypeIsPythonButton.Name = "sessionTypeIsPythonButton";
sessionTypeIsPythonButton.Size = new Size(93, 29);
sessionTypeIsPythonButton.TabIndex = 1;
sessionTypeIsPythonButton.TabStop = true;
sessionTypeIsPythonButton.Text = "Python";
sessionTypeIsPythonButton.UseVisualStyleBackColor = true;
//
// finalPanel
//
finalPanel.Controls.Add(versionLabel);
finalPanel.Controls.Add(makeDefaultCheckBox);
finalPanel.Controls.Add(testResultsTextBox);
finalPanel.Controls.Add(testResultsLabel);
finalPanel.Controls.Add(testCredentialsButton);
finalPanel.Controls.Add(setCredentialsButton);
finalPanel.Dock = DockStyle.Bottom;
finalPanel.Location = new Point(0, 481);
finalPanel.Name = "finalPanel";
finalPanel.Size = new Size(1054, 106);
finalPanel.TabIndex = 4;
//
// versionLabel
//
versionLabel.AutoSize = true;
versionLabel.Location = new Point(12, 72);
versionLabel.Name = "versionLabel";
versionLabel.Size = new Size(110, 25);
versionLabel.TabIndex = 8;
versionLabel.Text = "versionLabel";
//
// makeDefaultCheckBox
//
makeDefaultCheckBox.Anchor = AnchorStyles.Top | AnchorStyles.Right;
makeDefaultCheckBox.AutoSize = true;
makeDefaultCheckBox.Location = new Point(616, 53);
makeDefaultCheckBox.Name = "makeDefaultCheckBox";
makeDefaultCheckBox.Size = new Size(143, 29);
makeDefaultCheckBox.TabIndex = 2;
makeDefaultCheckBox.Text = "Make Default";
makeDefaultCheckBox.UseVisualStyleBackColor = true;
//
// testResultsTextBox
//
testResultsTextBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
testResultsTextBox.Location = new Point(188, 13);
testResultsTextBox.Name = "testResultsTextBox";
testResultsTextBox.ReadOnly = true;
testResultsTextBox.Size = new Size(801, 31);
testResultsTextBox.TabIndex = 7;
//
// testResultsLabel
//
testResultsLabel.AutoSize = true;
testResultsLabel.Location = new Point(157, 48);
testResultsLabel.Name = "testResultsLabel";
testResultsLabel.Size = new Size(0, 25);
testResultsLabel.TabIndex = 6;
//
// testCredentialsButton
//
testCredentialsButton.Location = new Point(46, 11);
testCredentialsButton.Name = "testCredentialsButton";
testCredentialsButton.Size = new Size(134, 34);
testCredentialsButton.TabIndex = 1;
testCredentialsButton.Text = "Test Creds";
testCredentialsButton.UseVisualStyleBackColor = true;
testCredentialsButton.Click += testCredentialsButton_Click;
//
// setCredentialsButton
//
setCredentialsButton.Anchor = AnchorStyles.Top | AnchorStyles.Right;
setCredentialsButton.Location = new Point(789, 48);
setCredentialsButton.Name = "setCredentialsButton";
setCredentialsButton.Size = new Size(200, 34);
setCredentialsButton.TabIndex = 3;
setCredentialsButton.Text = "Set Credentials";
setCredentialsButton.UseVisualStyleBackColor = true;
setCredentialsButton.Click += setCredentialsButton_Click;
//
// isCorePlusRadioButton
//
isCorePlusRadioButton.AutoSize = true;
isCorePlusRadioButton.Location = new Point(192, 30);
isCorePlusRadioButton.Name = "isCorePlusRadioButton";
isCorePlusRadioButton.Size = new Size(169, 29);
isCorePlusRadioButton.TabIndex = 3;
isCorePlusRadioButton.TabStop = true;
isCorePlusRadioButton.Text = "Enterprise Core+";
isCorePlusRadioButton.UseVisualStyleBackColor = true;
//
// isCoreRadioButton
//
isCoreRadioButton.AutoSize = true;
isCoreRadioButton.Location = new Point(388, 30);
isCoreRadioButton.Name = "isCoreRadioButton";
isCoreRadioButton.Size = new Size(172, 29);
isCoreRadioButton.TabIndex = 4;
isCoreRadioButton.TabStop = true;
isCoreRadioButton.Text = "Community Core";
isCoreRadioButton.UseVisualStyleBackColor = true;
//
// endpointIdBox
//
endpointIdBox.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
endpointIdBox.Location = new Point(194, 29);
endpointIdBox.Name = "endpointIdBox";
endpointIdBox.Size = new Size(795, 31);
endpointIdBox.TabIndex = 1;
//
// connectionIdLabel
//
connectionIdLabel.AutoSize = true;
connectionIdLabel.Location = new Point(46, 29);
connectionIdLabel.Name = "connectionIdLabel";
connectionIdLabel.Size = new Size(125, 25);
connectionIdLabel.TabIndex = 5;
connectionIdLabel.Text = "Connection ID";
//
// connectionTypeGroup
//
connectionTypeGroup.Controls.Add(isCorePlusRadioButton);
connectionTypeGroup.Controls.Add(isCoreRadioButton);
connectionTypeGroup.Location = new Point(34, 84);
connectionTypeGroup.Name = "connectionTypeGroup";
connectionTypeGroup.Size = new Size(588, 80);
connectionTypeGroup.TabIndex = 2;
connectionTypeGroup.TabStop = false;
connectionTypeGroup.Text = "Connection Type";
//
// connectionIdPanel
//
connectionIdPanel.Controls.Add(connectionIdLabel);
connectionIdPanel.Controls.Add(endpointIdBox);
connectionIdPanel.Controls.Add(connectionTypeGroup);
connectionIdPanel.Dock = DockStyle.Top;
connectionIdPanel.Location = new Point(0, 0);
connectionIdPanel.Name = "connectionIdPanel";
connectionIdPanel.Size = new Size(1054, 191);
connectionIdPanel.TabIndex = 1;
//
// CredentialsDialog
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1054, 587);
Controls.Add(finalPanel);
Controls.Add(corePanel);
Controls.Add(corePlusPanel);
Controls.Add(connectionIdPanel);
Name = "CredentialsDialog";
Text = "Credentials Editor";
corePlusPanel.ResumeLayout(false);
corePlusPanel.PerformLayout();
corePanel.ResumeLayout(false);
corePanel.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
finalPanel.ResumeLayout(false);
finalPanel.PerformLayout();
connectionTypeGroup.ResumeLayout(false);
connectionTypeGroup.PerformLayout();
connectionIdPanel.ResumeLayout(false);
connectionIdPanel.PerformLayout();
ResumeLayout(false);
}
#endregion
private RadioButton isCorePlusRadioButton;
private RadioButton isCoreRadioButton;
private Button setCredentialsButton;
private TextBox endpointIdBox;
private Label connectionIdLabel;
private GroupBox connectionTypeGroup;
private Panel corePlusPanel;
private Panel corePanel;
private Label jsonUrlLabel;
private Label connectionStringLabel;
private TextBox jsonUrlBox;
private TextBox connectionStringBox;
private Label passwordLabel;
private TextBox userIdBox;
private Label userIdLabel;
private TextBox operateAsBox;
private TextBox passwordBox;
private Panel finalPanel;
private Button testCredentialsButton;
private Label testResultsLabel;
private TextBox testResultsTextBox;
private CheckBox makeDefaultCheckBox;
private CheckBox validateCertCheckBox;
private GroupBox groupBox1;
private RadioButton sessionTypeIsGroovyButton;
private RadioButton sessionTypeIsPythonButton;
private Panel connectionIdPanel;
private Label operateAsLabel;
private Label versionLabel;
}
}