Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.2/sources/HeuristicLab.PluginInfrastructure/Advanced/RemotePluginInstaller.Designer.cs @ 5445

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

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

File size: 7.2 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 RemotePluginInstallerView {
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 Component 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      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Products", System.Windows.Forms.HorizontalAlignment.Left);
47      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("New Plugins", System.Windows.Forms.HorizontalAlignment.Left);
48      System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("All Plugins", System.Windows.Forms.HorizontalAlignment.Left);
49      this.remotePluginsListView = new HeuristicLab.PluginInfrastructure.Advanced.MultiSelectListView();
50      this.nameHeader = new System.Windows.Forms.ColumnHeader();
51      this.versionHeader = new System.Windows.Forms.ColumnHeader();
52      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
53      this.refreshButton = new System.Windows.Forms.Button();
54      this.installButton = new System.Windows.Forms.Button();
55      this.SuspendLayout();
56      //
57      // remotePluginsListView
58      //
59      this.remotePluginsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60                  | System.Windows.Forms.AnchorStyles.Left)
61                  | System.Windows.Forms.AnchorStyles.Right)));
62      this.remotePluginsListView.CheckBoxes = true;
63      this.remotePluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
64            this.nameHeader,
65            this.versionHeader,
66            this.descriptionHeader});
67      listViewGroup1.Header = "Products";
68      listViewGroup1.Name = "productsGroup";
69      listViewGroup2.Header = "New Plugins";
70      listViewGroup2.Name = "newPluginsGroup";
71      listViewGroup3.Header = "All Plugins";
72      listViewGroup3.Name = "allPluginsGroup";
73      this.remotePluginsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
74            listViewGroup1,
75            listViewGroup2,
76            listViewGroup3});
77      this.remotePluginsListView.Location = new System.Drawing.Point(0, 0);
78      this.remotePluginsListView.Name = "remotePluginsListView";
79      this.remotePluginsListView.Size = new System.Drawing.Size(533, 527);
80      this.remotePluginsListView.SuppressItemCheckedEvents = false;
81      this.remotePluginsListView.TabIndex = 0;
82      this.remotePluginsListView.UseCompatibleStateImageBehavior = false;
83      this.remotePluginsListView.View = System.Windows.Forms.View.Details;
84      this.remotePluginsListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.remotePluginsListView_ItemChecked);
85      //
86      // nameHeader
87      //
88      this.nameHeader.Text = "Name";
89      this.nameHeader.Width = 185;
90      //
91      // versionHeader
92      //
93      this.versionHeader.Text = "Version";
94      this.versionHeader.Width = 93;
95      //
96      // descriptionHeader
97      //
98      this.descriptionHeader.Text = "Description";
99      this.descriptionHeader.Width = 250;
100      //
101      // refreshButton
102      //
103      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
104      this.refreshButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_Objects_Internet;
105      this.refreshButton.Location = new System.Drawing.Point(0, 533);
106      this.refreshButton.Name = "refreshButton";
107      this.refreshButton.Size = new System.Drawing.Size(72, 25);
108      this.refreshButton.TabIndex = 16;
109      this.refreshButton.Text = "Refresh";
110      this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
111      this.refreshButton.UseVisualStyleBackColor = true;
112      this.refreshButton.Click += new System.EventHandler(this.refreshRemoteButton_Click);
113      //
114      // installButton
115      //
116      this.installButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
117      this.installButton.Enabled = false;
118      this.installButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_Objects_Install;
119      this.installButton.Location = new System.Drawing.Point(78, 533);
120      this.installButton.Name = "installButton";
121      this.installButton.Size = new System.Drawing.Size(140, 25);
122      this.installButton.TabIndex = 17;
123      this.installButton.Text = "Install Selected Items";
124      this.installButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
125      this.installButton.UseVisualStyleBackColor = true;
126      this.installButton.Click += new System.EventHandler(this.installButton_Click);
127      //
128      // RemotePluginInstallerView
129      //
130      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
131      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
132      this.Controls.Add(this.refreshButton);
133      this.Controls.Add(this.installButton);
134      this.Controls.Add(this.remotePluginsListView);
135      this.Name = "RemotePluginInstallerView";
136      this.Size = new System.Drawing.Size(533, 558);
137      this.ResumeLayout(false);
138
139    }
140
141    #endregion
142
143    private MultiSelectListView remotePluginsListView;
144    private System.Windows.Forms.ColumnHeader nameHeader;
145    private System.Windows.Forms.ColumnHeader versionHeader;
146    private System.Windows.Forms.ColumnHeader descriptionHeader;
147    private System.Windows.Forms.Button refreshButton;
148    private System.Windows.Forms.Button installButton;
149  }
150}
Note: See TracBrowser for help on using the repository browser.