1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.Problems.Programmable.Views {
|
---|
23 | partial class MultiEncodingView {
|
---|
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.encodingsListView = new System.Windows.Forms.ListView();
|
---|
48 | this.addEncodingButton = new System.Windows.Forms.Button();
|
---|
49 | this.removeEncodingButton = new System.Windows.Forms.Button();
|
---|
50 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
51 | this.encodingsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
52 | this.encodingDetailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
53 | this.encodingDetailViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
54 | this.encodingNameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
55 | this.encodingTypeColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
56 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
57 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
58 | this.splitContainer.Panel1.SuspendLayout();
|
---|
59 | this.splitContainer.Panel2.SuspendLayout();
|
---|
60 | this.splitContainer.SuspendLayout();
|
---|
61 | this.encodingsGroupBox.SuspendLayout();
|
---|
62 | this.encodingDetailsGroupBox.SuspendLayout();
|
---|
63 | this.SuspendLayout();
|
---|
64 | //
|
---|
65 | // nameTextBox
|
---|
66 | //
|
---|
67 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
68 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
69 | this.nameTextBox.Size = new System.Drawing.Size(583, 20);
|
---|
70 | //
|
---|
71 | // infoLabel
|
---|
72 | //
|
---|
73 | this.infoLabel.Location = new System.Drawing.Point(647, 3);
|
---|
74 | //
|
---|
75 | // encodingsListView
|
---|
76 | //
|
---|
77 | this.encodingsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
78 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
79 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
80 | this.encodingsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
81 | this.encodingNameColumnHeader,
|
---|
82 | this.encodingTypeColumnHeader});
|
---|
83 | this.encodingsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
---|
84 | this.encodingsListView.HideSelection = false;
|
---|
85 | this.encodingsListView.Location = new System.Drawing.Point(3, 33);
|
---|
86 | this.encodingsListView.MultiSelect = false;
|
---|
87 | this.encodingsListView.Name = "encodingsListView";
|
---|
88 | this.encodingsListView.ShowGroups = false;
|
---|
89 | this.encodingsListView.Size = new System.Drawing.Size(214, 416);
|
---|
90 | this.encodingsListView.TabIndex = 3;
|
---|
91 | this.encodingsListView.UseCompatibleStateImageBehavior = false;
|
---|
92 | this.encodingsListView.View = System.Windows.Forms.View.Details;
|
---|
93 | this.encodingsListView.SelectedIndexChanged += new System.EventHandler(this.encodingsListView_SelectedIndexChanged);
|
---|
94 | //
|
---|
95 | // addEncodingButton
|
---|
96 | //
|
---|
97 | this.addEncodingButton.Location = new System.Drawing.Point(3, 3);
|
---|
98 | this.addEncodingButton.Name = "addEncodingButton";
|
---|
99 | this.addEncodingButton.Size = new System.Drawing.Size(24, 24);
|
---|
100 | this.addEncodingButton.TabIndex = 4;
|
---|
101 | this.addEncodingButton.Text = "+";
|
---|
102 | this.addEncodingButton.UseVisualStyleBackColor = true;
|
---|
103 | this.addEncodingButton.Click += new System.EventHandler(this.addEncodingButton_Click);
|
---|
104 | //
|
---|
105 | // removeEncodingButton
|
---|
106 | //
|
---|
107 | this.removeEncodingButton.Location = new System.Drawing.Point(33, 3);
|
---|
108 | this.removeEncodingButton.Name = "removeEncodingButton";
|
---|
109 | this.removeEncodingButton.Size = new System.Drawing.Size(24, 24);
|
---|
110 | this.removeEncodingButton.TabIndex = 4;
|
---|
111 | this.removeEncodingButton.Text = "x";
|
---|
112 | this.removeEncodingButton.UseVisualStyleBackColor = true;
|
---|
113 | this.removeEncodingButton.Click += new System.EventHandler(this.removeEncodingButton_Click);
|
---|
114 | //
|
---|
115 | // splitContainer
|
---|
116 | //
|
---|
117 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
118 | this.splitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
119 | this.splitContainer.Name = "splitContainer";
|
---|
120 | //
|
---|
121 | // splitContainer.Panel1
|
---|
122 | //
|
---|
123 | this.splitContainer.Panel1.Controls.Add(this.encodingsListView);
|
---|
124 | this.splitContainer.Panel1.Controls.Add(this.removeEncodingButton);
|
---|
125 | this.splitContainer.Panel1.Controls.Add(this.addEncodingButton);
|
---|
126 | //
|
---|
127 | // splitContainer.Panel2
|
---|
128 | //
|
---|
129 | this.splitContainer.Panel2.Controls.Add(this.encodingDetailsGroupBox);
|
---|
130 | this.splitContainer.Size = new System.Drawing.Size(660, 452);
|
---|
131 | this.splitContainer.SplitterDistance = 220;
|
---|
132 | this.splitContainer.TabIndex = 5;
|
---|
133 | //
|
---|
134 | // encodingsGroupBox
|
---|
135 | //
|
---|
136 | this.encodingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
137 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
138 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
139 | this.encodingsGroupBox.Controls.Add(this.splitContainer);
|
---|
140 | this.encodingsGroupBox.Location = new System.Drawing.Point(0, 26);
|
---|
141 | this.encodingsGroupBox.Name = "encodingsGroupBox";
|
---|
142 | this.encodingsGroupBox.Size = new System.Drawing.Size(666, 471);
|
---|
143 | this.encodingsGroupBox.TabIndex = 6;
|
---|
144 | this.encodingsGroupBox.TabStop = false;
|
---|
145 | this.encodingsGroupBox.Text = "Encodings";
|
---|
146 | //
|
---|
147 | // encodingDetailsGroupBox
|
---|
148 | //
|
---|
149 | this.encodingDetailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
150 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
151 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
152 | this.encodingDetailsGroupBox.Controls.Add(this.encodingDetailViewHost);
|
---|
153 | this.encodingDetailsGroupBox.Location = new System.Drawing.Point(3, 27);
|
---|
154 | this.encodingDetailsGroupBox.Name = "encodingDetailsGroupBox";
|
---|
155 | this.encodingDetailsGroupBox.Size = new System.Drawing.Size(430, 422);
|
---|
156 | this.encodingDetailsGroupBox.TabIndex = 1;
|
---|
157 | this.encodingDetailsGroupBox.TabStop = false;
|
---|
158 | this.encodingDetailsGroupBox.Text = "Details";
|
---|
159 | //
|
---|
160 | // encodingDetailViewHost
|
---|
161 | //
|
---|
162 | this.encodingDetailViewHost.Caption = "View";
|
---|
163 | this.encodingDetailViewHost.Content = null;
|
---|
164 | this.encodingDetailViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
165 | this.encodingDetailViewHost.Enabled = false;
|
---|
166 | this.encodingDetailViewHost.Location = new System.Drawing.Point(3, 16);
|
---|
167 | this.encodingDetailViewHost.Name = "encodingDetailViewHost";
|
---|
168 | this.encodingDetailViewHost.ReadOnly = false;
|
---|
169 | this.encodingDetailViewHost.Size = new System.Drawing.Size(424, 403);
|
---|
170 | this.encodingDetailViewHost.TabIndex = 0;
|
---|
171 | this.encodingDetailViewHost.ViewsLabelVisible = true;
|
---|
172 | this.encodingDetailViewHost.ViewType = null;
|
---|
173 | //
|
---|
174 | // encodingNameColumnHeader
|
---|
175 | //
|
---|
176 | this.encodingNameColumnHeader.Text = "Name";
|
---|
177 | this.encodingNameColumnHeader.Width = 80;
|
---|
178 | //
|
---|
179 | // encodingTypeColumnHeader
|
---|
180 | //
|
---|
181 | this.encodingTypeColumnHeader.Text = "Type";
|
---|
182 | this.encodingTypeColumnHeader.Width = 120;
|
---|
183 | //
|
---|
184 | // MultiEncodingView
|
---|
185 | //
|
---|
186 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
187 | this.Controls.Add(this.encodingsGroupBox);
|
---|
188 | this.Name = "MultiEncodingView";
|
---|
189 | this.Size = new System.Drawing.Size(666, 497);
|
---|
190 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
191 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
192 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
193 | this.Controls.SetChildIndex(this.encodingsGroupBox, 0);
|
---|
194 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
195 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
196 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
197 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
198 | this.splitContainer.ResumeLayout(false);
|
---|
199 | this.encodingsGroupBox.ResumeLayout(false);
|
---|
200 | this.encodingDetailsGroupBox.ResumeLayout(false);
|
---|
201 | this.ResumeLayout(false);
|
---|
202 | this.PerformLayout();
|
---|
203 |
|
---|
204 | }
|
---|
205 |
|
---|
206 | #endregion
|
---|
207 |
|
---|
208 | private System.Windows.Forms.ListView encodingsListView;
|
---|
209 | private System.Windows.Forms.Button addEncodingButton;
|
---|
210 | private System.Windows.Forms.Button removeEncodingButton;
|
---|
211 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
212 | private System.Windows.Forms.ColumnHeader encodingNameColumnHeader;
|
---|
213 | private System.Windows.Forms.ColumnHeader encodingTypeColumnHeader;
|
---|
214 | private System.Windows.Forms.GroupBox encodingDetailsGroupBox;
|
---|
215 | private MainForm.WindowsForms.ViewHost encodingDetailViewHost;
|
---|
216 | private System.Windows.Forms.GroupBox encodingsGroupBox;
|
---|
217 | }
|
---|
218 | }
|
---|