1 | #region License Information
|
---|
2 |
|
---|
3 | /* HeuristicLab
|
---|
4 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
5 | *
|
---|
6 | * This file is part of HeuristicLab.
|
---|
7 | *
|
---|
8 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
9 | * it under the terms of the GNU General Public License as published by
|
---|
10 | * the Free Software Foundation, either version 3 of the License, or
|
---|
11 | * (at your option) any later version.
|
---|
12 | *
|
---|
13 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | * GNU General Public License for more details.
|
---|
17 | *
|
---|
18 | * You should have received a copy of the GNU General Public License
|
---|
19 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #endregion
|
---|
23 | using System;
|
---|
24 | using System.Drawing;
|
---|
25 | using System.Windows.Forms;
|
---|
26 | using HeuristicLab.Core.Views;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
29 | partial class ShapeConstraintsView {
|
---|
30 | /// <summary>
|
---|
31 | /// Required designer variable.
|
---|
32 | /// </summary>
|
---|
33 | private System.ComponentModel.IContainer components = null;
|
---|
34 |
|
---|
35 | /// <summary>
|
---|
36 | /// Clean up any resources being used.
|
---|
37 | /// </summary>
|
---|
38 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
39 | protected override void Dispose(bool disposing) {
|
---|
40 | if (disposing && (components != null)) {
|
---|
41 | components.Dispose();
|
---|
42 | }
|
---|
43 | base.Dispose(disposing);
|
---|
44 | }
|
---|
45 |
|
---|
46 | #region Component Designer generated code
|
---|
47 |
|
---|
48 | /// <summary>
|
---|
49 | /// Required method for Designer support - do not modify
|
---|
50 | /// the contents of this method with the code editor.
|
---|
51 | /// </summary>
|
---|
52 | private void InitializeComponent() {
|
---|
53 | this.components = new System.ComponentModel.Container();
|
---|
54 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
55 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
56 | this.ConstraintsInputBaseLayout = new System.Windows.Forms.TableLayoutPanel();
|
---|
57 | this.constraintsInput = new System.Windows.Forms.TextBox();
|
---|
58 | this.parseBtn = new System.Windows.Forms.Button();
|
---|
59 | this.infoTableLayout = new System.Windows.Forms.TableLayoutPanel();
|
---|
60 | this.infoLabel = new System.Windows.Forms.Label();
|
---|
61 | this.errorOutput = new System.Windows.Forms.Label();
|
---|
62 | this.shapeConstraintsView = new HeuristicLab.Core.Views.CheckedItemListView<ShapeConstraint>();
|
---|
63 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
64 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
65 | this.splitContainer.Panel1.SuspendLayout();
|
---|
66 | this.splitContainer.Panel2.SuspendLayout();
|
---|
67 | this.splitContainer.SuspendLayout();
|
---|
68 | this.groupBox.SuspendLayout();
|
---|
69 | this.ConstraintsInputBaseLayout.SuspendLayout();
|
---|
70 | this.infoTableLayout.SuspendLayout();
|
---|
71 | this.SuspendLayout();
|
---|
72 | //
|
---|
73 | // splitContainer
|
---|
74 | //
|
---|
75 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
76 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
77 | this.splitContainer.Name = "splitContainer";
|
---|
78 | //
|
---|
79 | // splitContainer.Panel1
|
---|
80 | //
|
---|
81 | this.splitContainer.Panel1.Controls.Add(this.groupBox);
|
---|
82 | //
|
---|
83 | // splitContainer.Panel2
|
---|
84 | //
|
---|
85 | this.splitContainer.Panel2.Controls.Add(this.shapeConstraintsView);
|
---|
86 | this.splitContainer.Size = new System.Drawing.Size(888, 629);
|
---|
87 | this.splitContainer.SplitterDistance = 296;
|
---|
88 | this.splitContainer.TabIndex = 0;
|
---|
89 | //
|
---|
90 | // groupBox
|
---|
91 | //
|
---|
92 | this.groupBox.Controls.Add(this.ConstraintsInputBaseLayout);
|
---|
93 | this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
94 | this.groupBox.Location = new System.Drawing.Point(0, 0);
|
---|
95 | this.groupBox.Name = "groupBox";
|
---|
96 | this.groupBox.Padding = new System.Windows.Forms.Padding(7);
|
---|
97 | this.groupBox.Size = new System.Drawing.Size(296, 629);
|
---|
98 | this.groupBox.TabIndex = 3;
|
---|
99 | this.groupBox.TabStop = false;
|
---|
100 | this.groupBox.Text = "Constraints Input";
|
---|
101 | //
|
---|
102 | // ConstraintsInputBaseLayout
|
---|
103 | //
|
---|
104 | this.ConstraintsInputBaseLayout.ColumnCount = 1;
|
---|
105 | this.ConstraintsInputBaseLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
---|
106 | this.ConstraintsInputBaseLayout.Controls.Add(this.constraintsInput, 0, 1);
|
---|
107 | this.ConstraintsInputBaseLayout.Controls.Add(this.parseBtn, 0, 2);
|
---|
108 | this.ConstraintsInputBaseLayout.Controls.Add(this.infoTableLayout, 0, 0);
|
---|
109 | this.ConstraintsInputBaseLayout.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
110 | this.ConstraintsInputBaseLayout.Location = new System.Drawing.Point(7, 20);
|
---|
111 | this.ConstraintsInputBaseLayout.Name = "ConstraintsInputBaseLayout";
|
---|
112 | this.ConstraintsInputBaseLayout.RowCount = 3;
|
---|
113 | this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
---|
114 | this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
---|
115 | this.ConstraintsInputBaseLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
|
---|
116 | this.ConstraintsInputBaseLayout.Size = new System.Drawing.Size(282, 602);
|
---|
117 | this.ConstraintsInputBaseLayout.TabIndex = 6;
|
---|
118 | //
|
---|
119 | // constraintsInput
|
---|
120 | //
|
---|
121 | this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
122 | this.constraintsInput.Location = new System.Drawing.Point(3, 16);
|
---|
123 | this.constraintsInput.Multiline = true;
|
---|
124 | this.constraintsInput.Name = "constraintsInput";
|
---|
125 | this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
126 | this.constraintsInput.Size = new System.Drawing.Size(276, 553);
|
---|
127 | this.constraintsInput.TabIndex = 0;
|
---|
128 | this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged);
|
---|
129 | //
|
---|
130 | // parseBtn
|
---|
131 | //
|
---|
132 | this.parseBtn.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
133 | this.parseBtn.Location = new System.Drawing.Point(3, 575);
|
---|
134 | this.parseBtn.Name = "parseBtn";
|
---|
135 | this.parseBtn.Size = new System.Drawing.Size(276, 24);
|
---|
136 | this.parseBtn.TabIndex = 1;
|
---|
137 | this.parseBtn.Text = "Parse Constraints";
|
---|
138 | this.parseBtn.UseVisualStyleBackColor = true;
|
---|
139 | this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click);
|
---|
140 | //
|
---|
141 | // infoTableLayout
|
---|
142 | //
|
---|
143 | this.infoTableLayout.AutoSize = true;
|
---|
144 | this.infoTableLayout.ColumnCount = 2;
|
---|
145 | this.infoTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
---|
146 | this.infoTableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 40F));
|
---|
147 | this.infoTableLayout.Controls.Add(this.infoLabel, 1, 0);
|
---|
148 | this.infoTableLayout.Controls.Add(this.errorOutput, 0, 0);
|
---|
149 | this.infoTableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
150 | this.infoTableLayout.Location = new System.Drawing.Point(0, 0);
|
---|
151 | this.infoTableLayout.Margin = new System.Windows.Forms.Padding(0);
|
---|
152 | this.infoTableLayout.Name = "infoTableLayout";
|
---|
153 | this.infoTableLayout.RowCount = 1;
|
---|
154 | this.infoTableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
---|
155 | this.infoTableLayout.Size = new System.Drawing.Size(282, 13);
|
---|
156 | this.infoTableLayout.TabIndex = 2;
|
---|
157 | //
|
---|
158 | // infoLabel
|
---|
159 | //
|
---|
160 | this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
161 | this.infoLabel.AutoSize = true;
|
---|
162 | this.infoLabel.Image = global::HeuristicLab.Problems.DataAnalysis.Views.Properties.Resources.VS2008ImageLibrary_Annotations_Information;
|
---|
163 | this.infoLabel.Location = new System.Drawing.Point(260, 0);
|
---|
164 | this.infoLabel.Name = "infoLabel";
|
---|
165 | this.infoLabel.Size = new System.Drawing.Size(19, 13);
|
---|
166 | this.infoLabel.TabIndex = 4;
|
---|
167 | this.infoLabel.Text = " ";
|
---|
168 | this.toolTip.SetToolTip(this.infoLabel, "Double-click to open description.");
|
---|
169 | this.infoLabel.DoubleClick += new System.EventHandler(this.helpButton_DoubleClick);
|
---|
170 | //
|
---|
171 | // errorOutput
|
---|
172 | //
|
---|
173 | this.errorOutput.AutoSize = true;
|
---|
174 | this.errorOutput.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
175 | this.errorOutput.Location = new System.Drawing.Point(3, 0);
|
---|
176 | this.errorOutput.Name = "errorOutput";
|
---|
177 | this.errorOutput.Size = new System.Drawing.Size(236, 13);
|
---|
178 | this.errorOutput.TabIndex = 5;
|
---|
179 | this.errorOutput.Text = "label1";
|
---|
180 | //
|
---|
181 | // box1
|
---|
182 | //
|
---|
183 | this.shapeConstraintsView.AutoSize = true;
|
---|
184 | this.shapeConstraintsView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
185 | this.shapeConstraintsView.Location = new System.Drawing.Point(0, 0);
|
---|
186 | this.shapeConstraintsView.Name = "box1";
|
---|
187 | this.shapeConstraintsView.Size = new System.Drawing.Size(588, 629);
|
---|
188 | this.shapeConstraintsView.TabIndex = 2;
|
---|
189 | this.shapeConstraintsView.TabStop = false;
|
---|
190 | //
|
---|
191 | // ShapeConstraintsView
|
---|
192 | //
|
---|
193 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
194 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
195 | this.Controls.Add(this.splitContainer);
|
---|
196 | this.Name = "ShapeConstraintsView";
|
---|
197 | this.Size = new System.Drawing.Size(888, 629);
|
---|
198 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
199 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
200 | this.splitContainer.Panel2.PerformLayout();
|
---|
201 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
202 | this.splitContainer.ResumeLayout(false);
|
---|
203 | this.groupBox.ResumeLayout(false);
|
---|
204 | this.ConstraintsInputBaseLayout.ResumeLayout(false);
|
---|
205 | this.ConstraintsInputBaseLayout.PerformLayout();
|
---|
206 | this.infoTableLayout.ResumeLayout(false);
|
---|
207 | this.infoTableLayout.PerformLayout();
|
---|
208 | this.ResumeLayout(false);
|
---|
209 |
|
---|
210 | }
|
---|
211 | #endregion
|
---|
212 |
|
---|
213 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
214 | private System.Windows.Forms.GroupBox groupBox;
|
---|
215 | private HeuristicLab.Core.Views.CheckedItemListView<ShapeConstraint> shapeConstraintsView;
|
---|
216 | private Label infoLabel;
|
---|
217 | protected ToolTip toolTip;
|
---|
218 | private TableLayoutPanel ConstraintsInputBaseLayout;
|
---|
219 | private TextBox constraintsInput;
|
---|
220 | private Button parseBtn;
|
---|
221 | private Label errorOutput;
|
---|
222 | private TableLayoutPanel infoTableLayout;
|
---|
223 | }
|
---|
224 | }
|
---|