[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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 |
|
---|
[2520] | 22 | namespace HeuristicLab.Core.Views {
|
---|
[2] | 23 | partial class OperatorGraphView {
|
---|
| 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) {
|
---|
[2655] | 34 | if (disposing) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
[2] | 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() {
|
---|
| 47 | this.components = new System.ComponentModel.Container();
|
---|
| 48 | this.operatorsContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
| 49 | this.initialOperatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
[2655] | 50 | this.operatorsView = new HeuristicLab.Core.Views.OperatorSetView();
|
---|
| 51 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
[2] | 52 | this.graphGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[2947] | 53 | this.operatorTreeView = new HeuristicLab.Core.Views.OperatorTreeView();
|
---|
[2] | 54 | this.operatorsContextMenuStrip.SuspendLayout();
|
---|
[2655] | 55 | this.splitContainer.Panel1.SuspendLayout();
|
---|
| 56 | this.splitContainer.Panel2.SuspendLayout();
|
---|
| 57 | this.splitContainer.SuspendLayout();
|
---|
[2] | 58 | this.graphGroupBox.SuspendLayout();
|
---|
| 59 | this.SuspendLayout();
|
---|
| 60 | //
|
---|
| 61 | // operatorsContextMenuStrip
|
---|
| 62 | //
|
---|
| 63 | this.operatorsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
[2655] | 64 | this.initialOperatorToolStripMenuItem});
|
---|
[2] | 65 | this.operatorsContextMenuStrip.Name = "operatorsContextMenuStrip";
|
---|
[2655] | 66 | this.operatorsContextMenuStrip.Size = new System.Drawing.Size(154, 26);
|
---|
[2] | 67 | this.operatorsContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.operatorsContextMenuStrip_Opening);
|
---|
| 68 | //
|
---|
| 69 | // initialOperatorToolStripMenuItem
|
---|
| 70 | //
|
---|
| 71 | this.initialOperatorToolStripMenuItem.CheckOnClick = true;
|
---|
| 72 | this.initialOperatorToolStripMenuItem.Name = "initialOperatorToolStripMenuItem";
|
---|
[2655] | 73 | this.initialOperatorToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
|
---|
[2] | 74 | this.initialOperatorToolStripMenuItem.Text = "&Initial Operator";
|
---|
| 75 | this.initialOperatorToolStripMenuItem.ToolTipText = "Set as initial operator";
|
---|
| 76 | this.initialOperatorToolStripMenuItem.Click += new System.EventHandler(this.initialOperatorToolStripMenuItem_Click);
|
---|
| 77 | //
|
---|
[2655] | 78 | // operatorsView
|
---|
[2] | 79 | //
|
---|
[2676] | 80 | this.operatorsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 81 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 82 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2801] | 83 | this.operatorsView.Content = null;
|
---|
[2676] | 84 | this.operatorsView.Location = new System.Drawing.Point(3, 3);
|
---|
[2655] | 85 | this.operatorsView.Name = "operatorsView";
|
---|
[2676] | 86 | this.operatorsView.Size = new System.Drawing.Size(602, 309);
|
---|
[2655] | 87 | this.operatorsView.TabIndex = 0;
|
---|
| 88 | this.operatorsView.Load += new System.EventHandler(this.operatorsView_Load);
|
---|
[2] | 89 | //
|
---|
[2655] | 90 | // splitContainer
|
---|
[2] | 91 | //
|
---|
[2655] | 92 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 93 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
| 94 | this.splitContainer.Name = "splitContainer";
|
---|
| 95 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
[2] | 96 | //
|
---|
[2655] | 97 | // splitContainer.Panel1
|
---|
[2] | 98 | //
|
---|
[2655] | 99 | this.splitContainer.Panel1.Controls.Add(this.operatorsView);
|
---|
[2] | 100 | //
|
---|
[2655] | 101 | // splitContainer.Panel2
|
---|
[2] | 102 | //
|
---|
[2655] | 103 | this.splitContainer.Panel2.Controls.Add(this.graphGroupBox);
|
---|
| 104 | this.splitContainer.Size = new System.Drawing.Size(608, 533);
|
---|
[2676] | 105 | this.splitContainer.SplitterDistance = 315;
|
---|
[2655] | 106 | this.splitContainer.TabIndex = 3;
|
---|
[2] | 107 | //
|
---|
| 108 | // graphGroupBox
|
---|
| 109 | //
|
---|
[2676] | 110 | this.graphGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 111 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 112 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2947] | 113 | this.graphGroupBox.Controls.Add(this.operatorTreeView);
|
---|
[2676] | 114 | this.graphGroupBox.Location = new System.Drawing.Point(3, 3);
|
---|
[2] | 115 | this.graphGroupBox.Name = "graphGroupBox";
|
---|
[2676] | 116 | this.graphGroupBox.Size = new System.Drawing.Size(602, 208);
|
---|
[2] | 117 | this.graphGroupBox.TabIndex = 0;
|
---|
| 118 | this.graphGroupBox.TabStop = false;
|
---|
[2924] | 119 | this.graphGroupBox.Text = "Operator Graph";
|
---|
[2] | 120 | //
|
---|
[2947] | 121 | // operatorTreeView
|
---|
[2801] | 122 | //
|
---|
[2947] | 123 | this.operatorTreeView.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.operatorTreeView.Content = null;
|
---|
| 127 | this.operatorTreeView.Location = new System.Drawing.Point(6, 19);
|
---|
| 128 | this.operatorTreeView.Name = "operatorTreeView";
|
---|
| 129 | this.operatorTreeView.Size = new System.Drawing.Size(590, 183);
|
---|
| 130 | this.operatorTreeView.TabIndex = 0;
|
---|
[2949] | 131 | this.operatorTreeView.SelectedOperatorChanged += new System.EventHandler(this.operatorTreeView_SelectedOperatorChanged);
|
---|
[2801] | 132 | //
|
---|
[2] | 133 | // OperatorGraphView
|
---|
| 134 | //
|
---|
| 135 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7967] | 136 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[2655] | 137 | this.Controls.Add(this.splitContainer);
|
---|
[2] | 138 | this.Name = "OperatorGraphView";
|
---|
[2655] | 139 | this.Size = new System.Drawing.Size(608, 533);
|
---|
[2] | 140 | this.operatorsContextMenuStrip.ResumeLayout(false);
|
---|
[2655] | 141 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 142 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 143 | this.splitContainer.ResumeLayout(false);
|
---|
[2] | 144 | this.graphGroupBox.ResumeLayout(false);
|
---|
| 145 | this.ResumeLayout(false);
|
---|
| 146 |
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | #endregion
|
---|
| 150 |
|
---|
[2676] | 151 | protected System.Windows.Forms.ContextMenuStrip operatorsContextMenuStrip;
|
---|
| 152 | protected System.Windows.Forms.ToolStripMenuItem initialOperatorToolStripMenuItem;
|
---|
| 153 | protected OperatorSetView operatorsView;
|
---|
| 154 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
| 155 | protected System.Windows.Forms.GroupBox graphGroupBox;
|
---|
[2947] | 156 | private OperatorTreeView operatorTreeView;
|
---|
[2] | 157 | }
|
---|
| 158 | }
|
---|