Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionGrammarEditorView.Designer.cs @ 6403

Last change on this file since 6403 was 6403, checked in by mkommend, 13 years ago

#1479: Allowed modificiation of the subtree count in grammars and adapted SymbolicExpressionTreeChart to handle different styles for connection lines.

File size: 12.8 KB
Line 
1namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
2  partial class SymbolicExpressionGrammarEditorView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SymbolicExpressionGrammarEditorView));
28      this.grpSymbols = new System.Windows.Forms.GroupBox();
29      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
30      this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
31      this.removeButton = new System.Windows.Forms.Button();
32      this.addButton = new System.Windows.Forms.Button();
33      this.symbolsTreeView = new System.Windows.Forms.TreeView();
34      this.imageList = new System.Windows.Forms.ImageList(this.components);
35      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
36      this.allowedChildSymbolsControl = new HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views.SymbolicExpressionTreeChart();
37      this.symbolDetailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
38      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
39      this.grpSymbols.SuspendLayout();
40      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
41      this.splitContainer1.Panel1.SuspendLayout();
42      this.splitContainer1.Panel2.SuspendLayout();
43      this.splitContainer1.SuspendLayout();
44      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
45      this.splitContainer2.Panel1.SuspendLayout();
46      this.splitContainer2.Panel2.SuspendLayout();
47      this.splitContainer2.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // nameTextBox
51      //
52      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
53      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
54      this.nameTextBox.Size = new System.Drawing.Size(686, 20);
55      //
56      // infoLabel
57      //
58      this.infoLabel.Location = new System.Drawing.Point(750, 3);
59      //
60      // grpSymbols
61      //
62      this.grpSymbols.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
63            | System.Windows.Forms.AnchorStyles.Left)
64            | System.Windows.Forms.AnchorStyles.Right)));
65      this.grpSymbols.Controls.Add(this.splitContainer1);
66      this.grpSymbols.Location = new System.Drawing.Point(0, 26);
67      this.grpSymbols.Name = "grpSymbols";
68      this.grpSymbols.Size = new System.Drawing.Size(769, 378);
69      this.grpSymbols.TabIndex = 3;
70      this.grpSymbols.TabStop = false;
71      this.grpSymbols.Text = "Symbols";
72      //
73      // splitContainer1
74      //
75      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
76      this.splitContainer1.Location = new System.Drawing.Point(3, 16);
77      this.splitContainer1.Name = "splitContainer1";
78      //
79      // splitContainer1.Panel1
80      //
81      this.splitContainer1.Panel1.Controls.Add(this.showDetailsCheckBox);
82      this.splitContainer1.Panel1.Controls.Add(this.removeButton);
83      this.splitContainer1.Panel1.Controls.Add(this.addButton);
84      this.splitContainer1.Panel1.Controls.Add(this.symbolsTreeView);
85      //
86      // splitContainer1.Panel2
87      //
88      this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
89      this.splitContainer1.Size = new System.Drawing.Size(763, 359);
90      this.splitContainer1.SplitterDistance = 191;
91      this.splitContainer1.TabIndex = 0;
92      //
93      // showDetailsCheckBox
94      //
95      this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
96      this.showDetailsCheckBox.Checked = true;
97      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
98      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
99      this.showDetailsCheckBox.Location = new System.Drawing.Point(63, 3);
100      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
101      this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
102      this.showDetailsCheckBox.TabIndex = 7;
103      this.toolTip.SetToolTip(this.showDetailsCheckBox, "Show/Hide Details");
104      this.showDetailsCheckBox.UseVisualStyleBackColor = true;
105      this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
106      //
107      // removeButton
108      //
109      this.removeButton.Enabled = false;
110      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
111      this.removeButton.Location = new System.Drawing.Point(33, 3);
112      this.removeButton.Name = "removeButton";
113      this.removeButton.Size = new System.Drawing.Size(24, 24);
114      this.removeButton.TabIndex = 6;
115      this.toolTip.SetToolTip(this.removeButton, "Remove");
116      this.removeButton.UseVisualStyleBackColor = true;
117      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
118      //
119      // addButton
120      //
121      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
122      this.addButton.Location = new System.Drawing.Point(3, 3);
123      this.addButton.Name = "addButton";
124      this.addButton.Size = new System.Drawing.Size(24, 24);
125      this.addButton.TabIndex = 5;
126      this.toolTip.SetToolTip(this.addButton, "Add");
127      this.addButton.UseVisualStyleBackColor = true;
128      this.addButton.Click += new System.EventHandler(this.addButton_Click);
129      //
130      // symbolsTreeView
131      //
132      this.symbolsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
133            | System.Windows.Forms.AnchorStyles.Left)
134            | System.Windows.Forms.AnchorStyles.Right)));
135      this.symbolsTreeView.CheckBoxes = true;
136      this.symbolsTreeView.ImageIndex = 0;
137      this.symbolsTreeView.ImageList = this.imageList;
138      this.symbolsTreeView.Location = new System.Drawing.Point(3, 28);
139      this.symbolsTreeView.Name = "symbolsTreeView";
140      this.symbolsTreeView.SelectedImageIndex = 0;
141      this.symbolsTreeView.Size = new System.Drawing.Size(185, 331);
142      this.symbolsTreeView.TabIndex = 0;
143      this.symbolsTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.symbolsTreeView_AfterCheck);
144      this.symbolsTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.symbolsTreeView_ItemDrag);
145      this.symbolsTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.symbolsTreeView_AfterSelect);
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      // splitContainer2
154      //
155      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
156      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
157      this.splitContainer2.Name = "splitContainer2";
158      this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
159      //
160      // splitContainer2.Panel1
161      //
162      this.splitContainer2.Panel1.Controls.Add(this.allowedChildSymbolsControl);
163      //
164      // splitContainer2.Panel2
165      //
166      this.splitContainer2.Panel2.Controls.Add(this.symbolDetailsViewHost);
167      this.splitContainer2.Size = new System.Drawing.Size(568, 359);
168      this.splitContainer2.SplitterDistance = 165;
169      this.splitContainer2.TabIndex = 0;
170      //
171      // allowedChildSymbolsControl
172      //
173      this.allowedChildSymbolsControl.AllowDrop = true;
174      this.allowedChildSymbolsControl.BackgroundColor = System.Drawing.Color.White;
175      this.allowedChildSymbolsControl.Dock = System.Windows.Forms.DockStyle.Fill;
176      this.allowedChildSymbolsControl.LineColor = System.Drawing.Color.Black;
177      this.allowedChildSymbolsControl.Location = new System.Drawing.Point(0, 0);
178      this.allowedChildSymbolsControl.Name = "allowedChildSymbolsControl";
179      this.allowedChildSymbolsControl.Size = new System.Drawing.Size(568, 165);
180      this.allowedChildSymbolsControl.Spacing = 5;
181      this.allowedChildSymbolsControl.TabIndex = 0;
182      this.allowedChildSymbolsControl.TextFont = new System.Drawing.Font("Times New Roman", 8F);
183      this.allowedChildSymbolsControl.Tree = null;
184      this.allowedChildSymbolsControl.SymbolicExpressionTreeNodeClicked += new System.Windows.Forms.MouseEventHandler(this.symbolicExpressionTreeChart_SymbolicExpressionTreeNodeClicked);
185      this.allowedChildSymbolsControl.DragDrop += new System.Windows.Forms.DragEventHandler(this.symbolicExpressionTreeChart_DragDrop);
186      this.allowedChildSymbolsControl.DragEnter += new System.Windows.Forms.DragEventHandler(this.symbolicExpressionTreeChart_DragEnter);
187      this.allowedChildSymbolsControl.DragOver += new System.Windows.Forms.DragEventHandler(this.symbolicExpressionTreeChart_DragOver);
188      this.allowedChildSymbolsControl.Paint += new System.Windows.Forms.PaintEventHandler(this.allowedChildSymbolsControl_Paint);
189      this.allowedChildSymbolsControl.KeyDown += new System.Windows.Forms.KeyEventHandler(this.symbolicExpressionTreeChart_KeyDown);
190      this.allowedChildSymbolsControl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.allowedChildSymbolsControl_MouseDown);
191      //
192      // symbolDetailsViewHost
193      //
194      this.symbolDetailsViewHost.Caption = "View";
195      this.symbolDetailsViewHost.Content = null;
196      this.symbolDetailsViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
197      this.symbolDetailsViewHost.Enabled = false;
198      this.symbolDetailsViewHost.Location = new System.Drawing.Point(0, 0);
199      this.symbolDetailsViewHost.Name = "symbolDetailsViewHost";
200      this.symbolDetailsViewHost.ReadOnly = false;
201      this.symbolDetailsViewHost.Size = new System.Drawing.Size(568, 190);
202      this.symbolDetailsViewHost.TabIndex = 0;
203      this.symbolDetailsViewHost.ViewsLabelVisible = true;
204      this.symbolDetailsViewHost.ViewType = null;
205      //
206      // SymbolicExpressionGrammarEditorView
207      //
208      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
209      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
210      this.Controls.Add(this.grpSymbols);
211      this.Name = "SymbolicExpressionGrammarEditorView";
212      this.Size = new System.Drawing.Size(769, 404);
213      this.Controls.SetChildIndex(this.grpSymbols, 0);
214      this.Controls.SetChildIndex(this.nameLabel, 0);
215      this.Controls.SetChildIndex(this.nameTextBox, 0);
216      this.Controls.SetChildIndex(this.infoLabel, 0);
217      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
218      this.grpSymbols.ResumeLayout(false);
219      this.splitContainer1.Panel1.ResumeLayout(false);
220      this.splitContainer1.Panel2.ResumeLayout(false);
221      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
222      this.splitContainer1.ResumeLayout(false);
223      this.splitContainer2.Panel1.ResumeLayout(false);
224      this.splitContainer2.Panel2.ResumeLayout(false);
225      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
226      this.splitContainer2.ResumeLayout(false);
227      this.ResumeLayout(false);
228      this.PerformLayout();
229
230    }
231    #endregion
232
233    private System.Windows.Forms.GroupBox grpSymbols;
234    private System.Windows.Forms.SplitContainer splitContainer1;
235    private System.Windows.Forms.TreeView symbolsTreeView;
236    private System.Windows.Forms.SplitContainer splitContainer2;
237    private SymbolicExpressionTreeChart allowedChildSymbolsControl;
238    private MainForm.WindowsForms.ViewHost symbolDetailsViewHost;
239    private System.Windows.Forms.ImageList imageList;
240    protected System.Windows.Forms.CheckBox showDetailsCheckBox;
241    protected System.Windows.Forms.Button removeButton;
242    protected System.Windows.Forms.Button addButton;
243  }
244}
Note: See TracBrowser for help on using the repository browser.