Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.Designer.cs @ 2792

Last change on this file since 2792 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 7.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22namespace HeuristicLab.Core.Views {
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) {
34      if (disposing) {
35        if (components != null) 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() {
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();
50      this.operatorsView = new HeuristicLab.Core.Views.OperatorSetView();
51      this.graphView = new HeuristicLab.Core.Views.OperatorTreeView();
52      this.splitContainer = new System.Windows.Forms.SplitContainer();
53      this.graphGroupBox = new System.Windows.Forms.GroupBox();
54      this.operatorsContextMenuStrip.SuspendLayout();
55      this.splitContainer.Panel1.SuspendLayout();
56      this.splitContainer.Panel2.SuspendLayout();
57      this.splitContainer.SuspendLayout();
58      this.graphGroupBox.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // operatorsContextMenuStrip
62      //
63      this.operatorsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
64            this.initialOperatorToolStripMenuItem});
65      this.operatorsContextMenuStrip.Name = "operatorsContextMenuStrip";
66      this.operatorsContextMenuStrip.Size = new System.Drawing.Size(154, 26);
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";
73      this.initialOperatorToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
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      //
78      // operatorsView
79      //
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)));
83      this.operatorsView.Caption = "Operator Set";
84      this.operatorsView.Location = new System.Drawing.Point(3, 3);
85      this.operatorsView.Name = "operatorsView";
86      this.operatorsView.Size = new System.Drawing.Size(602, 309);
87      this.operatorsView.TabIndex = 0;
88      this.operatorsView.Load += new System.EventHandler(this.operatorsView_Load);
89      //
90      // graphView
91      //
92      this.graphView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
93                  | System.Windows.Forms.AnchorStyles.Left)
94                  | System.Windows.Forms.AnchorStyles.Right)));
95      this.graphView.Caption = "Operator";
96      this.graphView.Location = new System.Drawing.Point(6, 19);
97      this.graphView.Name = "graphView";
98      this.graphView.Size = new System.Drawing.Size(590, 183);
99      this.graphView.TabIndex = 0;
100      //
101      // splitContainer
102      //
103      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
104      this.splitContainer.Location = new System.Drawing.Point(0, 0);
105      this.splitContainer.Name = "splitContainer";
106      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
107      //
108      // splitContainer.Panel1
109      //
110      this.splitContainer.Panel1.Controls.Add(this.operatorsView);
111      //
112      // splitContainer.Panel2
113      //
114      this.splitContainer.Panel2.Controls.Add(this.graphGroupBox);
115      this.splitContainer.Size = new System.Drawing.Size(608, 533);
116      this.splitContainer.SplitterDistance = 315;
117      this.splitContainer.TabIndex = 3;
118      //
119      // graphGroupBox
120      //
121      this.graphGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
122                  | System.Windows.Forms.AnchorStyles.Left)
123                  | System.Windows.Forms.AnchorStyles.Right)));
124      this.graphGroupBox.Controls.Add(this.graphView);
125      this.graphGroupBox.Location = new System.Drawing.Point(3, 3);
126      this.graphGroupBox.Name = "graphGroupBox";
127      this.graphGroupBox.Size = new System.Drawing.Size(602, 208);
128      this.graphGroupBox.TabIndex = 0;
129      this.graphGroupBox.TabStop = false;
130      this.graphGroupBox.Text = "Operator &Graph";
131      //
132      // OperatorGraphView
133      //
134      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
135      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
136      this.Controls.Add(this.splitContainer);
137      this.Name = "OperatorGraphView";
138      this.Size = new System.Drawing.Size(608, 533);
139      this.operatorsContextMenuStrip.ResumeLayout(false);
140      this.splitContainer.Panel1.ResumeLayout(false);
141      this.splitContainer.Panel2.ResumeLayout(false);
142      this.splitContainer.ResumeLayout(false);
143      this.graphGroupBox.ResumeLayout(false);
144      this.ResumeLayout(false);
145
146    }
147
148    #endregion
149
150    protected System.Windows.Forms.ContextMenuStrip operatorsContextMenuStrip;
151    protected System.Windows.Forms.ToolStripMenuItem initialOperatorToolStripMenuItem;
152    protected OperatorSetView operatorsView;
153    protected OperatorTreeView graphView;
154    protected System.Windows.Forms.SplitContainer splitContainer;
155    protected System.Windows.Forms.GroupBox graphGroupBox;
156  }
157}
Note: See TracBrowser for help on using the repository browser.