Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/ProductEditor.Designer.cs @ 3547

Last change on this file since 3547 was 3547, checked in by gkronber, 14 years ago

Implemented review comments in plugin manager. #989 (Implement review comments in plugin infrastructure)

File size: 15.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22namespace HeuristicLab.PluginInfrastructure.Advanced {
23  partial class ProductEditor {
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.components = new System.ComponentModel.Container();
48      this.refreshButton = new System.Windows.Forms.Button();
49      this.uploadButton = new System.Windows.Forms.Button();
50      this.splitContainer = new System.Windows.Forms.SplitContainer();
51      this.productsGroupBox = new System.Windows.Forms.GroupBox();
52      this.productsListView = new System.Windows.Forms.ListView();
53      this.productNameHeader = new System.Windows.Forms.ColumnHeader();
54      this.productVersionHeader = new System.Windows.Forms.ColumnHeader();
55      this.productImageList = new System.Windows.Forms.ImageList(this.components);
56      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
57      this.pluginsGroupBox = new System.Windows.Forms.GroupBox();
58      this.versionTextBox = new System.Windows.Forms.TextBox();
59      this.nameLabel = new System.Windows.Forms.Label();
60      this.nameTextBox = new System.Windows.Forms.TextBox();
61      this.versionLabel = new System.Windows.Forms.Label();
62      this.pluginImageList = new System.Windows.Forms.ImageList(this.components);
63      this.newProductButton = new System.Windows.Forms.Button();
64      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
65      this.pluginListView = new HeuristicLab.PluginInfrastructure.Advanced.PluginListView();
66      this.splitContainer.Panel1.SuspendLayout();
67      this.splitContainer.Panel2.SuspendLayout();
68      this.splitContainer.SuspendLayout();
69      this.productsGroupBox.SuspendLayout();
70      this.detailsGroupBox.SuspendLayout();
71      this.pluginsGroupBox.SuspendLayout();
72      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
73      this.SuspendLayout();
74      //
75      // refreshButton
76      //
77      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
78      this.refreshButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_Objects_Internet;
79      this.refreshButton.Location = new System.Drawing.Point(6, 389);
80      this.refreshButton.Name = "refreshButton";
81      this.refreshButton.Size = new System.Drawing.Size(73, 31);
82      this.refreshButton.TabIndex = 1;
83      this.refreshButton.Text = "Refresh";
84      this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
85      this.refreshButton.UseVisualStyleBackColor = true;
86      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
87      //
88      // uploadButton
89      //
90      this.uploadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
91      this.uploadButton.Enabled = false;
92      this.uploadButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_CommonElements_Objects_Arrow_Up;
93      this.uploadButton.Location = new System.Drawing.Point(85, 389);
94      this.uploadButton.Name = "uploadButton";
95      this.uploadButton.Size = new System.Drawing.Size(120, 31);
96      this.uploadButton.TabIndex = 2;
97      this.uploadButton.Text = "Upload Products";
98      this.uploadButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
99      this.uploadButton.UseVisualStyleBackColor = true;
100      this.uploadButton.Click += new System.EventHandler(this.saveButton_Click);
101      //
102      // splitContainer
103      //
104      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
105      this.splitContainer.Location = new System.Drawing.Point(0, 0);
106      this.splitContainer.Name = "splitContainer";
107      //
108      // splitContainer.Panel1
109      //
110      this.splitContainer.Panel1.Controls.Add(this.productsGroupBox);
111      //
112      // splitContainer.Panel2
113      //
114      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
115      this.splitContainer.Size = new System.Drawing.Size(665, 426);
116      this.splitContainer.SplitterDistance = 321;
117      this.splitContainer.TabIndex = 4;
118      //
119      // productsGroupBox
120      //
121      this.productsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
122                  | System.Windows.Forms.AnchorStyles.Left)
123                  | System.Windows.Forms.AnchorStyles.Right)));
124      this.productsGroupBox.Controls.Add(this.uploadButton);
125      this.productsGroupBox.Controls.Add(this.newProductButton);
126      this.productsGroupBox.Controls.Add(this.productsListView);
127      this.productsGroupBox.Controls.Add(this.refreshButton);
128      this.productsGroupBox.Location = new System.Drawing.Point(0, 0);
129      this.productsGroupBox.Name = "productsGroupBox";
130      this.productsGroupBox.Size = new System.Drawing.Size(321, 426);
131      this.productsGroupBox.TabIndex = 5;
132      this.productsGroupBox.TabStop = false;
133      this.productsGroupBox.Text = "Products";
134      //
135      // productsListView
136      //
137      this.productsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
138                  | System.Windows.Forms.AnchorStyles.Left)
139                  | System.Windows.Forms.AnchorStyles.Right)));
140      this.productsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
141            this.productNameHeader,
142            this.productVersionHeader});
143      this.productsListView.Enabled = false;
144      this.productsListView.FullRowSelect = true;
145      this.productsListView.Location = new System.Drawing.Point(6, 56);
146      this.productsListView.MultiSelect = false;
147      this.productsListView.Name = "productsListView";
148      this.productsListView.Size = new System.Drawing.Size(309, 327);
149      this.productsListView.SmallImageList = this.productImageList;
150      this.productsListView.TabIndex = 4;
151      this.productsListView.UseCompatibleStateImageBehavior = false;
152      this.productsListView.View = System.Windows.Forms.View.Details;
153      this.productsListView.SelectedIndexChanged += new System.EventHandler(this.productsListBox_SelectedIndexChanged);
154      //
155      // productNameHeader
156      //
157      this.productNameHeader.Text = "Name";
158      this.productNameHeader.Width = 40;
159      //
160      // productVersionHeader
161      //
162      this.productVersionHeader.Text = "Version";
163      this.productVersionHeader.Width = 265;
164      //
165      // productImageList
166      //
167      this.productImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
168      this.productImageList.ImageSize = new System.Drawing.Size(16, 16);
169      this.productImageList.TransparentColor = System.Drawing.Color.Transparent;
170      //
171      // detailsGroupBox
172      //
173      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
174                  | System.Windows.Forms.AnchorStyles.Left)
175                  | System.Windows.Forms.AnchorStyles.Right)));
176      this.detailsGroupBox.Controls.Add(this.pluginsGroupBox);
177      this.detailsGroupBox.Controls.Add(this.versionTextBox);
178      this.detailsGroupBox.Controls.Add(this.nameLabel);
179      this.detailsGroupBox.Controls.Add(this.nameTextBox);
180      this.detailsGroupBox.Controls.Add(this.versionLabel);
181      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
182      this.detailsGroupBox.Name = "detailsGroupBox";
183      this.detailsGroupBox.Size = new System.Drawing.Size(340, 426);
184      this.detailsGroupBox.TabIndex = 8;
185      this.detailsGroupBox.TabStop = false;
186      this.detailsGroupBox.Text = "Details";
187      //
188      // pluginsGroupBox
189      //
190      this.pluginsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
191                  | System.Windows.Forms.AnchorStyles.Left)
192                  | System.Windows.Forms.AnchorStyles.Right)));
193      this.pluginsGroupBox.Controls.Add(this.pluginListView);
194      this.pluginsGroupBox.Location = new System.Drawing.Point(6, 71);
195      this.pluginsGroupBox.Name = "pluginsGroupBox";
196      this.pluginsGroupBox.Size = new System.Drawing.Size(328, 349);
197      this.pluginsGroupBox.TabIndex = 6;
198      this.pluginsGroupBox.TabStop = false;
199      this.pluginsGroupBox.Text = "Plugins";
200      //
201      // versionTextBox
202      //
203      this.versionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
204                  | System.Windows.Forms.AnchorStyles.Right)));
205      this.versionTextBox.Enabled = false;
206      this.versionTextBox.Location = new System.Drawing.Point(57, 45);
207      this.versionTextBox.Name = "versionTextBox";
208      this.versionTextBox.Size = new System.Drawing.Size(277, 20);
209      this.versionTextBox.TabIndex = 5;
210      this.versionTextBox.TextChanged += new System.EventHandler(this.versionTextBox_TextChanged);
211      //
212      // nameLabel
213      //
214      this.nameLabel.AutoSize = true;
215      this.nameLabel.Enabled = false;
216      this.nameLabel.Location = new System.Drawing.Point(13, 22);
217      this.nameLabel.Name = "nameLabel";
218      this.nameLabel.Size = new System.Drawing.Size(38, 13);
219      this.nameLabel.TabIndex = 2;
220      this.nameLabel.Text = "Name:";
221      //
222      // nameTextBox
223      //
224      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
225                  | System.Windows.Forms.AnchorStyles.Right)));
226      this.nameTextBox.Enabled = false;
227      this.nameTextBox.Location = new System.Drawing.Point(57, 19);
228      this.nameTextBox.Name = "nameTextBox";
229      this.nameTextBox.Size = new System.Drawing.Size(277, 20);
230      this.nameTextBox.TabIndex = 3;
231      this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
232      //
233      // versionLabel
234      //
235      this.versionLabel.AutoSize = true;
236      this.versionLabel.Enabled = false;
237      this.versionLabel.Location = new System.Drawing.Point(6, 48);
238      this.versionLabel.Name = "versionLabel";
239      this.versionLabel.Size = new System.Drawing.Size(45, 13);
240      this.versionLabel.TabIndex = 4;
241      this.versionLabel.Text = "Version:";
242      //
243      // pluginImageList
244      //
245      this.pluginImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
246      this.pluginImageList.ImageSize = new System.Drawing.Size(16, 16);
247      this.pluginImageList.TransparentColor = System.Drawing.Color.Transparent;
248      //
249      // newProductButton
250      //
251      this.newProductButton.Enabled = false;
252      this.newProductButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_CommonElements_Actions_Add;
253      this.newProductButton.Location = new System.Drawing.Point(6, 19);
254      this.newProductButton.Name = "newProductButton";
255      this.newProductButton.Size = new System.Drawing.Size(104, 31);
256      this.newProductButton.TabIndex = 3;
257      this.newProductButton.Text = "Create Product";
258      this.newProductButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
259      this.newProductButton.UseVisualStyleBackColor = true;
260      this.newProductButton.Click += new System.EventHandler(this.newProductButton_Click);
261      //
262      // errorProvider
263      //
264      this.errorProvider.ContainerControl = this;
265      //
266      // pluginListView
267      //
268      this.pluginListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
269                  | System.Windows.Forms.AnchorStyles.Left)
270                  | System.Windows.Forms.AnchorStyles.Right)));
271      this.pluginListView.Enabled = false;
272      this.pluginListView.Location = new System.Drawing.Point(3, 16);
273      this.pluginListView.Name = "pluginListView";
274      this.pluginListView.Plugins = null;
275      this.pluginListView.Size = new System.Drawing.Size(322, 330);
276      this.pluginListView.TabIndex = 7;
277      this.pluginListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.pluginListView_ItemChecked);
278      //
279      // ProductEditor
280      //
281      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
282      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
283      this.Controls.Add(this.splitContainer);
284      this.Name = "ProductEditor";
285      this.Size = new System.Drawing.Size(665, 426);
286      this.splitContainer.Panel1.ResumeLayout(false);
287      this.splitContainer.Panel2.ResumeLayout(false);
288      this.splitContainer.ResumeLayout(false);
289      this.productsGroupBox.ResumeLayout(false);
290      this.detailsGroupBox.ResumeLayout(false);
291      this.detailsGroupBox.PerformLayout();
292      this.pluginsGroupBox.ResumeLayout(false);
293      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
294      this.ResumeLayout(false);
295
296    }
297
298    #endregion
299
300    private System.Windows.Forms.Button refreshButton;
301    private System.Windows.Forms.Button uploadButton;
302    private System.Windows.Forms.Button newProductButton;
303    private System.Windows.Forms.SplitContainer splitContainer;
304    private System.Windows.Forms.TextBox versionTextBox;
305    private System.Windows.Forms.Label versionLabel;
306    private System.Windows.Forms.TextBox nameTextBox;
307    private System.Windows.Forms.Label nameLabel;
308    private System.Windows.Forms.ErrorProvider errorProvider;
309    private System.Windows.Forms.ListView productsListView;
310    private System.Windows.Forms.ColumnHeader productNameHeader;
311    private System.Windows.Forms.ColumnHeader productVersionHeader;
312    private System.Windows.Forms.ImageList productImageList;
313    private System.Windows.Forms.ImageList pluginImageList;
314    private PluginListView pluginListView;
315    private System.Windows.Forms.GroupBox productsGroupBox;
316    private System.Windows.Forms.GroupBox detailsGroupBox;
317    private System.Windows.Forms.GroupBox pluginsGroupBox;
318
319  }
320}
Note: See TracBrowser for help on using the repository browser.