1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2019 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.PluginInfrastructure.Starter {
|
---|
23 | partial class StarterForm {
|
---|
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 | System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left);
|
---|
49 | System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Plugin Management", System.Windows.Forms.HorizontalAlignment.Left);
|
---|
50 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StarterForm));
|
---|
51 | this.startButton = new System.Windows.Forms.Button();
|
---|
52 | this.largeImageList = new System.Windows.Forms.ImageList(this.components);
|
---|
53 | this.applicationsListView = new System.Windows.Forms.ListView();
|
---|
54 | this.nameColumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
55 | this.versionColumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
56 | this.descriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
|
---|
57 | this.smallImageList = new System.Windows.Forms.ImageList(this.components);
|
---|
58 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
59 | this.showLargeIconsButton = new System.Windows.Forms.RadioButton();
|
---|
60 | this.showDetailsButton = new System.Windows.Forms.RadioButton();
|
---|
61 | this.aboutButton = new System.Windows.Forms.Button();
|
---|
62 | this.SuspendLayout();
|
---|
63 | //
|
---|
64 | // startButton
|
---|
65 | //
|
---|
66 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
67 | this.startButton.Enabled = false;
|
---|
68 | this.startButton.Location = new System.Drawing.Point(498, 511);
|
---|
69 | this.startButton.Name = "startButton";
|
---|
70 | this.startButton.Size = new System.Drawing.Size(75, 23);
|
---|
71 | this.startButton.TabIndex = 1;
|
---|
72 | this.startButton.Text = "&Start";
|
---|
73 | this.toolTip.SetToolTip(this.startButton, "Start Selected Application");
|
---|
74 | this.startButton.UseVisualStyleBackColor = true;
|
---|
75 | this.startButton.Click += new System.EventHandler(this.applicationsListView_ItemActivate);
|
---|
76 | //
|
---|
77 | // largeImageList
|
---|
78 | //
|
---|
79 | this.largeImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
80 | this.largeImageList.ImageSize = new System.Drawing.Size(32, 32);
|
---|
81 | this.largeImageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
82 | //
|
---|
83 | // applicationsListView
|
---|
84 | //
|
---|
85 | this.applicationsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
86 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
87 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
88 | this.applicationsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
89 | this.nameColumnHeader,
|
---|
90 | this.versionColumnHeader,
|
---|
91 | this.descriptionColumnHeader});
|
---|
92 | listViewGroup1.Header = "Applications";
|
---|
93 | listViewGroup1.Name = "Applications";
|
---|
94 | listViewGroup2.Header = "Plugin Management";
|
---|
95 | listViewGroup2.Name = "Plugin Management";
|
---|
96 | this.applicationsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
|
---|
97 | listViewGroup1,
|
---|
98 | listViewGroup2});
|
---|
99 | this.applicationsListView.LargeImageList = this.largeImageList;
|
---|
100 | this.applicationsListView.Location = new System.Drawing.Point(12, 12);
|
---|
101 | this.applicationsListView.MultiSelect = false;
|
---|
102 | this.applicationsListView.Name = "applicationsListView";
|
---|
103 | this.applicationsListView.ShowItemToolTips = true;
|
---|
104 | this.applicationsListView.Size = new System.Drawing.Size(642, 493);
|
---|
105 | this.applicationsListView.SmallImageList = this.smallImageList;
|
---|
106 | this.applicationsListView.TabIndex = 0;
|
---|
107 | this.applicationsListView.UseCompatibleStateImageBehavior = false;
|
---|
108 | this.applicationsListView.ItemActivate += new System.EventHandler(this.applicationsListView_ItemActivate);
|
---|
109 | this.applicationsListView.SelectedIndexChanged += new System.EventHandler(this.applicationsListView_SelectedIndexChanged);
|
---|
110 | //
|
---|
111 | // nameColumnHeader
|
---|
112 | //
|
---|
113 | this.nameColumnHeader.Text = "Name";
|
---|
114 | this.nameColumnHeader.Width = 125;
|
---|
115 | //
|
---|
116 | // versionColumnHeader
|
---|
117 | //
|
---|
118 | this.versionColumnHeader.Text = "Version";
|
---|
119 | //
|
---|
120 | // descriptionColumnHeader
|
---|
121 | //
|
---|
122 | this.descriptionColumnHeader.Text = "Description";
|
---|
123 | this.descriptionColumnHeader.Width = 453;
|
---|
124 | //
|
---|
125 | // smallImageList
|
---|
126 | //
|
---|
127 | this.smallImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
128 | this.smallImageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
129 | this.smallImageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
130 | //
|
---|
131 | // showLargeIconsButton
|
---|
132 | //
|
---|
133 | this.showLargeIconsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
134 | this.showLargeIconsButton.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
135 | this.showLargeIconsButton.Checked = true;
|
---|
136 | this.showLargeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowIcons;
|
---|
137 | this.showLargeIconsButton.Location = new System.Drawing.Point(12, 511);
|
---|
138 | this.showLargeIconsButton.Name = "showLargeIconsButton";
|
---|
139 | this.showLargeIconsButton.Size = new System.Drawing.Size(23, 23);
|
---|
140 | this.showLargeIconsButton.TabIndex = 2;
|
---|
141 | this.showLargeIconsButton.TabStop = true;
|
---|
142 | this.toolTip.SetToolTip(this.showLargeIconsButton, "Show Large Icons");
|
---|
143 | this.showLargeIconsButton.UseVisualStyleBackColor = false;
|
---|
144 | this.showLargeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click);
|
---|
145 | //
|
---|
146 | // showDetailsButton
|
---|
147 | //
|
---|
148 | this.showDetailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
149 | this.showDetailsButton.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
150 | this.showDetailsButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.ShowDetails;
|
---|
151 | this.showDetailsButton.Location = new System.Drawing.Point(41, 511);
|
---|
152 | this.showDetailsButton.Name = "showDetailsButton";
|
---|
153 | this.showDetailsButton.Size = new System.Drawing.Size(23, 23);
|
---|
154 | this.showDetailsButton.TabIndex = 3;
|
---|
155 | this.toolTip.SetToolTip(this.showDetailsButton, "Show Details");
|
---|
156 | this.showDetailsButton.UseVisualStyleBackColor = false;
|
---|
157 | this.showDetailsButton.Click += new System.EventHandler(this.detailsButton_Click);
|
---|
158 | //
|
---|
159 | // aboutButton
|
---|
160 | //
|
---|
161 | this.aboutButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
162 | this.aboutButton.Location = new System.Drawing.Point(579, 511);
|
---|
163 | this.aboutButton.Name = "aboutButton";
|
---|
164 | this.aboutButton.Size = new System.Drawing.Size(75, 23);
|
---|
165 | this.aboutButton.TabIndex = 4;
|
---|
166 | this.aboutButton.Text = "&About...";
|
---|
167 | this.aboutButton.UseVisualStyleBackColor = true;
|
---|
168 | this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click);
|
---|
169 | //
|
---|
170 | // StarterForm
|
---|
171 | //
|
---|
172 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
173 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
174 | this.ClientSize = new System.Drawing.Size(666, 546);
|
---|
175 | this.Controls.Add(this.aboutButton);
|
---|
176 | this.Controls.Add(this.showDetailsButton);
|
---|
177 | this.Controls.Add(this.showLargeIconsButton);
|
---|
178 | this.Controls.Add(this.applicationsListView);
|
---|
179 | this.Controls.Add(this.startButton);
|
---|
180 | this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
|
---|
181 | this.Name = "StarterForm";
|
---|
182 | this.Text = "HeuristicLab Starter";
|
---|
183 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.StarterForm_FormClosing);
|
---|
184 | this.Load += new System.EventHandler(this.StarterForm_Load);
|
---|
185 | this.ResumeLayout(false);
|
---|
186 |
|
---|
187 | }
|
---|
188 |
|
---|
189 | #endregion
|
---|
190 |
|
---|
191 | private System.Windows.Forms.Button startButton;
|
---|
192 | private System.Windows.Forms.ImageList largeImageList;
|
---|
193 | private System.Windows.Forms.ListView applicationsListView;
|
---|
194 | private System.Windows.Forms.ColumnHeader nameColumnHeader;
|
---|
195 | private System.Windows.Forms.ColumnHeader versionColumnHeader;
|
---|
196 | private System.Windows.Forms.ColumnHeader descriptionColumnHeader;
|
---|
197 | private System.Windows.Forms.ImageList smallImageList;
|
---|
198 | private System.Windows.Forms.ToolTip toolTip;
|
---|
199 | private System.Windows.Forms.RadioButton showLargeIconsButton;
|
---|
200 | private System.Windows.Forms.RadioButton showDetailsButton;
|
---|
201 | private System.Windows.Forms.Button aboutButton;
|
---|
202 | }
|
---|
203 | }
|
---|