[3081] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3081] | 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 {
|
---|
[3627] | 23 | partial class UploadPluginsView {
|
---|
[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();
|
---|
[3612] | 55 | this.pluginImageList = new System.Windows.Forms.ImageList(this.components);
|
---|
[3573] | 56 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
[2802] | 57 | this.SuspendLayout();
|
---|
| 58 | //
|
---|
[3547] | 59 | // uploadButton
|
---|
| 60 | //
|
---|
| 61 | this.uploadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 62 | this.uploadButton.Enabled = false;
|
---|
[3721] | 63 | this.uploadButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.PublishToWeb;
|
---|
[3573] | 64 | this.uploadButton.Location = new System.Drawing.Point(78, 482);
|
---|
[3547] | 65 | this.uploadButton.Name = "uploadButton";
|
---|
[3573] | 66 | this.uploadButton.Size = new System.Drawing.Size(114, 26);
|
---|
[3547] | 67 | this.uploadButton.TabIndex = 7;
|
---|
| 68 | this.uploadButton.Text = "Upload Selected";
|
---|
| 69 | this.uploadButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
[3573] | 70 | this.toolTip.SetToolTip(this.uploadButton, "Upload selected plugins to the server");
|
---|
[3547] | 71 | this.uploadButton.UseVisualStyleBackColor = true;
|
---|
| 72 | this.uploadButton.Click += new System.EventHandler(this.uploadButton_Click);
|
---|
| 73 | //
|
---|
[2860] | 74 | // refreshButton
|
---|
[2816] | 75 | //
|
---|
[3547] | 76 | this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[3721] | 77 | this.refreshButton.Image = global::HeuristicLab.PluginInfrastructure.Resources.Internet;
|
---|
[3573] | 78 | this.refreshButton.Location = new System.Drawing.Point(0, 482);
|
---|
[2860] | 79 | this.refreshButton.Name = "refreshButton";
|
---|
[3573] | 80 | this.refreshButton.Size = new System.Drawing.Size(72, 26);
|
---|
[2860] | 81 | this.refreshButton.TabIndex = 6;
|
---|
| 82 | this.refreshButton.Text = "Refresh";
|
---|
[3547] | 83 | this.refreshButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
|
---|
[3573] | 84 | this.toolTip.SetToolTip(this.refreshButton, "Update list of plugins from the server");
|
---|
[2860] | 85 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 86 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
[2816] | 87 | //
|
---|
[3068] | 88 | // listView
|
---|
[2802] | 89 | //
|
---|
[3068] | 90 | this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 91 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 92 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 93 | this.listView.CheckBoxes = true;
|
---|
| 94 | this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 95 | this.pluginNameHeader,
|
---|
| 96 | this.localVersionHeader,
|
---|
| 97 | this.serverVersionHeader,
|
---|
| 98 | this.descriptionHeader});
|
---|
[3547] | 99 | this.listView.Location = new System.Drawing.Point(0, 0);
|
---|
[3068] | 100 | this.listView.Name = "listView";
|
---|
[3573] | 101 | this.listView.Size = new System.Drawing.Size(539, 476);
|
---|
[3608] | 102 | this.listView.SmallImageList = this.pluginImageList;
|
---|
[3624] | 103 | this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
---|
[3068] | 104 | this.listView.SuppressItemCheckedEvents = false;
|
---|
| 105 | this.listView.TabIndex = 8;
|
---|
| 106 | this.listView.UseCompatibleStateImageBehavior = false;
|
---|
| 107 | this.listView.View = System.Windows.Forms.View.Details;
|
---|
| 108 | this.listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
|
---|
| 109 | //
|
---|
| 110 | // pluginNameHeader
|
---|
| 111 | //
|
---|
| 112 | this.pluginNameHeader.Text = "Name";
|
---|
[3208] | 113 | this.pluginNameHeader.Width = 40;
|
---|
[3068] | 114 | //
|
---|
| 115 | // localVersionHeader
|
---|
| 116 | //
|
---|
| 117 | this.localVersionHeader.Text = "Local Version";
|
---|
[3208] | 118 | this.localVersionHeader.Width = 76;
|
---|
[3068] | 119 | //
|
---|
| 120 | // serverVersionHeader
|
---|
| 121 | //
|
---|
| 122 | this.serverVersionHeader.Text = "Server Version";
|
---|
[3208] | 123 | this.serverVersionHeader.Width = 81;
|
---|
[3068] | 124 | //
|
---|
| 125 | // descriptionHeader
|
---|
| 126 | //
|
---|
| 127 | this.descriptionHeader.Text = "Description";
|
---|
[3208] | 128 | this.descriptionHeader.Width = 335;
|
---|
[3068] | 129 | //
|
---|
[3608] | 130 | // pluginImageList
|
---|
| 131 | //
|
---|
| 132 | this.pluginImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 133 | this.pluginImageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 134 | this.pluginImageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 135 | //
|
---|
[3068] | 136 | // PluginEditor
|
---|
| 137 | //
|
---|
[2802] | 138 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 139 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[3068] | 140 | this.Controls.Add(this.listView);
|
---|
[2860] | 141 | this.Controls.Add(this.uploadButton);
|
---|
| 142 | this.Controls.Add(this.refreshButton);
|
---|
[3068] | 143 | this.Name = "PluginEditor";
|
---|
[2860] | 144 | this.Size = new System.Drawing.Size(539, 508);
|
---|
[2802] | 145 | this.ResumeLayout(false);
|
---|
| 146 |
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | #endregion
|
---|
| 150 |
|
---|
[2860] | 151 | private System.Windows.Forms.Button refreshButton;
|
---|
| 152 | private System.Windows.Forms.Button uploadButton;
|
---|
[3068] | 153 | private MultiSelectListView listView;
|
---|
| 154 | private System.Windows.Forms.ColumnHeader pluginNameHeader;
|
---|
| 155 | private System.Windows.Forms.ColumnHeader localVersionHeader;
|
---|
| 156 | private System.Windows.Forms.ColumnHeader serverVersionHeader;
|
---|
| 157 | private System.Windows.Forms.ColumnHeader descriptionHeader;
|
---|
[3573] | 158 | private System.Windows.Forms.ToolTip toolTip;
|
---|
[3608] | 159 | private System.Windows.Forms.ImageList pluginImageList;
|
---|
[2802] | 160 | }
|
---|
| 161 | }
|
---|