1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | namespace HeuristicLab.Core {
|
---|
23 | partial class VariableInfoView {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Component Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.actualNameLabel = new System.Windows.Forms.Label();
|
---|
48 | this.actualNameTextBox = new System.Windows.Forms.TextBox();
|
---|
49 | this.dataTypeLabel = new System.Windows.Forms.Label();
|
---|
50 | this.dataTypeTextBox = new System.Windows.Forms.TextBox();
|
---|
51 | this.descriptionLabel = new System.Windows.Forms.Label();
|
---|
52 | this.descriptionTextBox = new System.Windows.Forms.TextBox();
|
---|
53 | this.kindLabel = new System.Windows.Forms.Label();
|
---|
54 | this.kindTextBox = new System.Windows.Forms.TextBox();
|
---|
55 | this.formalNameTextBox = new System.Windows.Forms.TextBox();
|
---|
56 | this.formalNameLabel = new System.Windows.Forms.Label();
|
---|
57 | this.localLabel = new System.Windows.Forms.Label();
|
---|
58 | this.localCheckBox = new System.Windows.Forms.CheckBox();
|
---|
59 | this.SuspendLayout();
|
---|
60 | //
|
---|
61 | // actualNameLabel
|
---|
62 | //
|
---|
63 | this.actualNameLabel.AutoSize = true;
|
---|
64 | this.actualNameLabel.Location = new System.Drawing.Point(3, 3);
|
---|
65 | this.actualNameLabel.Name = "actualNameLabel";
|
---|
66 | this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
|
---|
67 | this.actualNameLabel.TabIndex = 0;
|
---|
68 | this.actualNameLabel.Text = "&Actual Name:";
|
---|
69 | //
|
---|
70 | // actualNameTextBox
|
---|
71 | //
|
---|
72 | this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
73 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
74 | this.actualNameTextBox.Location = new System.Drawing.Point(81, 0);
|
---|
75 | this.actualNameTextBox.Name = "actualNameTextBox";
|
---|
76 | this.actualNameTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
77 | this.actualNameTextBox.TabIndex = 1;
|
---|
78 | this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
|
---|
79 | //
|
---|
80 | // dataTypeLabel
|
---|
81 | //
|
---|
82 | this.dataTypeLabel.AutoSize = true;
|
---|
83 | this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
|
---|
84 | this.dataTypeLabel.Name = "dataTypeLabel";
|
---|
85 | this.dataTypeLabel.Size = new System.Drawing.Size(34, 13);
|
---|
86 | this.dataTypeLabel.TabIndex = 4;
|
---|
87 | this.dataTypeLabel.Text = "&Type:";
|
---|
88 | //
|
---|
89 | // dataTypeTextBox
|
---|
90 | //
|
---|
91 | this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
92 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
93 | this.dataTypeTextBox.Location = new System.Drawing.Point(81, 52);
|
---|
94 | this.dataTypeTextBox.Name = "dataTypeTextBox";
|
---|
95 | this.dataTypeTextBox.ReadOnly = true;
|
---|
96 | this.dataTypeTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
97 | this.dataTypeTextBox.TabIndex = 5;
|
---|
98 | //
|
---|
99 | // descriptionLabel
|
---|
100 | //
|
---|
101 | this.descriptionLabel.AutoSize = true;
|
---|
102 | this.descriptionLabel.Location = new System.Drawing.Point(3, 127);
|
---|
103 | this.descriptionLabel.Name = "descriptionLabel";
|
---|
104 | this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
|
---|
105 | this.descriptionLabel.TabIndex = 10;
|
---|
106 | this.descriptionLabel.Text = "&Description:";
|
---|
107 | //
|
---|
108 | // descriptionTextBox
|
---|
109 | //
|
---|
110 | this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
111 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
112 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
113 | this.descriptionTextBox.Location = new System.Drawing.Point(81, 124);
|
---|
114 | this.descriptionTextBox.Multiline = true;
|
---|
115 | this.descriptionTextBox.Name = "descriptionTextBox";
|
---|
116 | this.descriptionTextBox.ReadOnly = true;
|
---|
117 | this.descriptionTextBox.Size = new System.Drawing.Size(188, 85);
|
---|
118 | this.descriptionTextBox.TabIndex = 11;
|
---|
119 | this.descriptionTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
|
---|
120 | //
|
---|
121 | // kindLabel
|
---|
122 | //
|
---|
123 | this.kindLabel.AutoSize = true;
|
---|
124 | this.kindLabel.Location = new System.Drawing.Point(3, 81);
|
---|
125 | this.kindLabel.Name = "kindLabel";
|
---|
126 | this.kindLabel.Size = new System.Drawing.Size(31, 13);
|
---|
127 | this.kindLabel.TabIndex = 6;
|
---|
128 | this.kindLabel.Text = "&Kind:";
|
---|
129 | //
|
---|
130 | // kindTextBox
|
---|
131 | //
|
---|
132 | this.kindTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
133 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
134 | this.kindTextBox.Location = new System.Drawing.Point(81, 78);
|
---|
135 | this.kindTextBox.Name = "kindTextBox";
|
---|
136 | this.kindTextBox.ReadOnly = true;
|
---|
137 | this.kindTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
138 | this.kindTextBox.TabIndex = 7;
|
---|
139 | this.kindTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
|
---|
140 | //
|
---|
141 | // formalNameTextBox
|
---|
142 | //
|
---|
143 | this.formalNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
144 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
145 | this.formalNameTextBox.Location = new System.Drawing.Point(81, 26);
|
---|
146 | this.formalNameTextBox.Name = "formalNameTextBox";
|
---|
147 | this.formalNameTextBox.ReadOnly = true;
|
---|
148 | this.formalNameTextBox.Size = new System.Drawing.Size(188, 20);
|
---|
149 | this.formalNameTextBox.TabIndex = 3;
|
---|
150 | //
|
---|
151 | // formalNameLabel
|
---|
152 | //
|
---|
153 | this.formalNameLabel.AutoSize = true;
|
---|
154 | this.formalNameLabel.Location = new System.Drawing.Point(3, 29);
|
---|
155 | this.formalNameLabel.Name = "formalNameLabel";
|
---|
156 | this.formalNameLabel.Size = new System.Drawing.Size(72, 13);
|
---|
157 | this.formalNameLabel.TabIndex = 2;
|
---|
158 | this.formalNameLabel.Text = "&Formal Name:";
|
---|
159 | //
|
---|
160 | // localLabel
|
---|
161 | //
|
---|
162 | this.localLabel.AutoSize = true;
|
---|
163 | this.localLabel.Location = new System.Drawing.Point(3, 104);
|
---|
164 | this.localLabel.Name = "localLabel";
|
---|
165 | this.localLabel.Size = new System.Drawing.Size(36, 13);
|
---|
166 | this.localLabel.TabIndex = 8;
|
---|
167 | this.localLabel.Text = "&Local:";
|
---|
168 | //
|
---|
169 | // localCheckBox
|
---|
170 | //
|
---|
171 | this.localCheckBox.AutoSize = true;
|
---|
172 | this.localCheckBox.Location = new System.Drawing.Point(81, 104);
|
---|
173 | this.localCheckBox.Name = "localCheckBox";
|
---|
174 | this.localCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
175 | this.localCheckBox.TabIndex = 9;
|
---|
176 | this.localCheckBox.UseVisualStyleBackColor = true;
|
---|
177 | this.localCheckBox.CheckedChanged += new System.EventHandler(this.localCheckBox_CheckedChanged);
|
---|
178 | //
|
---|
179 | // VariableInfoEditor
|
---|
180 | //
|
---|
181 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
182 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
183 | this.Controls.Add(this.localCheckBox);
|
---|
184 | this.Controls.Add(this.dataTypeTextBox);
|
---|
185 | this.Controls.Add(this.kindTextBox);
|
---|
186 | this.Controls.Add(this.descriptionTextBox);
|
---|
187 | this.Controls.Add(this.formalNameTextBox);
|
---|
188 | this.Controls.Add(this.actualNameTextBox);
|
---|
189 | this.Controls.Add(this.dataTypeLabel);
|
---|
190 | this.Controls.Add(this.kindLabel);
|
---|
191 | this.Controls.Add(this.formalNameLabel);
|
---|
192 | this.Controls.Add(this.localLabel);
|
---|
193 | this.Controls.Add(this.descriptionLabel);
|
---|
194 | this.Controls.Add(this.actualNameLabel);
|
---|
195 | this.Name = "VariableInfoEditor";
|
---|
196 | this.Size = new System.Drawing.Size(269, 209);
|
---|
197 | this.ResumeLayout(false);
|
---|
198 | this.PerformLayout();
|
---|
199 |
|
---|
200 | }
|
---|
201 |
|
---|
202 | #endregion
|
---|
203 |
|
---|
204 | private System.Windows.Forms.Label actualNameLabel;
|
---|
205 | private System.Windows.Forms.TextBox actualNameTextBox;
|
---|
206 | private System.Windows.Forms.Label dataTypeLabel;
|
---|
207 | private System.Windows.Forms.TextBox dataTypeTextBox;
|
---|
208 | private System.Windows.Forms.Label descriptionLabel;
|
---|
209 | private System.Windows.Forms.TextBox descriptionTextBox;
|
---|
210 | private System.Windows.Forms.Label kindLabel;
|
---|
211 | private System.Windows.Forms.TextBox kindTextBox;
|
---|
212 | private System.Windows.Forms.TextBox formalNameTextBox;
|
---|
213 | private System.Windows.Forms.Label formalNameLabel;
|
---|
214 | private System.Windows.Forms.Label localLabel;
|
---|
215 | private System.Windows.Forms.CheckBox localCheckBox;
|
---|
216 | }
|
---|
217 | }
|
---|