Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/PluginInformationDialog.Designer.cs @ 13363

Last change on this file since 13363 was 13363, checked in by gkronber, 8 years ago

#2522: improvements to new PluginInformationDialog and removed obsolete classes

File size: 16.8 KB
Line 
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
22namespace HeuristicLab.PluginInfrastructure.UI {
23  partial class PluginInformationDialog {
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 Windows Form 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.okButton = new System.Windows.Forms.Button();
49      this.pluginListView = new System.Windows.Forms.ListView();
50      this.pluginNameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
51      this.pluginVersionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
52      this.pluginDescriptionColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
53      this.imageList = new System.Windows.Forms.ImageList(this.components);
54      this.productTextBox = new System.Windows.Forms.TextBox();
55      this.contactTextBox = new System.Windows.Forms.TextBox();
56      this.textBox = new System.Windows.Forms.RichTextBox();
57      this.label2 = new System.Windows.Forms.Label();
58      this.panel1 = new System.Windows.Forms.Panel();
59      this.label4 = new System.Windows.Forms.Label();
60      this.webLinkLabel = new System.Windows.Forms.LinkLabel();
61      this.mailLinkLabel = new System.Windows.Forms.LinkLabel();
62      this.label3 = new System.Windows.Forms.Label();
63      this.label1 = new System.Windows.Forms.Label();
64      this.versionTextBox = new System.Windows.Forms.TextBox();
65      this.label = new System.Windows.Forms.Label();
66      this.panel2 = new System.Windows.Forms.Panel();
67      this.stateTextBox = new System.Windows.Forms.TextBox();
68      this.label5 = new System.Windows.Forms.Label();
69      this.panel1.SuspendLayout();
70      this.panel2.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // okButton
74      //
75      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
77      this.okButton.Location = new System.Drawing.Point(800, 13);
78      this.okButton.Name = "okButton";
79      this.okButton.Size = new System.Drawing.Size(75, 23);
80      this.okButton.TabIndex = 0;
81      this.okButton.Text = "&Close";
82      this.okButton.UseVisualStyleBackColor = true;
83      this.okButton.Click += new System.EventHandler(this.okButton_Click);
84      //
85      // pluginListView
86      //
87      this.pluginListView.Activation = System.Windows.Forms.ItemActivation.OneClick;
88      this.pluginListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
89            | System.Windows.Forms.AnchorStyles.Left)));
90      this.pluginListView.BorderStyle = System.Windows.Forms.BorderStyle.None;
91      this.pluginListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
92            this.pluginNameColumnHeader,
93            this.pluginVersionColumnHeader,
94            this.pluginDescriptionColumnHeader});
95      this.pluginListView.FullRowSelect = true;
96      this.pluginListView.GridLines = true;
97      this.pluginListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
98      this.pluginListView.HideSelection = false;
99      this.pluginListView.Location = new System.Drawing.Point(12, 12);
100      this.pluginListView.MultiSelect = false;
101      this.pluginListView.Name = "pluginListView";
102      this.pluginListView.ShowGroups = false;
103      this.pluginListView.Size = new System.Drawing.Size(303, 514);
104      this.pluginListView.SmallImageList = this.imageList;
105      this.pluginListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
106      this.pluginListView.TabIndex = 0;
107      this.pluginListView.TileSize = new System.Drawing.Size(300, 60);
108      this.pluginListView.UseCompatibleStateImageBehavior = false;
109      this.pluginListView.View = System.Windows.Forms.View.Tile;
110      this.pluginListView.ItemActivate += new System.EventHandler(this.pluginListView_ItemActivate);
111      this.pluginListView.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.pluginListView_ItemSelectionChanged);
112      this.pluginListView.ClientSizeChanged += new System.EventHandler(this.pluginListView_ClientSizeChanged);
113      //
114      // pluginNameColumnHeader
115      //
116      this.pluginNameColumnHeader.Text = "Name";
117      //
118      // pluginVersionColumnHeader
119      //
120      this.pluginVersionColumnHeader.Text = "Version";
121      //
122      // pluginDescriptionColumnHeader
123      //
124      this.pluginDescriptionColumnHeader.Text = "Description";
125      //
126      // imageList
127      //
128      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
129      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
130      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
131      //
132      // productTextBox
133      //
134      this.productTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
135      this.productTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
136      this.productTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
137      this.productTextBox.Location = new System.Drawing.Point(87, 3);
138      this.productTextBox.Name = "productTextBox";
139      this.productTextBox.ReadOnly = true;
140      this.productTextBox.Size = new System.Drawing.Size(355, 13);
141      this.productTextBox.TabIndex = 2;
142      this.productTextBox.Text = "HeuristicLab";
143      //
144      // contactTextBox
145      //
146      this.contactTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
147      this.contactTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
148      this.contactTextBox.Location = new System.Drawing.Point(87, 41);
149      this.contactTextBox.Name = "contactTextBox";
150      this.contactTextBox.ReadOnly = true;
151      this.contactTextBox.Size = new System.Drawing.Size(355, 13);
152      this.contactTextBox.TabIndex = 6;
153      this.contactTextBox.Text = "(C)";
154      //
155      // textBox
156      //
157      this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
158            | System.Windows.Forms.AnchorStyles.Left)
159            | System.Windows.Forms.AnchorStyles.Right)));
160      this.textBox.BackColor = System.Drawing.SystemColors.HighlightText;
161      this.textBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
162      this.textBox.Location = new System.Drawing.Point(6, 117);
163      this.textBox.Name = "textBox";
164      this.textBox.ReadOnly = true;
165      this.textBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
166      this.textBox.Size = new System.Drawing.Size(526, 375);
167      this.textBox.TabIndex = 11;
168      this.textBox.Text = "Files and License Text";
169      this.textBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.licenseTextBox_LinkClicked);
170      this.textBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.textBox_MouseClick);
171      this.textBox.MouseLeave += new System.EventHandler(this.textBox_MouseLeave);
172      this.textBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.textBox_MouseMove);
173      //
174      // label2
175      //
176      this.label2.AutoSize = true;
177      this.label2.Location = new System.Drawing.Point(3, 60);
178      this.label2.Margin = new System.Windows.Forms.Padding(3);
179      this.label2.Name = "label2";
180      this.label2.Size = new System.Drawing.Size(49, 13);
181      this.label2.TabIndex = 7;
182      this.label2.Text = "Website:";
183      //
184      // panel1
185      //
186      this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
187            | System.Windows.Forms.AnchorStyles.Right)));
188      this.panel1.BackColor = System.Drawing.SystemColors.Control;
189      this.panel1.Controls.Add(this.okButton);
190      this.panel1.Location = new System.Drawing.Point(0, 538);
191      this.panel1.Name = "panel1";
192      this.panel1.Size = new System.Drawing.Size(888, 48);
193      this.panel1.TabIndex = 0;
194      //
195      // label4
196      //
197      this.label4.AutoSize = true;
198      this.label4.Location = new System.Drawing.Point(3, 79);
199      this.label4.Margin = new System.Windows.Forms.Padding(3);
200      this.label4.Name = "label4";
201      this.label4.Size = new System.Drawing.Size(47, 13);
202      this.label4.TabIndex = 9;
203      this.label4.Text = "Contact:";
204      //
205      // webLinkLabel
206      //
207      this.webLinkLabel.AutoSize = true;
208      this.webLinkLabel.Location = new System.Drawing.Point(84, 60);
209      this.webLinkLabel.Name = "webLinkLabel";
210      this.webLinkLabel.Size = new System.Drawing.Size(135, 13);
211      this.webLinkLabel.TabIndex = 8;
212      this.webLinkLabel.TabStop = true;
213      this.webLinkLabel.Text = "http://dev.heuristiclab.com";
214      this.webLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.webLinkLabel_LinkClicked);
215      //
216      // mailLinkLabel
217      //
218      this.mailLinkLabel.AutoSize = true;
219      this.mailLinkLabel.Location = new System.Drawing.Point(84, 79);
220      this.mailLinkLabel.Name = "mailLinkLabel";
221      this.mailLinkLabel.Size = new System.Drawing.Size(129, 13);
222      this.mailLinkLabel.TabIndex = 10;
223      this.mailLinkLabel.TabStop = true;
224      this.mailLinkLabel.Text = "support@heuristiclab.com";
225      this.mailLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.mailLinkLabel_LinkClicked);
226      //
227      // label3
228      //
229      this.label3.AutoSize = true;
230      this.label3.Location = new System.Drawing.Point(3, 41);
231      this.label3.Margin = new System.Windows.Forms.Padding(3);
232      this.label3.Name = "label3";
233      this.label3.Size = new System.Drawing.Size(54, 13);
234      this.label3.TabIndex = 5;
235      this.label3.Text = "Copyright:";
236      //
237      // label1
238      //
239      this.label1.AutoSize = true;
240      this.label1.Location = new System.Drawing.Point(3, 22);
241      this.label1.Margin = new System.Windows.Forms.Padding(3);
242      this.label1.Name = "label1";
243      this.label1.Size = new System.Drawing.Size(45, 13);
244      this.label1.TabIndex = 3;
245      this.label1.Text = "Version:";
246      //
247      // versionTextBox
248      //
249      this.versionTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
250      this.versionTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
251      this.versionTextBox.Location = new System.Drawing.Point(87, 22);
252      this.versionTextBox.Name = "versionTextBox";
253      this.versionTextBox.ReadOnly = true;
254      this.versionTextBox.Size = new System.Drawing.Size(355, 13);
255      this.versionTextBox.TabIndex = 4;
256      this.versionTextBox.Text = "1.0";
257      //
258      // label
259      //
260      this.label.AutoSize = true;
261      this.label.Location = new System.Drawing.Point(3, 3);
262      this.label.Margin = new System.Windows.Forms.Padding(3);
263      this.label.Name = "label";
264      this.label.Size = new System.Drawing.Size(38, 13);
265      this.label.TabIndex = 1;
266      this.label.Text = "Name:";
267      //
268      // panel2
269      //
270      this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
271            | System.Windows.Forms.AnchorStyles.Left)
272            | System.Windows.Forms.AnchorStyles.Right)));
273      this.panel2.Controls.Add(this.stateTextBox);
274      this.panel2.Controls.Add(this.label5);
275      this.panel2.Controls.Add(this.contactTextBox);
276      this.panel2.Controls.Add(this.mailLinkLabel);
277      this.panel2.Controls.Add(this.label);
278      this.panel2.Controls.Add(this.webLinkLabel);
279      this.panel2.Controls.Add(this.label1);
280      this.panel2.Controls.Add(this.label4);
281      this.panel2.Controls.Add(this.label3);
282      this.panel2.Controls.Add(this.productTextBox);
283      this.panel2.Controls.Add(this.label2);
284      this.panel2.Controls.Add(this.versionTextBox);
285      this.panel2.Controls.Add(this.textBox);
286      this.panel2.Location = new System.Drawing.Point(321, 31);
287      this.panel2.Name = "panel2";
288      this.panel2.Size = new System.Drawing.Size(554, 495);
289      this.panel2.TabIndex = 13;
290      //
291      // stateTextBox
292      //
293      this.stateTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
294      this.stateTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
295      this.stateTextBox.Location = new System.Drawing.Point(87, 98);
296      this.stateTextBox.Name = "stateTextBox";
297      this.stateTextBox.ReadOnly = true;
298      this.stateTextBox.Size = new System.Drawing.Size(355, 13);
299      this.stateTextBox.TabIndex = 13;
300      this.stateTextBox.Text = "Enabled/Disabled";
301      //
302      // label5
303      //
304      this.label5.AutoSize = true;
305      this.label5.Location = new System.Drawing.Point(3, 98);
306      this.label5.Margin = new System.Windows.Forms.Padding(3);
307      this.label5.Name = "label5";
308      this.label5.Size = new System.Drawing.Size(35, 13);
309      this.label5.TabIndex = 12;
310      this.label5.Text = "State:";
311      //
312      // PluginInformationDialog
313      //
314      this.AcceptButton = this.okButton;
315      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
316      this.BackColor = System.Drawing.SystemColors.Window;
317      this.CancelButton = this.okButton;
318      this.ClientSize = new System.Drawing.Size(887, 586);
319      this.Controls.Add(this.pluginListView);
320      this.Controls.Add(this.panel2);
321      this.Controls.Add(this.panel1);
322      this.Icon = global::HeuristicLab.PluginInfrastructure.UI.Resources.HeuristicLab;
323      this.MaximizeBox = false;
324      this.MinimizeBox = false;
325      this.Name = "PluginInformationDialog";
326      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
327      this.Text = "About Plugins";
328      this.panel1.ResumeLayout(false);
329      this.panel2.ResumeLayout(false);
330      this.panel2.PerformLayout();
331      this.ResumeLayout(false);
332
333    }
334
335    #endregion
336
337    private System.Windows.Forms.Button okButton;
338    private System.Windows.Forms.ListView pluginListView;
339    private System.Windows.Forms.ImageList imageList;
340    private System.Windows.Forms.ColumnHeader pluginNameColumnHeader;
341    private System.Windows.Forms.ColumnHeader pluginVersionColumnHeader;
342    private System.Windows.Forms.ColumnHeader pluginDescriptionColumnHeader;
343    private System.Windows.Forms.TextBox productTextBox;
344    private System.Windows.Forms.TextBox contactTextBox;
345    private System.Windows.Forms.RichTextBox textBox;
346    private System.Windows.Forms.Label label2;
347    private System.Windows.Forms.Panel panel1;
348    private System.Windows.Forms.Label label4;
349    private System.Windows.Forms.LinkLabel webLinkLabel;
350    private System.Windows.Forms.LinkLabel mailLinkLabel;
351    private System.Windows.Forms.Label label3;
352    private System.Windows.Forms.Label label1;
353    private System.Windows.Forms.TextBox versionTextBox;
354    private System.Windows.Forms.Label label;
355    private System.Windows.Forms.Panel panel2;
356    private System.Windows.Forms.TextBox stateTextBox;
357    private System.Windows.Forms.Label label5;
358  }
359}
Note: See TracBrowser for help on using the repository browser.