[17607] | 1 | #region License Information
|
---|
| 2 |
|
---|
| 3 | /* HeuristicLab
|
---|
[17896] | 4 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[17607] | 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 {
|
---|
[17891] | 29 | partial class ShapeConstraintsView {
|
---|
[17607] | 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) {
|
---|
[17891] | 40 | if (disposing && (components != null)) {
|
---|
| 41 | components.Dispose();
|
---|
| 42 | }
|
---|
| 43 | base.Dispose(disposing);
|
---|
[17607] | 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() {
|
---|
[17893] | 53 | this.components = new System.ComponentModel.Container();
|
---|
[17896] | 54 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 55 | this.groupBox = new System.Windows.Forms.GroupBox();
|
---|
[17927] | 56 | this.ConstraintsInputBaseLayout = new System.Windows.Forms.TableLayoutPanel();
|
---|
[17893] | 57 | this.constraintsInput = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.parseBtn = new System.Windows.Forms.Button();
|
---|
[17927] | 59 | this.infoTableLayout = new System.Windows.Forms.TableLayoutPanel();
|
---|
[17896] | 60 | this.infoLabel = new System.Windows.Forms.Label();
|
---|
[17893] | 61 | this.errorOutput = new System.Windows.Forms.Label();
|
---|
[17896] | 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();
|
---|
[17927] | 69 | this.ConstraintsInputBaseLayout.SuspendLayout();
|
---|
| 70 | this.infoTableLayout.SuspendLayout();
|
---|
[17893] | 71 | this.SuspendLayout();
|
---|
| 72 | //
|
---|
[17927] | 73 | // splitContainer
|
---|
[17893] | 74 | //
|
---|
[17896] | 75 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 76 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
[17927] | 77 | this.splitContainer.Name = "splitContainer";
|
---|
[17893] | 78 | //
|
---|
[17927] | 79 | // splitContainer.Panel1
|
---|
[17893] | 80 | //
|
---|
[17896] | 81 | this.splitContainer.Panel1.Controls.Add(this.groupBox);
|
---|
[17893] | 82 | //
|
---|
[17927] | 83 | // splitContainer.Panel2
|
---|
[17893] | 84 | //
|
---|
[17896] | 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;
|
---|
[17893] | 89 | //
|
---|
[17927] | 90 | // groupBox
|
---|
[17893] | 91 | //
|
---|
[17927] | 92 | this.groupBox.Controls.Add(this.ConstraintsInputBaseLayout);
|
---|
[17896] | 93 | this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 94 | this.groupBox.Location = new System.Drawing.Point(0, 0);
|
---|
[17927] | 95 | this.groupBox.Name = "groupBox";
|
---|
| 96 | this.groupBox.Padding = new System.Windows.Forms.Padding(7);
|
---|
[17896] | 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";
|
---|
[17893] | 101 | //
|
---|
[17927] | 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 | //
|
---|
[17893] | 119 | // constraintsInput
|
---|
| 120 | //
|
---|
| 121 | this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
[17927] | 122 | this.constraintsInput.Location = new System.Drawing.Point(3, 16);
|
---|
[17893] | 123 | this.constraintsInput.Multiline = true;
|
---|
| 124 | this.constraintsInput.Name = "constraintsInput";
|
---|
| 125 | this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
[17927] | 126 | this.constraintsInput.Size = new System.Drawing.Size(276, 553);
|
---|
| 127 | this.constraintsInput.TabIndex = 0;
|
---|
[17893] | 128 | this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged);
|
---|
| 129 | //
|
---|
| 130 | // parseBtn
|
---|
| 131 | //
|
---|
[17927] | 132 | this.parseBtn.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 133 | this.parseBtn.Location = new System.Drawing.Point(3, 575);
|
---|
[17893] | 134 | this.parseBtn.Name = "parseBtn";
|
---|
[17927] | 135 | this.parseBtn.Size = new System.Drawing.Size(276, 24);
|
---|
[17893] | 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 | //
|
---|
[17927] | 141 | // infoTableLayout
|
---|
[17893] | 142 | //
|
---|
[17927] | 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)));
|
---|
[17896] | 161 | this.infoLabel.AutoSize = true;
|
---|
| 162 | this.infoLabel.Image = global::HeuristicLab.Problems.DataAnalysis.Views.Properties.Resources.VS2008ImageLibrary_Annotations_Information;
|
---|
[17927] | 163 | this.infoLabel.Location = new System.Drawing.Point(260, 0);
|
---|
| 164 | this.infoLabel.Name = "infoLabel";
|
---|
[17896] | 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);
|
---|
[17893] | 170 | //
|
---|
| 171 | // errorOutput
|
---|
| 172 | //
|
---|
| 173 | this.errorOutput.AutoSize = true;
|
---|
[17927] | 174 | this.errorOutput.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 175 | this.errorOutput.Location = new System.Drawing.Point(3, 0);
|
---|
[17893] | 176 | this.errorOutput.Name = "errorOutput";
|
---|
[17927] | 177 | this.errorOutput.Size = new System.Drawing.Size(236, 13);
|
---|
| 178 | this.errorOutput.TabIndex = 5;
|
---|
| 179 | this.errorOutput.Text = "label1";
|
---|
[17893] | 180 | //
|
---|
[17927] | 181 | // box1
|
---|
[17893] | 182 | //
|
---|
[17927] | 183 | this.shapeConstraintsView.AutoSize = true;
|
---|
[17896] | 184 | this.shapeConstraintsView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 185 | this.shapeConstraintsView.Location = new System.Drawing.Point(0, 0);
|
---|
[17927] | 186 | this.shapeConstraintsView.Name = "box1";
|
---|
[17896] | 187 | this.shapeConstraintsView.Size = new System.Drawing.Size(588, 629);
|
---|
| 188 | this.shapeConstraintsView.TabIndex = 2;
|
---|
| 189 | this.shapeConstraintsView.TabStop = false;
|
---|
[17893] | 190 | //
|
---|
| 191 | // ShapeConstraintsView
|
---|
| 192 | //
|
---|
| 193 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 194 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[17896] | 195 | this.Controls.Add(this.splitContainer);
|
---|
[17893] | 196 | this.Name = "ShapeConstraintsView";
|
---|
| 197 | this.Size = new System.Drawing.Size(888, 629);
|
---|
[17896] | 198 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 199 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
[17927] | 200 | this.splitContainer.Panel2.PerformLayout();
|
---|
[17896] | 201 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
| 202 | this.splitContainer.ResumeLayout(false);
|
---|
| 203 | this.groupBox.ResumeLayout(false);
|
---|
[17927] | 204 | this.ConstraintsInputBaseLayout.ResumeLayout(false);
|
---|
| 205 | this.ConstraintsInputBaseLayout.PerformLayout();
|
---|
| 206 | this.infoTableLayout.ResumeLayout(false);
|
---|
| 207 | this.infoTableLayout.PerformLayout();
|
---|
[17893] | 208 | this.ResumeLayout(false);
|
---|
[17607] | 209 |
|
---|
| 210 | }
|
---|
| 211 | #endregion
|
---|
| 212 |
|
---|
[17896] | 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;
|
---|
[17927] | 218 | private TableLayoutPanel ConstraintsInputBaseLayout;
|
---|
| 219 | private TextBox constraintsInput;
|
---|
| 220 | private Button parseBtn;
|
---|
| 221 | private Label errorOutput;
|
---|
| 222 | private TableLayoutPanel infoTableLayout;
|
---|
| 223 | }
|
---|
[17607] | 224 | }
|
---|