[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 | namespace HeuristicLab.Functions {
|
---|
[155] | 24 | partial class FunctionTreeView {
|
---|
[2] | 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 | if(selectedVariable != null) {
|
---|
| 39 | selectedVariable.Value.Changed -= new EventHandler(selectedVariable_ValueChanged);
|
---|
| 40 | }
|
---|
| 41 | base.Dispose(disposing);
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | #region Component Designer generated code
|
---|
| 45 |
|
---|
| 46 | /// <summary>
|
---|
| 47 | /// Required method for Designer support - do not modify
|
---|
| 48 | /// the contents of this method with the code editor.
|
---|
| 49 | /// </summary>
|
---|
| 50 | private void InitializeComponent() {
|
---|
| 51 | this.components = new System.ComponentModel.Container();
|
---|
| 52 | this.functionTreeView = new System.Windows.Forms.TreeView();
|
---|
| 53 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 54 | this.variablesGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 55 | this.variablesSplitContainer = new System.Windows.Forms.SplitContainer();
|
---|
| 56 | this.variablesListBox = new System.Windows.Forms.ListBox();
|
---|
| 57 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 58 | this.templateTextBox = new System.Windows.Forms.TextBox();
|
---|
| 59 | this.editButton = new System.Windows.Forms.Button();
|
---|
| 60 | this.treeNodeContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 61 | this.copyToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
| 62 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 63 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 64 | this.splitContainer.SuspendLayout();
|
---|
| 65 | this.variablesGroupBox.SuspendLayout();
|
---|
| 66 | this.variablesSplitContainer.Panel1.SuspendLayout();
|
---|
| 67 | this.variablesSplitContainer.SuspendLayout();
|
---|
| 68 | this.treeNodeContextMenu.SuspendLayout();
|
---|
| 69 | this.SuspendLayout();
|
---|
| 70 | //
|
---|
| 71 | // functionTreeView
|
---|
| 72 | //
|
---|
| 73 | this.functionTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 74 | this.functionTreeView.HideSelection = false;
|
---|
| 75 | this.functionTreeView.Location = new System.Drawing.Point(0, 0);
|
---|
| 76 | this.functionTreeView.Name = "functionTreeView";
|
---|
| 77 | this.functionTreeView.Size = new System.Drawing.Size(182, 532);
|
---|
| 78 | this.functionTreeView.TabIndex = 0;
|
---|
| 79 | this.functionTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.functionTreeView_AfterSelect);
|
---|
| 80 | //
|
---|
| 81 | // splitContainer
|
---|
| 82 | //
|
---|
| 83 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 84 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 85 | this.splitContainer.Name = "splitContainer";
|
---|
| 86 | //
|
---|
| 87 | // splitContainer.Panel1
|
---|
| 88 | //
|
---|
| 89 | this.splitContainer.Panel1.Controls.Add(this.functionTreeView);
|
---|
| 90 | //
|
---|
| 91 | // splitContainer.Panel2
|
---|
| 92 | //
|
---|
| 93 | this.splitContainer.Panel2.Controls.Add(this.variablesGroupBox);
|
---|
| 94 | this.splitContainer.Panel2.Controls.Add(this.label1);
|
---|
| 95 | this.splitContainer.Panel2.Controls.Add(this.templateTextBox);
|
---|
| 96 | this.splitContainer.Panel2.Controls.Add(this.editButton);
|
---|
| 97 | this.splitContainer.Size = new System.Drawing.Size(735, 532);
|
---|
| 98 | this.splitContainer.SplitterDistance = 182;
|
---|
| 99 | this.splitContainer.TabIndex = 1;
|
---|
| 100 | //
|
---|
| 101 | // variablesGroupBox
|
---|
| 102 | //
|
---|
| 103 | this.variablesGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 104 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 105 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 106 | this.variablesGroupBox.Controls.Add(this.variablesSplitContainer);
|
---|
| 107 | this.variablesGroupBox.Location = new System.Drawing.Point(3, 31);
|
---|
| 108 | this.variablesGroupBox.Name = "variablesGroupBox";
|
---|
| 109 | this.variablesGroupBox.Size = new System.Drawing.Size(543, 498);
|
---|
| 110 | this.variablesGroupBox.TabIndex = 5;
|
---|
| 111 | this.variablesGroupBox.TabStop = false;
|
---|
| 112 | this.variablesGroupBox.Text = "Local variables";
|
---|
| 113 | //
|
---|
| 114 | // variablesSplitContainer
|
---|
| 115 | //
|
---|
| 116 | this.variablesSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 117 | this.variablesSplitContainer.Location = new System.Drawing.Point(3, 16);
|
---|
| 118 | this.variablesSplitContainer.Name = "variablesSplitContainer";
|
---|
| 119 | //
|
---|
| 120 | // variablesSplitContainer.Panel1
|
---|
| 121 | //
|
---|
| 122 | this.variablesSplitContainer.Panel1.Controls.Add(this.variablesListBox);
|
---|
| 123 | this.variablesSplitContainer.Size = new System.Drawing.Size(537, 479);
|
---|
| 124 | this.variablesSplitContainer.SplitterDistance = 179;
|
---|
| 125 | this.variablesSplitContainer.TabIndex = 0;
|
---|
| 126 | //
|
---|
| 127 | // variablesListBox
|
---|
| 128 | //
|
---|
| 129 | this.variablesListBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 130 | this.variablesListBox.FormattingEnabled = true;
|
---|
| 131 | this.variablesListBox.Location = new System.Drawing.Point(0, 0);
|
---|
| 132 | this.variablesListBox.Name = "variablesListBox";
|
---|
| 133 | this.variablesListBox.Size = new System.Drawing.Size(179, 472);
|
---|
| 134 | this.variablesListBox.TabIndex = 0;
|
---|
| 135 | this.variablesListBox.SelectedIndexChanged += new System.EventHandler(this.variablesListBox_SelectedIndexChanged);
|
---|
| 136 | //
|
---|
| 137 | // label1
|
---|
| 138 | //
|
---|
| 139 | this.label1.AutoSize = true;
|
---|
| 140 | this.label1.Location = new System.Drawing.Point(3, 10);
|
---|
| 141 | this.label1.Name = "label1";
|
---|
| 142 | this.label1.Size = new System.Drawing.Size(96, 13);
|
---|
| 143 | this.label1.TabIndex = 3;
|
---|
| 144 | this.label1.Text = "Function definition:";
|
---|
| 145 | //
|
---|
| 146 | // templateTextBox
|
---|
| 147 | //
|
---|
| 148 | this.templateTextBox.Location = new System.Drawing.Point(105, 7);
|
---|
| 149 | this.templateTextBox.Name = "templateTextBox";
|
---|
| 150 | this.templateTextBox.ReadOnly = true;
|
---|
| 151 | this.templateTextBox.Size = new System.Drawing.Size(190, 20);
|
---|
| 152 | this.templateTextBox.TabIndex = 2;
|
---|
| 153 | //
|
---|
| 154 | // editButton
|
---|
| 155 | //
|
---|
| 156 | this.editButton.Location = new System.Drawing.Point(301, 5);
|
---|
| 157 | this.editButton.Name = "editButton";
|
---|
| 158 | this.editButton.Size = new System.Drawing.Size(49, 23);
|
---|
| 159 | this.editButton.TabIndex = 1;
|
---|
| 160 | this.editButton.Text = "Edit...";
|
---|
| 161 | this.editButton.UseVisualStyleBackColor = true;
|
---|
| 162 | this.editButton.Click += new System.EventHandler(this.editButton_Click);
|
---|
| 163 | //
|
---|
| 164 | // treeNodeContextMenu
|
---|
| 165 | //
|
---|
| 166 | this.treeNodeContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 167 | this.copyToClipboardMenuItem});
|
---|
| 168 | this.treeNodeContextMenu.Name = "treeNodeContextMenu";
|
---|
[155] | 169 | this.treeNodeContextMenu.Size = new System.Drawing.Size(248, 26);
|
---|
[2] | 170 | //
|
---|
| 171 | // copyToClipboardMenuItem
|
---|
| 172 | //
|
---|
| 173 | this.copyToClipboardMenuItem.Name = "copyToClipboardMenuItem";
|
---|
[155] | 174 | this.copyToClipboardMenuItem.Size = new System.Drawing.Size(247, 22);
|
---|
[2] | 175 | this.copyToClipboardMenuItem.Text = "Copy to clip-board (Model-Analyzer)";
|
---|
| 176 | this.copyToClipboardMenuItem.Click += new System.EventHandler(this.copyToClipboardMenuItem_Click);
|
---|
| 177 | //
|
---|
| 178 | // FunctionView
|
---|
| 179 | //
|
---|
| 180 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 181 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 182 | this.Controls.Add(this.splitContainer);
|
---|
| 183 | this.Name = "FunctionView";
|
---|
| 184 | this.Size = new System.Drawing.Size(735, 532);
|
---|
| 185 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 186 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 187 | this.splitContainer.Panel2.PerformLayout();
|
---|
| 188 | this.splitContainer.ResumeLayout(false);
|
---|
| 189 | this.variablesGroupBox.ResumeLayout(false);
|
---|
| 190 | this.variablesSplitContainer.Panel1.ResumeLayout(false);
|
---|
| 191 | this.variablesSplitContainer.ResumeLayout(false);
|
---|
| 192 | this.treeNodeContextMenu.ResumeLayout(false);
|
---|
| 193 | this.ResumeLayout(false);
|
---|
| 194 |
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | #endregion
|
---|
| 198 |
|
---|
| 199 | private System.Windows.Forms.TreeView functionTreeView;
|
---|
| 200 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 201 | private System.Windows.Forms.TextBox templateTextBox;
|
---|
| 202 | private System.Windows.Forms.Button editButton;
|
---|
| 203 | private System.Windows.Forms.GroupBox variablesGroupBox;
|
---|
| 204 | private System.Windows.Forms.SplitContainer variablesSplitContainer;
|
---|
| 205 | private System.Windows.Forms.ListBox variablesListBox;
|
---|
| 206 | private System.Windows.Forms.Label label1;
|
---|
| 207 | private System.Windows.Forms.ContextMenuStrip treeNodeContextMenu;
|
---|
| 208 | private System.Windows.Forms.ToolStripMenuItem copyToClipboardMenuItem;
|
---|
| 209 |
|
---|
| 210 | }
|
---|
| 211 | }
|
---|