Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL.Backend/HeuristicLab.Problems.GPDL.Views/3.4/GpdlEditor.Designer.cs @ 15737

Last change on this file since 15737 was 9842, checked in by gkronber, 11 years ago

#2026 added rudimentary error checking to GPDL parser ATG. Added GPL license headers to all files. Created a first set of unit tests.

File size: 5.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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
22using System.Windows.Forms;
23using HeuristicLab.MainForm.WindowsForms;
24
25namespace HeuristicLab.Problems.GPDL.Views {
26  partial class GpdlEditor {
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 (disposing && (components != null)) {
38        components.Dispose();
39      }
40      base.Dispose(disposing);
41    }
42
43    #region Component Designer generated code
44
45    /// <summary>
46    /// Required method for Designer support - do not modify
47    /// the contents of this method with the code editor.
48    /// </summary>
49    private void InitializeComponent() {
50      this.compileButton = new System.Windows.Forms.Button();
51      this.splitContainer = new System.Windows.Forms.SplitContainer();
52      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.elementHost = new System.Windows.Forms.Integration.ElementHost();
54      this.codeEditor = new HeuristicLab.Problems.GPDL.Views.CodeEditor();
55      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
56      this.splitContainer.Panel1.SuspendLayout();
57      this.splitContainer.Panel2.SuspendLayout();
58      this.splitContainer.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // compileButton
62      //
63      this.compileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
64      this.compileButton.Location = new System.Drawing.Point(583, 431);
65      this.compileButton.Name = "compileButton";
66      this.compileButton.Size = new System.Drawing.Size(75, 23);
67      this.compileButton.TabIndex = 0;
68      this.compileButton.Text = "Compile";
69      this.compileButton.UseVisualStyleBackColor = true;
70      this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
71      //
72      // splitContainer
73      //
74      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
75      this.splitContainer.IsSplitterFixed = true;
76      this.splitContainer.Location = new System.Drawing.Point(0, 0);
77      this.splitContainer.Name = "splitContainer";
78      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
79      //
80      // splitContainer.Panel1
81      //
82      this.splitContainer.Panel1.Controls.Add(this.viewHost);
83      //
84      // splitContainer.Panel2
85      //
86      this.splitContainer.Panel2.Controls.Add(this.elementHost);
87      this.splitContainer.Panel2.Controls.Add(this.compileButton);
88      this.splitContainer.Size = new System.Drawing.Size(661, 487);
89      this.splitContainer.SplitterDistance = 26;
90      this.splitContainer.TabIndex = 2;
91      //
92      // viewHost
93      //
94      this.viewHost.Caption = "View";
95      this.viewHost.Content = null;
96      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
97      this.viewHost.Enabled = false;
98      this.viewHost.Location = new System.Drawing.Point(0, 0);
99      this.viewHost.Name = "viewHost";
100      this.viewHost.ReadOnly = false;
101      this.viewHost.Size = new System.Drawing.Size(661, 26);
102      this.viewHost.TabIndex = 0;
103      this.viewHost.ViewsLabelVisible = true;
104      this.viewHost.ViewType = null;
105      //
106      // elementHost
107      //
108      this.elementHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
109            | System.Windows.Forms.AnchorStyles.Left)
110            | System.Windows.Forms.AnchorStyles.Right)));
111      this.elementHost.Location = new System.Drawing.Point(0, 0);
112      this.elementHost.Name = "elementHost";
113      this.elementHost.Size = new System.Drawing.Size(661, 425);
114      this.elementHost.TabIndex = 2;
115      this.elementHost.Text = "elementHost2";
116      this.elementHost.Child = this.codeEditor;
117      //
118      // GpdlEditor
119      //
120      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
121      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
122      this.Controls.Add(this.splitContainer);
123      this.Name = "GpdlEditor";
124      this.Size = new System.Drawing.Size(661, 487);
125      this.splitContainer.Panel1.ResumeLayout(false);
126      this.splitContainer.Panel2.ResumeLayout(false);
127      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
128      this.splitContainer.ResumeLayout(false);
129      this.ResumeLayout(false);
130
131    }
132
133    #endregion
134
135    private ViewHost viewHost;
136    private System.Windows.Forms.Button compileButton;
137    private System.Windows.Forms.SplitContainer splitContainer;
138    private System.Windows.Forms.Integration.ElementHost elementHost;
139    private CodeEditor codeEditor;
140  }
141}
Note: See TracBrowser for help on using the repository browser.