1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 | namespace HeuristicLab.PluginInfrastructure.Advanced {
|
---|
22 | partial class ConnectionSetupView {
|
---|
23 | /// <summary>
|
---|
24 | /// Required designer variable.
|
---|
25 | /// </summary>
|
---|
26 | private System.ComponentModel.IContainer components = null;
|
---|
27 |
|
---|
28 | /// <summary>
|
---|
29 | /// Clean up any resources being used.
|
---|
30 | /// </summary>
|
---|
31 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
32 | protected override void Dispose(bool disposing) {
|
---|
33 | if (disposing && (components != null)) {
|
---|
34 | components.Dispose();
|
---|
35 | }
|
---|
36 | base.Dispose(disposing);
|
---|
37 | }
|
---|
38 |
|
---|
39 | #region Component Designer generated code
|
---|
40 |
|
---|
41 | /// <summary>
|
---|
42 | /// Required method for Designer support - do not modify
|
---|
43 | /// the contents of this method with the code editor.
|
---|
44 | /// </summary>
|
---|
45 | private void InitializeComponent() {
|
---|
46 | this.components = new System.ComponentModel.Container();
|
---|
47 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnectionSetupView));
|
---|
48 | this.urlTextBox = new System.Windows.Forms.TextBox();
|
---|
49 | this.urlLabel = new System.Windows.Forms.Label();
|
---|
50 | this.userLabel = new System.Windows.Forms.Label();
|
---|
51 | this.userTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.passwordLabel = new System.Windows.Forms.Label();
|
---|
53 | this.passwordTextBox = new System.Windows.Forms.TextBox();
|
---|
54 | this.applyButton = new System.Windows.Forms.Button();
|
---|
55 | this.savePasswordCheckbox = new System.Windows.Forms.CheckBox();
|
---|
56 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
57 | this.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
58 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
59 | this.groupBox1.SuspendLayout();
|
---|
60 | this.SuspendLayout();
|
---|
61 | //
|
---|
62 | // urlTextBox
|
---|
63 | //
|
---|
64 | this.urlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
65 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
66 | this.urlTextBox.Location = new System.Drawing.Point(66, 15);
|
---|
67 | this.urlTextBox.Name = "urlTextBox";
|
---|
68 | this.urlTextBox.Size = new System.Drawing.Size(410, 20);
|
---|
69 | this.urlTextBox.TabIndex = 0;
|
---|
70 | this.toolTip.SetToolTip(this.urlTextBox, "URL of HeuristicLab Plugin Deployment Service");
|
---|
71 | //
|
---|
72 | // urlLabel
|
---|
73 | //
|
---|
74 | this.urlLabel.AutoSize = true;
|
---|
75 | this.urlLabel.Location = new System.Drawing.Point(12, 18);
|
---|
76 | this.urlLabel.Name = "urlLabel";
|
---|
77 | this.urlLabel.Size = new System.Drawing.Size(48, 13);
|
---|
78 | this.urlLabel.TabIndex = 1;
|
---|
79 | this.urlLabel.Text = "&Address:";
|
---|
80 | //
|
---|
81 | // userLabel
|
---|
82 | //
|
---|
83 | this.userLabel.AutoSize = true;
|
---|
84 | this.userLabel.Location = new System.Drawing.Point(6, 22);
|
---|
85 | this.userLabel.Name = "userLabel";
|
---|
86 | this.userLabel.Size = new System.Drawing.Size(58, 13);
|
---|
87 | this.userLabel.TabIndex = 3;
|
---|
88 | this.userLabel.Text = "&Username:";
|
---|
89 | //
|
---|
90 | // userTextBox
|
---|
91 | //
|
---|
92 | this.userTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
93 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
94 | this.userTextBox.Location = new System.Drawing.Point(94, 19);
|
---|
95 | this.userTextBox.Name = "userTextBox";
|
---|
96 | this.userTextBox.Size = new System.Drawing.Size(155, 20);
|
---|
97 | this.userTextBox.TabIndex = 0;
|
---|
98 | this.toolTip.SetToolTip(this.userTextBox, "Username used to connect to the HeuristicLab plugin deployment service");
|
---|
99 | //
|
---|
100 | // passwordLabel
|
---|
101 | //
|
---|
102 | this.passwordLabel.AutoSize = true;
|
---|
103 | this.passwordLabel.Location = new System.Drawing.Point(6, 48);
|
---|
104 | this.passwordLabel.Name = "passwordLabel";
|
---|
105 | this.passwordLabel.Size = new System.Drawing.Size(56, 13);
|
---|
106 | this.passwordLabel.TabIndex = 5;
|
---|
107 | this.passwordLabel.Text = "&Password:";
|
---|
108 | //
|
---|
109 | // passwordTextBox
|
---|
110 | //
|
---|
111 | this.passwordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
112 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
113 | this.passwordTextBox.Location = new System.Drawing.Point(94, 45);
|
---|
114 | this.passwordTextBox.Name = "passwordTextBox";
|
---|
115 | this.passwordTextBox.Size = new System.Drawing.Size(155, 20);
|
---|
116 | this.passwordTextBox.TabIndex = 1;
|
---|
117 | this.toolTip.SetToolTip(this.passwordTextBox, "Passwort used to connect to the HeuristicLab plugin deployment service");
|
---|
118 | this.passwordTextBox.UseSystemPasswordChar = true;
|
---|
119 | //
|
---|
120 | // applyButton
|
---|
121 | //
|
---|
122 | this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
123 | this.applyButton.Location = new System.Drawing.Point(320, 148);
|
---|
124 | this.applyButton.Name = "applyButton";
|
---|
125 | this.applyButton.Size = new System.Drawing.Size(75, 23);
|
---|
126 | this.applyButton.TabIndex = 2;
|
---|
127 | this.applyButton.Text = "&OK";
|
---|
128 | this.toolTip.SetToolTip(this.applyButton, "Apply and save changes");
|
---|
129 | this.applyButton.UseVisualStyleBackColor = true;
|
---|
130 | this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
|
---|
131 | //
|
---|
132 | // savePasswordCheckbox
|
---|
133 | //
|
---|
134 | this.savePasswordCheckbox.AutoSize = true;
|
---|
135 | this.savePasswordCheckbox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
136 | this.savePasswordCheckbox.Location = new System.Drawing.Point(6, 71);
|
---|
137 | this.savePasswordCheckbox.Name = "savePasswordCheckbox";
|
---|
138 | this.savePasswordCheckbox.Size = new System.Drawing.Size(103, 17);
|
---|
139 | this.savePasswordCheckbox.TabIndex = 2;
|
---|
140 | this.savePasswordCheckbox.Text = "&Save Password:";
|
---|
141 | this.toolTip.SetToolTip(this.savePasswordCheckbox, "Check to save the user credentials to disk");
|
---|
142 | this.savePasswordCheckbox.UseVisualStyleBackColor = true;
|
---|
143 | //
|
---|
144 | // cancelButton
|
---|
145 | //
|
---|
146 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
147 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
148 | this.cancelButton.Location = new System.Drawing.Point(401, 148);
|
---|
149 | this.cancelButton.Name = "cancelButton";
|
---|
150 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
151 | this.cancelButton.TabIndex = 3;
|
---|
152 | this.cancelButton.Text = "&Cancel";
|
---|
153 | this.toolTip.SetToolTip(this.cancelButton, "Cancel and revert changes");
|
---|
154 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
155 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
156 | //
|
---|
157 | // groupBox1
|
---|
158 | //
|
---|
159 | this.groupBox1.Controls.Add(this.userTextBox);
|
---|
160 | this.groupBox1.Controls.Add(this.userLabel);
|
---|
161 | this.groupBox1.Controls.Add(this.savePasswordCheckbox);
|
---|
162 | this.groupBox1.Controls.Add(this.passwordTextBox);
|
---|
163 | this.groupBox1.Controls.Add(this.passwordLabel);
|
---|
164 | this.groupBox1.Location = new System.Drawing.Point(12, 41);
|
---|
165 | this.groupBox1.Name = "groupBox1";
|
---|
166 | this.groupBox1.Size = new System.Drawing.Size(255, 96);
|
---|
167 | this.groupBox1.TabIndex = 1;
|
---|
168 | this.groupBox1.TabStop = false;
|
---|
169 | this.groupBox1.Text = "User Credentials";
|
---|
170 | //
|
---|
171 | // ConnectionSetupView
|
---|
172 | //
|
---|
173 | this.AcceptButton = this.applyButton;
|
---|
174 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
175 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
176 | this.CancelButton = this.cancelButton;
|
---|
177 | this.ClientSize = new System.Drawing.Size(488, 183);
|
---|
178 | this.Controls.Add(this.groupBox1);
|
---|
179 | this.Controls.Add(this.cancelButton);
|
---|
180 | this.Controls.Add(this.applyButton);
|
---|
181 | this.Controls.Add(this.urlLabel);
|
---|
182 | this.Controls.Add(this.urlTextBox);
|
---|
183 | this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
|
---|
184 | this.MaximizeBox = false;
|
---|
185 | this.MinimizeBox = false;
|
---|
186 | this.Name = "ConnectionSetupView";
|
---|
187 | this.ShowInTaskbar = false;
|
---|
188 | this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
---|
189 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
190 | this.Text = "Edit Connection Settings";
|
---|
191 | this.groupBox1.ResumeLayout(false);
|
---|
192 | this.groupBox1.PerformLayout();
|
---|
193 | this.ResumeLayout(false);
|
---|
194 | this.PerformLayout();
|
---|
195 |
|
---|
196 | }
|
---|
197 |
|
---|
198 | #endregion
|
---|
199 |
|
---|
200 | private System.Windows.Forms.TextBox urlTextBox;
|
---|
201 | private System.Windows.Forms.Label urlLabel;
|
---|
202 | private System.Windows.Forms.Label userLabel;
|
---|
203 | private System.Windows.Forms.TextBox userTextBox;
|
---|
204 | private System.Windows.Forms.Label passwordLabel;
|
---|
205 | private System.Windows.Forms.TextBox passwordTextBox;
|
---|
206 | private System.Windows.Forms.Button applyButton;
|
---|
207 | private System.Windows.Forms.CheckBox savePasswordCheckbox;
|
---|
208 | private System.Windows.Forms.Button cancelButton;
|
---|
209 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
210 | private System.Windows.Forms.ToolTip toolTip;
|
---|
211 | }
|
---|
212 | }
|
---|