Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/LocalPluginsView.Designer.cs @ 3608

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

Changed plugin manager GUI as suggested by reviewers. #989 (Implement review comments in plugin infrastructure)

File size: 8.1 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 LocalPluginsView {
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      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Active Plugins", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Disabled Plugins", System.Windows.Forms.HorizontalAlignment.Left);
50      this.updateSelectedButton = new System.Windows.Forms.Button();
51      this.removeButton = new System.Windows.Forms.Button();
52      this.localPluginsListView = new HeuristicLab.PluginInfrastructure.Advanced.MultiSelectListView();
53      this.nameHeader = new System.Windows.Forms.ColumnHeader();
54      this.versionHeader = new System.Windows.Forms.ColumnHeader();
55      this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
57      this.pluginImageList = new System.Windows.Forms.ImageList(this.components);
58      this.SuspendLayout();
59      //
60      // updateSelectedButton
61      //
62      this.updateSelectedButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
63      this.updateSelectedButton.Enabled = false;
64      this.updateSelectedButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_Objects_Internet;
65      this.updateSelectedButton.Location = new System.Drawing.Point(3, 483);
66      this.updateSelectedButton.Name = "updateSelectedButton";
67      this.updateSelectedButton.Size = new System.Drawing.Size(114, 25);
68      this.updateSelectedButton.TabIndex = 6;
69      this.updateSelectedButton.Text = "Update Selected";
70      this.updateSelectedButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
71      this.toolTip.SetToolTip(this.updateSelectedButton, "Update all selected plugins");
72      this.updateSelectedButton.UseVisualStyleBackColor = true;
73      this.updateSelectedButton.Click += new System.EventHandler(this.updateSelectedButton_Click);
74      //
75      // removeButton
76      //
77      this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
78      this.removeButton.Enabled = false;
79      this.removeButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_CommonElements_Actions_Remove;
80      this.removeButton.Location = new System.Drawing.Point(123, 483);
81      this.removeButton.Name = "removeButton";
82      this.removeButton.Size = new System.Drawing.Size(110, 25);
83      this.removeButton.TabIndex = 12;
84      this.removeButton.Text = "Delete Selected";
85      this.removeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
86      this.toolTip.SetToolTip(this.removeButton, "Delete all selected plugins from disk");
87      this.removeButton.UseVisualStyleBackColor = true;
88      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
89      //
90      // localPluginsListView
91      //
92      this.localPluginsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
93                  | System.Windows.Forms.AnchorStyles.Left)
94                  | System.Windows.Forms.AnchorStyles.Right)));
95      this.localPluginsListView.CheckBoxes = true;
96      this.localPluginsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
97            this.nameHeader,
98            this.versionHeader,
99            this.descriptionHeader});
100      listViewGroup1.Header = "Active Plugins";
101      listViewGroup1.Name = "activePluginsGroup";
102      listViewGroup2.Header = "Disabled Plugins";
103      listViewGroup2.Name = "disabledPluginsGroup";
104      this.localPluginsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
105            listViewGroup1,
106            listViewGroup2});
107      this.localPluginsListView.Location = new System.Drawing.Point(0, 0);
108      this.localPluginsListView.Name = "localPluginsListView";
109      this.localPluginsListView.Size = new System.Drawing.Size(539, 477);
110      this.localPluginsListView.SmallImageList = this.pluginImageList;
111      this.localPluginsListView.SuppressItemCheckedEvents = false;
112      this.localPluginsListView.TabIndex = 13;
113      this.localPluginsListView.UseCompatibleStateImageBehavior = false;
114      this.localPluginsListView.View = System.Windows.Forms.View.Details;
115      this.localPluginsListView.ItemActivate += new System.EventHandler(this.localPluginsListView_ItemActivate);
116      this.localPluginsListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.pluginsListView_ItemChecked);
117      //
118      // nameHeader
119      //
120      this.nameHeader.Text = "Name";
121      this.nameHeader.Width = 199;
122      //
123      // versionHeader
124      //
125      this.versionHeader.Text = "Version";
126      this.versionHeader.Width = 84;
127      //
128      // descriptionHeader
129      //
130      this.descriptionHeader.Text = "Description";
131      this.descriptionHeader.Width = 245;
132      //
133      // pluginImageList
134      //
135      this.pluginImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
136      this.pluginImageList.ImageSize = new System.Drawing.Size(16, 16);
137      this.pluginImageList.TransparentColor = System.Drawing.Color.Transparent;
138      //
139      // LocalPluginsView
140      //
141      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
142      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
143      this.Controls.Add(this.localPluginsListView);
144      this.Controls.Add(this.removeButton);
145      this.Controls.Add(this.updateSelectedButton);
146      this.Name = "LocalPluginsView";
147      this.Size = new System.Drawing.Size(539, 508);
148      this.ResumeLayout(false);
149
150    }
151
152    #endregion
153
154    private System.Windows.Forms.Button updateSelectedButton;
155    private System.Windows.Forms.Button removeButton;
156    private MultiSelectListView localPluginsListView;
157    private System.Windows.Forms.ColumnHeader nameHeader;
158    private System.Windows.Forms.ColumnHeader versionHeader;
159    private System.Windows.Forms.ColumnHeader descriptionHeader;
160    private System.Windows.Forms.ToolTip toolTip;
161    private System.Windows.Forms.ImageList pluginImageList;
162    // private LocalPluginManagerView localPluginManagerView;
163  }
164}
Note: See TracBrowser for help on using the repository browser.