#region License Information
/* HeuristicLab
* Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System.Windows.Forms;
using HeuristicLab.MainForm.WindowsForms;
namespace HeuristicLab.Problems.GPDL.Views {
partial class GpdlEditor {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.compileButton = new System.Windows.Forms.Button();
this.splitContainer = new System.Windows.Forms.SplitContainer();
this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
this.elementHost = new System.Windows.Forms.Integration.ElementHost();
this.codeEditor = new HeuristicLab.Problems.GPDL.Views.CodeEditor();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.SuspendLayout();
//
// compileButton
//
this.compileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.compileButton.Location = new System.Drawing.Point(583, 431);
this.compileButton.Name = "compileButton";
this.compileButton.Size = new System.Drawing.Size(75, 23);
this.compileButton.TabIndex = 0;
this.compileButton.Text = "Compile";
this.compileButton.UseVisualStyleBackColor = true;
this.compileButton.Click += new System.EventHandler(this.compileButton_Click);
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.IsSplitterFixed = true;
this.splitContainer.Location = new System.Drawing.Point(0, 0);
this.splitContainer.Name = "splitContainer";
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.viewHost);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.elementHost);
this.splitContainer.Panel2.Controls.Add(this.compileButton);
this.splitContainer.Size = new System.Drawing.Size(661, 487);
this.splitContainer.SplitterDistance = 26;
this.splitContainer.TabIndex = 2;
//
// viewHost
//
this.viewHost.Caption = "View";
this.viewHost.Content = null;
this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
this.viewHost.Enabled = false;
this.viewHost.Location = new System.Drawing.Point(0, 0);
this.viewHost.Name = "viewHost";
this.viewHost.ReadOnly = false;
this.viewHost.Size = new System.Drawing.Size(661, 26);
this.viewHost.TabIndex = 0;
this.viewHost.ViewsLabelVisible = true;
this.viewHost.ViewType = null;
//
// elementHost
//
this.elementHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.elementHost.Location = new System.Drawing.Point(0, 0);
this.elementHost.Name = "elementHost";
this.elementHost.Size = new System.Drawing.Size(661, 425);
this.elementHost.TabIndex = 2;
this.elementHost.Text = "elementHost2";
this.elementHost.Child = this.codeEditor;
//
// GpdlEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer);
this.Name = "GpdlEditor";
this.Size = new System.Drawing.Size(661, 487);
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private ViewHost viewHost;
private System.Windows.Forms.Button compileButton;
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.Integration.ElementHost elementHost;
private CodeEditor codeEditor;
}
}