[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 |
|
---|
| 22 | using HeuristicLab.Common.Resources;
|
---|
[6976] | 23 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
| 24 | partial class ItemTreeView<T> {
|
---|
| 25 | /// <summary>
|
---|
| 26 | /// Required designer variable.
|
---|
| 27 | /// </summary>
|
---|
| 28 | private System.ComponentModel.IContainer components = null;
|
---|
| 29 |
|
---|
| 30 | /// <summary>
|
---|
| 31 | /// Clean up any resources being used.
|
---|
| 32 | /// </summary>
|
---|
| 33 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 34 | protected override void Dispose(bool disposing) {
|
---|
| 35 | if (disposing && (components != null)) {
|
---|
| 36 | components.Dispose();
|
---|
| 37 | }
|
---|
| 38 | base.Dispose(disposing);
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | #region Component Designer generated code
|
---|
| 42 |
|
---|
| 43 | /// <summary>
|
---|
| 44 | /// Required method for Designer support - do not modify
|
---|
| 45 | /// the contents of this method with the code editor.
|
---|
| 46 | /// </summary>
|
---|
| 47 | private void InitializeComponent() {
|
---|
| 48 | this.components = new System.ComponentModel.Container();
|
---|
| 49 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 50 | this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 51 | this.removeButton = new System.Windows.Forms.Button();
|
---|
| 52 | this.addButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.treeView = new System.Windows.Forms.TreeView();
|
---|
| 54 | this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 55 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
| 56 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 57 | this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 58 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
| 59 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 60 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 61 | this.splitContainer.SuspendLayout();
|
---|
| 62 | this.contextMenuStrip.SuspendLayout();
|
---|
| 63 | this.detailsGroupBox.SuspendLayout();
|
---|
| 64 | this.SuspendLayout();
|
---|
| 65 | //
|
---|
| 66 | // splitContainer
|
---|
| 67 | //
|
---|
| 68 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 69 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
| 70 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 71 | this.splitContainer.Name = "splitContainer";
|
---|
| 72 | //
|
---|
| 73 | // splitContainer.Panel1
|
---|
| 74 | //
|
---|
| 75 | this.splitContainer.Panel1.Controls.Add(this.showDetailsCheckBox);
|
---|
| 76 | this.splitContainer.Panel1.Controls.Add(this.removeButton);
|
---|
| 77 | this.splitContainer.Panel1.Controls.Add(this.addButton);
|
---|
| 78 | this.splitContainer.Panel1.Controls.Add(this.treeView);
|
---|
| 79 | //
|
---|
| 80 | // splitContainer.Panel2
|
---|
| 81 | //
|
---|
| 82 | this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
| 83 | this.splitContainer.Size = new System.Drawing.Size(624, 463);
|
---|
| 84 | this.splitContainer.SplitterDistance = 200;
|
---|
| 85 | this.splitContainer.TabIndex = 0;
|
---|
| 86 | //
|
---|
| 87 | // showDetailsCheckBox
|
---|
| 88 | //
|
---|
| 89 | this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
| 90 | this.showDetailsCheckBox.Checked = true;
|
---|
| 91 | this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 92 | this.showDetailsCheckBox.Image = VSImageLibrary.Properties;
|
---|
| 93 | this.showDetailsCheckBox.Location = new System.Drawing.Point(63, 3);
|
---|
| 94 | this.showDetailsCheckBox.Name = "showDetailsCheckBox";
|
---|
| 95 | this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
|
---|
| 96 | this.showDetailsCheckBox.TabIndex = 5;
|
---|
| 97 | this.showDetailsCheckBox.UseVisualStyleBackColor = true;
|
---|
| 98 | this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
|
---|
| 99 | //
|
---|
| 100 | // removeButton
|
---|
| 101 | //
|
---|
| 102 | this.removeButton.Enabled = false;
|
---|
| 103 | this.removeButton.Image = VSImageLibrary.Remove;
|
---|
| 104 | this.removeButton.Location = new System.Drawing.Point(33, 3);
|
---|
| 105 | this.removeButton.Name = "removeButton";
|
---|
| 106 | this.removeButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 107 | this.removeButton.TabIndex = 4;
|
---|
| 108 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 109 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 110 | //
|
---|
| 111 | // addButton
|
---|
| 112 | //
|
---|
| 113 | this.addButton.Image = VSImageLibrary.Add;
|
---|
| 114 | this.addButton.Location = new System.Drawing.Point(3, 3);
|
---|
| 115 | this.addButton.Name = "addButton";
|
---|
| 116 | this.addButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 117 | this.addButton.TabIndex = 1;
|
---|
| 118 | this.addButton.UseVisualStyleBackColor = true;
|
---|
| 119 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
| 120 | //
|
---|
| 121 | // treeView
|
---|
| 122 | //
|
---|
| 123 | this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 124 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 125 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 126 | this.treeView.ContextMenuStrip = this.contextMenuStrip;
|
---|
| 127 | this.treeView.HideSelection = false;
|
---|
| 128 | this.treeView.ImageIndex = 0;
|
---|
| 129 | this.treeView.ImageList = this.imageList;
|
---|
| 130 | this.treeView.Location = new System.Drawing.Point(0, 33);
|
---|
| 131 | this.treeView.Name = "treeView";
|
---|
| 132 | this.treeView.SelectedImageIndex = 0;
|
---|
| 133 | this.treeView.Size = new System.Drawing.Size(200, 430);
|
---|
| 134 | this.treeView.TabIndex = 0;
|
---|
| 135 | this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
|
---|
| 136 | this.treeView.Click += new System.EventHandler(this.treeView_Click);
|
---|
| 137 | this.treeView.DoubleClick += new System.EventHandler(this.treeView_DoubleClick);
|
---|
| 138 | this.treeView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseClick);
|
---|
| 139 | this.treeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.treeView_MouseDown);
|
---|
| 140 | //
|
---|
| 141 | // contextMenuStrip
|
---|
| 142 | //
|
---|
| 143 | this.contextMenuStrip.Name = "contextMenuStrip";
|
---|
| 144 | this.contextMenuStrip.Size = new System.Drawing.Size(153, 70);
|
---|
| 145 | this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
|
---|
| 146 | //
|
---|
| 147 | // imageList
|
---|
| 148 | //
|
---|
| 149 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
| 150 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
| 151 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
| 152 | //
|
---|
| 153 | // detailsGroupBox
|
---|
| 154 | //
|
---|
| 155 | this.detailsGroupBox.Controls.Add(this.detailsViewHost);
|
---|
| 156 | this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 157 | this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 158 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
| 159 | this.detailsGroupBox.Size = new System.Drawing.Size(420, 463);
|
---|
| 160 | this.detailsGroupBox.TabIndex = 1;
|
---|
| 161 | this.detailsGroupBox.TabStop = false;
|
---|
| 162 | this.detailsGroupBox.Text = "Details";
|
---|
| 163 | //
|
---|
| 164 | // detailsViewHost
|
---|
| 165 | //
|
---|
| 166 | this.detailsViewHost.Caption = "View";
|
---|
| 167 | this.detailsViewHost.Content = null;
|
---|
| 168 | this.detailsViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 169 | this.detailsViewHost.Enabled = false;
|
---|
| 170 | this.detailsViewHost.Location = new System.Drawing.Point(3, 16);
|
---|
| 171 | this.detailsViewHost.Name = "detailsViewHost";
|
---|
| 172 | this.detailsViewHost.ReadOnly = false;
|
---|
| 173 | this.detailsViewHost.Size = new System.Drawing.Size(414, 444);
|
---|
| 174 | this.detailsViewHost.TabIndex = 0;
|
---|
| 175 | this.detailsViewHost.ViewsLabelVisible = true;
|
---|
| 176 | this.detailsViewHost.ViewType = null;
|
---|
| 177 | //
|
---|
| 178 | // ItemTreeView
|
---|
| 179 | //
|
---|
| 180 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 181 | this.Controls.Add(this.splitContainer);
|
---|
| 182 | this.Name = "ItemTreeView";
|
---|
| 183 | this.Size = new System.Drawing.Size(624, 463);
|
---|
| 184 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 185 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 186 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
| 187 | this.splitContainer.ResumeLayout(false);
|
---|
| 188 | this.contextMenuStrip.ResumeLayout(false);
|
---|
| 189 | this.detailsGroupBox.ResumeLayout(false);
|
---|
| 190 | this.ResumeLayout(false);
|
---|
| 191 |
|
---|
| 192 | }
|
---|
| 193 |
|
---|
| 194 | #endregion
|
---|
| 195 |
|
---|
| 196 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 197 | protected System.Windows.Forms.TreeView treeView;
|
---|
| 198 | private MainForm.WindowsForms.ViewHost detailsViewHost;
|
---|
| 199 | private System.Windows.Forms.ImageList imageList;
|
---|
| 200 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
| 201 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
---|
| 202 | protected System.Windows.Forms.CheckBox showDetailsCheckBox;
|
---|
| 203 | protected System.Windows.Forms.Button removeButton;
|
---|
| 204 | protected System.Windows.Forms.Button addButton;
|
---|
| 205 | }
|
---|
| 206 | }
|
---|