[3081] | 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 |
|
---|
[3474] | 22 | namespace HeuristicLab.PluginInfrastructure.Advanced {
|
---|
[3045] | 23 | partial class PluginEditor {
|
---|
[2802] | 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() {
|
---|
[3573] | 47 | this.components = new System.ComponentModel.Container();
|
---|
[3547] | 48 | this.uploadButton = new System.Windows.Forms.Button();
|
---|
[2860] | 49 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
[3474] | 50 | this.listView = new HeuristicLab.PluginInfrastructure.Advanced.MultiSelectListView();
|
---|
[3068] | 51 | this.pluginNameHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 52 | this.localVersionHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 53 | this.serverVersionHeader = new System.Windows.Forms.ColumnHeader();
|
---|
| 54 | this.descriptionHeader = new System.Windows.Forms.ColumnHeader();
|
---|
[3573] | 55 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[2802] | 56 | this.SuspendLayout();
|
---|
| 57 | //
|
---|
[3547] | 58 | // uploadButton
|
---|
| 59 | //
|
---|
| 60 | this.uploadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 61 | this.uploadButton.Enabled = false;
|
---|
| 62 | this.uploadButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_CommonElements_Objects_Arrow_Up;
|
---|
[3573] | 63 | this.uploadButton.Location = new System.Drawing.Point(78, 482);
|
---|
[3547] | 64 | this.uploadButton.Name = "uploadButton";
|
---|
[3573] | 65 | this.uploadButton.Size = new System.Drawing.Size(114, 26);
|
---|
[3547] | 66 | this.uploadButton.TabIndex = 7;
|
---|
| 67 | this.uploadButton.Text = "Upload Selected";
|
---|
| 68 | this.uploadButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
[3573] | 69 | this.toolTip.SetToolTip(this.uploadButton, "Upload selected plugins to the server");
|
---|
[3547] | 70 | this.uploadButton.UseVisualStyleBackColor = true;
|
---|
| 71 | this.uploadButton.Click += new System.EventHandler(this.uploadButton_Click);
|
---|
| 72 | //
|
---|
[2860] | 73 | // refreshButton
|
---|
[2816] | 74 | //
|
---|
[3547] | 75 | this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 76 | this.refreshButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.VS2008ImageLibrary_Objects_Internet;
|
---|
[3573] | 77 | this.refreshButton.Location = new System.Drawing.Point(0, 482);
|
---|
[2860] | 78 | this.refreshButton.Name = "refreshButton";
|
---|
[3573] | 79 | this.refreshButton.Size = new System.Drawing.Size(72, 26);
|
---|
[2860] | 80 | this.refreshButton.TabIndex = 6;
|
---|
| 81 | this.refreshButton.Text = "Refresh";
|
---|
[3547] | 82 | this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
[3573] | 83 | this.toolTip.SetToolTip(this.refreshButton, "Update list of plugins from the server");
|
---|
[2860] | 84 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 85 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
[2816] | 86 | //
|
---|
[3068] | 87 | // listView
|
---|
[2802] | 88 | //
|
---|
[3068] | 89 | this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 90 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 91 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 92 | this.listView.CheckBoxes = true;
|
---|
| 93 | this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 94 | this.pluginNameHeader,
|
---|
| 95 | this.localVersionHeader,
|
---|
| 96 | this.serverVersionHeader,
|
---|
| 97 | this.descriptionHeader});
|
---|
[3547] | 98 | this.listView.Location = new System.Drawing.Point(0, 0);
|
---|
[3068] | 99 | this.listView.Name = "listView";
|
---|
[3573] | 100 | this.listView.Size = new System.Drawing.Size(539, 476);
|
---|
[3068] | 101 | this.listView.SuppressItemCheckedEvents = false;
|
---|
| 102 | this.listView.TabIndex = 8;
|
---|
| 103 | this.listView.UseCompatibleStateImageBehavior = false;
|
---|
| 104 | this.listView.View = System.Windows.Forms.View.Details;
|
---|
| 105 | this.listView.ItemActivate += new System.EventHandler(this.listView_ItemActivate);
|
---|
| 106 | this.listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
|
---|
| 107 | //
|
---|
| 108 | // pluginNameHeader
|
---|
| 109 | //
|
---|
| 110 | this.pluginNameHeader.Text = "Name";
|
---|
[3208] | 111 | this.pluginNameHeader.Width = 40;
|
---|
[3068] | 112 | //
|
---|
| 113 | // localVersionHeader
|
---|
| 114 | //
|
---|
| 115 | this.localVersionHeader.Text = "Local Version";
|
---|
[3208] | 116 | this.localVersionHeader.Width = 76;
|
---|
[3068] | 117 | //
|
---|
| 118 | // serverVersionHeader
|
---|
| 119 | //
|
---|
| 120 | this.serverVersionHeader.Text = "Server Version";
|
---|
[3208] | 121 | this.serverVersionHeader.Width = 81;
|
---|
[3068] | 122 | //
|
---|
| 123 | // descriptionHeader
|
---|
| 124 | //
|
---|
| 125 | this.descriptionHeader.Text = "Description";
|
---|
[3208] | 126 | this.descriptionHeader.Width = 335;
|
---|
[3068] | 127 | //
|
---|
| 128 | // PluginEditor
|
---|
| 129 | //
|
---|
[2802] | 130 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 131 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[3068] | 132 | this.Controls.Add(this.listView);
|
---|
[2860] | 133 | this.Controls.Add(this.uploadButton);
|
---|
| 134 | this.Controls.Add(this.refreshButton);
|
---|
[3068] | 135 | this.Name = "PluginEditor";
|
---|
[2860] | 136 | this.Size = new System.Drawing.Size(539, 508);
|
---|
[2802] | 137 | this.ResumeLayout(false);
|
---|
| 138 |
|
---|
| 139 | }
|
---|
| 140 |
|
---|
| 141 | #endregion
|
---|
| 142 |
|
---|
[2860] | 143 | private System.Windows.Forms.Button refreshButton;
|
---|
| 144 | private System.Windows.Forms.Button uploadButton;
|
---|
[3068] | 145 | private MultiSelectListView listView;
|
---|
| 146 | private System.Windows.Forms.ColumnHeader pluginNameHeader;
|
---|
| 147 | private System.Windows.Forms.ColumnHeader localVersionHeader;
|
---|
| 148 | private System.Windows.Forms.ColumnHeader serverVersionHeader;
|
---|
| 149 | private System.Windows.Forms.ColumnHeader descriptionHeader;
|
---|
[3573] | 150 | private System.Windows.Forms.ToolTip toolTip;
|
---|
[2802] | 151 | }
|
---|
| 152 | }
|
---|