Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/InstallationManagerForm.Designer.cs @ 3749

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

Fixed problems with .resx file. #989

File size: 17.6 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
21namespace HeuristicLab.PluginInfrastructure.Advanced {
22  partial class InstallationManagerForm {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Windows Form Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.components = new System.ComponentModel.Container();
47      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InstallationManagerForm));
48      this.statusStrip = new System.Windows.Forms.StatusStrip();
49      this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
50      this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
51      this.tabControl = new System.Windows.Forms.TabControl();
52      this.updateAllPluginsTabPage = new System.Windows.Forms.TabPage();
53      this.basicUpdateView = new HeuristicLab.PluginInfrastructure.Advanced.BasicUpdateView();
54      this.localPluginsTabPage = new System.Windows.Forms.TabPage();
55      this.localPluginsView = new HeuristicLab.PluginInfrastructure.Advanced.InstalledPluginsView();
56      this.availablePluginsTabPage = new System.Windows.Forms.TabPage();
57      this.remotePluginInstaller = new HeuristicLab.PluginInfrastructure.Advanced.AvailablePluginsView();
58      this.uploadPluginsTabPage = new System.Windows.Forms.TabPage();
59      this.pluginEditor = new HeuristicLab.PluginInfrastructure.Advanced.UploadPluginsView();
60      this.manageProductsTabPage = new System.Windows.Forms.TabPage();
61      this.productEditor = new HeuristicLab.PluginInfrastructure.Advanced.EditProductsView();
62      this.logTabPage = new System.Windows.Forms.TabPage();
63      this.logTextBox = new System.Windows.Forms.TextBox();
64      this.menuStrip = new System.Windows.Forms.MenuStrip();
65      this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
66      this.connectionSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
67      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
68      this.statusStrip.SuspendLayout();
69      this.tabControl.SuspendLayout();
70      this.updateAllPluginsTabPage.SuspendLayout();
71      this.localPluginsTabPage.SuspendLayout();
72      this.availablePluginsTabPage.SuspendLayout();
73      this.uploadPluginsTabPage.SuspendLayout();
74      this.manageProductsTabPage.SuspendLayout();
75      this.logTabPage.SuspendLayout();
76      this.menuStrip.SuspendLayout();
77      this.SuspendLayout();
78      //
79      // statusStrip
80      //
81      this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
82            this.toolStripProgressBar,
83            this.toolStripStatusLabel});
84      this.statusStrip.Location = new System.Drawing.Point(0, 422);
85      this.statusStrip.Name = "statusStrip";
86      this.statusStrip.Size = new System.Drawing.Size(622, 22);
87      this.statusStrip.TabIndex = 0;
88      //
89      // toolStripProgressBar
90      //
91      this.toolStripProgressBar.MarqueeAnimationSpeed = 30;
92      this.toolStripProgressBar.Name = "toolStripProgressBar";
93      this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
94      this.toolStripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
95      this.toolStripProgressBar.Visible = false;
96      //
97      // toolStripStatusLabel
98      //
99      this.toolStripStatusLabel.Name = "toolStripStatusLabel";
100      this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
101      //
102      // tabControl
103      //
104      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
105                  | System.Windows.Forms.AnchorStyles.Left)
106                  | System.Windows.Forms.AnchorStyles.Right)));
107      this.tabControl.Controls.Add(this.updateAllPluginsTabPage);
108      this.tabControl.Controls.Add(this.localPluginsTabPage);
109      this.tabControl.Controls.Add(this.availablePluginsTabPage);
110      this.tabControl.Controls.Add(this.uploadPluginsTabPage);
111      this.tabControl.Controls.Add(this.manageProductsTabPage);
112      this.tabControl.Controls.Add(this.logTabPage);
113      this.tabControl.Location = new System.Drawing.Point(12, 27);
114      this.tabControl.Name = "tabControl";
115      this.tabControl.SelectedIndex = 0;
116      this.tabControl.Size = new System.Drawing.Size(598, 392);
117      this.tabControl.TabIndex = 16;
118      this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
119      //
120      // updateAllPluginsTabPage
121      //
122      this.updateAllPluginsTabPage.Controls.Add(this.basicUpdateView);
123      this.updateAllPluginsTabPage.Location = new System.Drawing.Point(4, 22);
124      this.updateAllPluginsTabPage.Name = "updateAllPluginsTabPage";
125      this.updateAllPluginsTabPage.Padding = new System.Windows.Forms.Padding(3);
126      this.updateAllPluginsTabPage.Size = new System.Drawing.Size(590, 366);
127      this.updateAllPluginsTabPage.TabIndex = 5;
128      this.updateAllPluginsTabPage.Text = "Update Plugins";
129      this.toolTip.SetToolTip(this.updateAllPluginsTabPage, "Update all installed plugins");
130      this.updateAllPluginsTabPage.UseVisualStyleBackColor = true;
131      //
132      // basicUpdateView
133      //
134      this.basicUpdateView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
135                  | System.Windows.Forms.AnchorStyles.Left)
136                  | System.Windows.Forms.AnchorStyles.Right)));
137      this.basicUpdateView.InstallationManager = null;
138      this.basicUpdateView.Location = new System.Drawing.Point(6, 6);
139      this.basicUpdateView.Name = "basicUpdateView";
140      this.basicUpdateView.PluginManager = null;
141      this.basicUpdateView.Size = new System.Drawing.Size(578, 354);
142      this.basicUpdateView.StatusView = null;
143      this.basicUpdateView.TabIndex = 0;
144      //
145      // localPluginsTabPage
146      //
147      this.localPluginsTabPage.Controls.Add(this.localPluginsView);
148      this.localPluginsTabPage.Location = new System.Drawing.Point(4, 22);
149      this.localPluginsTabPage.Name = "localPluginsTabPage";
150      this.localPluginsTabPage.Padding = new System.Windows.Forms.Padding(3);
151      this.localPluginsTabPage.Size = new System.Drawing.Size(590, 366);
152      this.localPluginsTabPage.TabIndex = 0;
153      this.localPluginsTabPage.Text = "Installed Plugins";
154      this.toolTip.SetToolTip(this.localPluginsTabPage, "Delete or update installed plugins");
155      this.localPluginsTabPage.UseVisualStyleBackColor = true;
156      //
157      // localPluginsView
158      //
159      this.localPluginsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
160                  | System.Windows.Forms.AnchorStyles.Left)
161                  | System.Windows.Forms.AnchorStyles.Right)));
162      this.localPluginsView.InstallationManager = null;
163      this.localPluginsView.Location = new System.Drawing.Point(6, 6);
164      this.localPluginsView.Name = "localPluginsView";
165      this.localPluginsView.PluginManager = null;
166      this.localPluginsView.Size = new System.Drawing.Size(578, 354);
167      this.localPluginsView.StatusView = null;
168      this.localPluginsView.TabIndex = 0;
169      //
170      // availablePluginsTabPage
171      //
172      this.availablePluginsTabPage.Controls.Add(this.remotePluginInstaller);
173      this.availablePluginsTabPage.Location = new System.Drawing.Point(4, 22);
174      this.availablePluginsTabPage.Name = "availablePluginsTabPage";
175      this.availablePluginsTabPage.Padding = new System.Windows.Forms.Padding(3);
176      this.availablePluginsTabPage.Size = new System.Drawing.Size(590, 366);
177      this.availablePluginsTabPage.TabIndex = 1;
178      this.availablePluginsTabPage.Text = "Available Plugins";
179      this.toolTip.SetToolTip(this.availablePluginsTabPage, "Download and install new plugins");
180      this.availablePluginsTabPage.UseVisualStyleBackColor = true;
181      //
182      // remotePluginInstaller
183      //
184      this.remotePluginInstaller.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
185                  | System.Windows.Forms.AnchorStyles.Left)
186                  | System.Windows.Forms.AnchorStyles.Right)));
187      this.remotePluginInstaller.InstallationManager = null;
188      this.remotePluginInstaller.Location = new System.Drawing.Point(6, 6);
189      this.remotePluginInstaller.Name = "remotePluginInstaller";
190      this.remotePluginInstaller.PluginManager = null;
191      this.remotePluginInstaller.Size = new System.Drawing.Size(578, 354);
192      this.remotePluginInstaller.StatusView = null;
193      this.remotePluginInstaller.TabIndex = 14;
194      //
195      // uploadPluginsTabPage
196      //
197      this.uploadPluginsTabPage.Controls.Add(this.pluginEditor);
198      this.uploadPluginsTabPage.Location = new System.Drawing.Point(4, 22);
199      this.uploadPluginsTabPage.Name = "uploadPluginsTabPage";
200      this.uploadPluginsTabPage.Padding = new System.Windows.Forms.Padding(3);
201      this.uploadPluginsTabPage.Size = new System.Drawing.Size(590, 366);
202      this.uploadPluginsTabPage.TabIndex = 3;
203      this.uploadPluginsTabPage.Text = "Upload Plugins";
204      this.toolTip.SetToolTip(this.uploadPluginsTabPage, "Upload plugins");
205      this.uploadPluginsTabPage.UseVisualStyleBackColor = true;
206      //
207      // pluginEditor
208      //
209      this.pluginEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
210                  | System.Windows.Forms.AnchorStyles.Left)
211                  | System.Windows.Forms.AnchorStyles.Right)));
212      this.pluginEditor.Location = new System.Drawing.Point(6, 6);
213      this.pluginEditor.Name = "pluginEditor";
214      this.pluginEditor.PluginManager = null;
215      this.pluginEditor.Size = new System.Drawing.Size(578, 354);
216      this.pluginEditor.StatusView = null;
217      this.pluginEditor.TabIndex = 0;
218      //
219      // manageProductsTabPage
220      //
221      this.manageProductsTabPage.Controls.Add(this.productEditor);
222      this.manageProductsTabPage.Location = new System.Drawing.Point(4, 22);
223      this.manageProductsTabPage.Name = "manageProductsTabPage";
224      this.manageProductsTabPage.Padding = new System.Windows.Forms.Padding(3);
225      this.manageProductsTabPage.Size = new System.Drawing.Size(590, 366);
226      this.manageProductsTabPage.TabIndex = 4;
227      this.manageProductsTabPage.Text = "Manage Products";
228      this.toolTip.SetToolTip(this.manageProductsTabPage, "Create and manage products");
229      this.manageProductsTabPage.UseVisualStyleBackColor = true;
230      //
231      // productEditor
232      //
233      this.productEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
234                  | System.Windows.Forms.AnchorStyles.Left)
235                  | System.Windows.Forms.AnchorStyles.Right)));
236      this.productEditor.Location = new System.Drawing.Point(6, 6);
237      this.productEditor.Name = "productEditor";
238      this.productEditor.Size = new System.Drawing.Size(578, 354);
239      this.productEditor.StatusView = null;
240      this.productEditor.TabIndex = 0;
241      //
242      // logTabPage
243      //
244      this.logTabPage.Controls.Add(this.logTextBox);
245      this.logTabPage.Location = new System.Drawing.Point(4, 22);
246      this.logTabPage.Name = "logTabPage";
247      this.logTabPage.Size = new System.Drawing.Size(590, 366);
248      this.logTabPage.TabIndex = 2;
249      this.logTabPage.Text = "Log";
250      this.toolTip.SetToolTip(this.logTabPage, "Show Log Messages");
251      this.logTabPage.UseVisualStyleBackColor = true;
252      //
253      // logTextBox
254      //
255      this.logTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
256                  | System.Windows.Forms.AnchorStyles.Left)
257                  | System.Windows.Forms.AnchorStyles.Right)));
258      this.logTextBox.Location = new System.Drawing.Point(3, 3);
259      this.logTextBox.Multiline = true;
260      this.logTextBox.Name = "logTextBox";
261      this.logTextBox.ReadOnly = true;
262      this.logTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
263      this.logTextBox.Size = new System.Drawing.Size(584, 360);
264      this.logTextBox.TabIndex = 0;
265      //
266      // menuStrip
267      //
268      this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
269            this.optionsToolStripMenuItem});
270      this.menuStrip.Location = new System.Drawing.Point(0, 0);
271      this.menuStrip.Name = "menuStrip";
272      this.menuStrip.Size = new System.Drawing.Size(622, 24);
273      this.menuStrip.TabIndex = 17;
274      this.menuStrip.Text = "menuStrip1";
275      //
276      // optionsToolStripMenuItem
277      //
278      this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
279            this.connectionSettingsToolStripMenuItem});
280      this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
281      this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
282      this.optionsToolStripMenuItem.Text = "Options";
283      //
284      // connectionSettingsToolStripMenuItem
285      //
286      this.connectionSettingsToolStripMenuItem.Image = global::HeuristicLab.PluginInfrastructure.Resources.NetworkConnections;
287      this.connectionSettingsToolStripMenuItem.Name = "connectionSettingsToolStripMenuItem";
288      this.connectionSettingsToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
289      this.connectionSettingsToolStripMenuItem.Text = "Connection Settings...";
290      this.connectionSettingsToolStripMenuItem.Click += new System.EventHandler(this.connectionSettingsToolStripMenuItem_Click);
291      //
292      // InstallationManagerForm
293      //
294      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
295      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
296      this.ClientSize = new System.Drawing.Size(622, 444);
297      this.Controls.Add(this.tabControl);
298      this.Controls.Add(this.statusStrip);
299      this.Controls.Add(this.menuStrip);
300      this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
301      this.MainMenuStrip = this.menuStrip;
302      this.Name = "InstallationManagerForm";
303      this.Text = "Plugin Manager";
304      this.statusStrip.ResumeLayout(false);
305      this.statusStrip.PerformLayout();
306      this.tabControl.ResumeLayout(false);
307      this.updateAllPluginsTabPage.ResumeLayout(false);
308      this.localPluginsTabPage.ResumeLayout(false);
309      this.availablePluginsTabPage.ResumeLayout(false);
310      this.uploadPluginsTabPage.ResumeLayout(false);
311      this.manageProductsTabPage.ResumeLayout(false);
312      this.logTabPage.ResumeLayout(false);
313      this.logTabPage.PerformLayout();
314      this.menuStrip.ResumeLayout(false);
315      this.menuStrip.PerformLayout();
316      this.ResumeLayout(false);
317      this.PerformLayout();
318
319    }
320
321    #endregion
322
323    private System.Windows.Forms.StatusStrip statusStrip;
324    private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
325    private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
326    private AvailablePluginsView remotePluginInstaller;
327    private System.Windows.Forms.TabControl tabControl;
328    private System.Windows.Forms.TabPage localPluginsTabPage;
329    private System.Windows.Forms.TabPage availablePluginsTabPage;
330    private System.Windows.Forms.TabPage logTabPage;
331    private System.Windows.Forms.TextBox logTextBox;
332    private System.Windows.Forms.MenuStrip menuStrip;
333    private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
334    private System.Windows.Forms.ToolStripMenuItem connectionSettingsToolStripMenuItem;
335    private System.Windows.Forms.TabPage uploadPluginsTabPage;
336    private System.Windows.Forms.TabPage manageProductsTabPage;
337    private UploadPluginsView pluginEditor;
338    private EditProductsView productEditor;
339    private InstalledPluginsView localPluginsView;
340    private System.Windows.Forms.TabPage updateAllPluginsTabPage;
341    private BasicUpdateView basicUpdateView;
342    private System.Windows.Forms.ToolTip toolTip;
343  }
344}
Note: See TracBrowser for help on using the repository browser.