[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Windows.Forms;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.Core {
|
---|
| 26 | partial class VariablesScopeView {
|
---|
| 27 | /// <summary>
|
---|
| 28 | /// Required designer variable.
|
---|
| 29 | /// </summary>
|
---|
| 30 | private System.ComponentModel.IContainer components = null;
|
---|
| 31 |
|
---|
| 32 | /// <summary>
|
---|
| 33 | /// Clean up any resources being used.
|
---|
| 34 | /// </summary>
|
---|
| 35 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 36 | protected override void Dispose(bool disposing) {
|
---|
| 37 | if (chooseItemDialog != null) chooseItemDialog.Dispose();
|
---|
| 38 | foreach (ListViewItem item in variablesListView.Items) {
|
---|
| 39 | ((IVariable)item.Tag).NameChanged -= new EventHandler(Variable_NameChanged);
|
---|
| 40 | }
|
---|
| 41 | if (disposing && (components != null)) {
|
---|
| 42 | components.Dispose();
|
---|
| 43 | }
|
---|
| 44 | base.Dispose(disposing);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | #region Windows Form Designer generated code
|
---|
| 48 |
|
---|
| 49 | /// <summary>
|
---|
| 50 | /// Required method for Designer support - do not modify
|
---|
| 51 | /// the contents of this method with the code editor.
|
---|
| 52 | /// </summary>
|
---|
| 53 | private void InitializeComponent() {
|
---|
| 54 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
| 55 | this.variablesGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 56 | this.variablesListView = new System.Windows.Forms.ListView();
|
---|
| 57 | this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
|
---|
| 58 | this.detailsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 59 | this.addButton = new System.Windows.Forms.Button();
|
---|
| 60 | this.removeButton = new System.Windows.Forms.Button();
|
---|
| 61 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
| 62 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
| 63 | this.splitContainer1.SuspendLayout();
|
---|
| 64 | this.variablesGroupBox.SuspendLayout();
|
---|
| 65 | this.SuspendLayout();
|
---|
| 66 | //
|
---|
| 67 | // splitContainer1
|
---|
| 68 | //
|
---|
| 69 | this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 70 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 71 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[166] | 72 | this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
[2] | 73 | this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
---|
| 74 | this.splitContainer1.Name = "splitContainer1";
|
---|
| 75 | //
|
---|
| 76 | // splitContainer1.Panel1
|
---|
| 77 | //
|
---|
| 78 | this.splitContainer1.Panel1.Controls.Add(this.variablesGroupBox);
|
---|
| 79 | //
|
---|
| 80 | // splitContainer1.Panel2
|
---|
| 81 | //
|
---|
| 82 | this.splitContainer1.Panel2.Controls.Add(this.detailsGroupBox);
|
---|
| 83 | this.splitContainer1.Size = new System.Drawing.Size(276, 155);
|
---|
| 84 | this.splitContainer1.SplitterDistance = 135;
|
---|
| 85 | this.splitContainer1.TabIndex = 0;
|
---|
| 86 | //
|
---|
| 87 | // variablesGroupBox
|
---|
| 88 | //
|
---|
| 89 | this.variablesGroupBox.Controls.Add(this.variablesListView);
|
---|
| 90 | this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 91 | this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 92 | this.variablesGroupBox.Name = "variablesGroupBox";
|
---|
| 93 | this.variablesGroupBox.Size = new System.Drawing.Size(135, 155);
|
---|
| 94 | this.variablesGroupBox.TabIndex = 0;
|
---|
| 95 | this.variablesGroupBox.TabStop = false;
|
---|
| 96 | this.variablesGroupBox.Text = "&Variables";
|
---|
| 97 | //
|
---|
| 98 | // variablesListView
|
---|
| 99 | //
|
---|
| 100 | this.variablesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
| 101 | this.columnHeader1});
|
---|
| 102 | this.variablesListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 103 | this.variablesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
| 104 | this.variablesListView.HideSelection = false;
|
---|
| 105 | this.variablesListView.Location = new System.Drawing.Point(3, 16);
|
---|
| 106 | this.variablesListView.Name = "variablesListView";
|
---|
| 107 | this.variablesListView.Size = new System.Drawing.Size(129, 136);
|
---|
| 108 | this.variablesListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
---|
| 109 | this.variablesListView.TabIndex = 0;
|
---|
| 110 | this.variablesListView.UseCompatibleStateImageBehavior = false;
|
---|
| 111 | this.variablesListView.View = System.Windows.Forms.View.Details;
|
---|
| 112 | this.variablesListView.SelectedIndexChanged += new System.EventHandler(this.variablesListView_SelectedIndexChanged);
|
---|
| 113 | this.variablesListView.SizeChanged += new System.EventHandler(this.variablesListView_SizeChanged);
|
---|
| 114 | this.variablesListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variablesListView_KeyDown);
|
---|
| 115 | //
|
---|
| 116 | // detailsGroupBox
|
---|
| 117 | //
|
---|
| 118 | this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 119 | this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 120 | this.detailsGroupBox.Name = "detailsGroupBox";
|
---|
| 121 | this.detailsGroupBox.Size = new System.Drawing.Size(137, 155);
|
---|
| 122 | this.detailsGroupBox.TabIndex = 0;
|
---|
| 123 | this.detailsGroupBox.TabStop = false;
|
---|
| 124 | this.detailsGroupBox.Text = "&Details";
|
---|
| 125 | //
|
---|
| 126 | // addButton
|
---|
| 127 | //
|
---|
| 128 | this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 129 | this.addButton.Location = new System.Drawing.Point(0, 161);
|
---|
| 130 | this.addButton.Name = "addButton";
|
---|
| 131 | this.addButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 132 | this.addButton.TabIndex = 1;
|
---|
| 133 | this.addButton.Text = "&Add...";
|
---|
| 134 | this.addButton.UseVisualStyleBackColor = true;
|
---|
| 135 | this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
---|
| 136 | //
|
---|
| 137 | // removeButton
|
---|
| 138 | //
|
---|
| 139 | this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 140 | this.removeButton.Enabled = false;
|
---|
| 141 | this.removeButton.Location = new System.Drawing.Point(81, 161);
|
---|
| 142 | this.removeButton.Name = "removeButton";
|
---|
| 143 | this.removeButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 144 | this.removeButton.TabIndex = 2;
|
---|
| 145 | this.removeButton.Text = "&Remove";
|
---|
| 146 | this.removeButton.UseVisualStyleBackColor = true;
|
---|
| 147 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
|
---|
| 148 | //
|
---|
| 149 | // VariablesScopeView
|
---|
| 150 | //
|
---|
| 151 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 152 | this.Controls.Add(this.removeButton);
|
---|
| 153 | this.Controls.Add(this.addButton);
|
---|
| 154 | this.Controls.Add(this.splitContainer1);
|
---|
| 155 | this.Name = "VariablesScopeView";
|
---|
| 156 | this.Size = new System.Drawing.Size(276, 184);
|
---|
| 157 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
| 158 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
| 159 | this.splitContainer1.ResumeLayout(false);
|
---|
| 160 | this.variablesGroupBox.ResumeLayout(false);
|
---|
| 161 | this.ResumeLayout(false);
|
---|
| 162 |
|
---|
| 163 | }
|
---|
| 164 |
|
---|
| 165 | #endregion
|
---|
| 166 |
|
---|
| 167 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
| 168 | private System.Windows.Forms.GroupBox variablesGroupBox;
|
---|
| 169 | private System.Windows.Forms.ListView variablesListView;
|
---|
| 170 | private System.Windows.Forms.ColumnHeader columnHeader1;
|
---|
| 171 | private System.Windows.Forms.GroupBox detailsGroupBox;
|
---|
| 172 | private System.Windows.Forms.Button addButton;
|
---|
| 173 | private System.Windows.Forms.Button removeButton;
|
---|
| 174 | }
|
---|
| 175 | }
|
---|