namespace Ob51.AGUITool { partial class MainForm { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.imageList = new System.Windows.Forms.ImageList(this.components); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveXMLDialog = new System.Windows.Forms.SaveFileDialog(); this.tabpageProgram = new System.Windows.Forms.TabPage(); this.tabpageModule = new System.Windows.Forms.TabPage(); this.tabControl = new System.Windows.Forms.TabControl(); this.panel1 = new System.Windows.Forms.Panel(); this.checkboxTextChanged = new System.Windows.Forms.CheckBox(); this.btnSaveXML = new System.Windows.Forms.Button(); this.btnCompile = new System.Windows.Forms.Button(); this.btnOpen = new System.Windows.Forms.Button(); this.panel2 = new System.Windows.Forms.Panel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.textSourceBox = new System.Windows.Forms.TextBox(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.treeModuleView = new System.Windows.Forms.TreeView(); this.textXMLBox = new System.Windows.Forms.TextBox(); this.panel3 = new System.Windows.Forms.Panel(); this.panel4 = new System.Windows.Forms.Panel(); this.splitContainer3 = new System.Windows.Forms.SplitContainer(); this.treeProgramView = new System.Windows.Forms.TreeView(); this.splitContainer4 = new System.Windows.Forms.SplitContainer(); this.treeProcessedView = new System.Windows.Forms.TreeView(); this.textProgramOutput = new System.Windows.Forms.TextBox(); this.btnResetProgram = new System.Windows.Forms.Button(); this.btnAddBuiltins = new System.Windows.Forms.Button(); this.btnAddToProgram = new System.Windows.Forms.Button(); this.btnProgramToXML = new System.Windows.Forms.Button(); this.btnLink = new System.Windows.Forms.Button(); this.btnSemanticsAnalyze = new System.Windows.Forms.Button(); this.tabpageProgram.SuspendLayout(); this.tabpageModule.SuspendLayout(); this.tabControl.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.panel3.SuspendLayout(); this.panel4.SuspendLayout(); this.splitContainer3.Panel1.SuspendLayout(); this.splitContainer3.Panel2.SuspendLayout(); this.splitContainer3.SuspendLayout(); this.splitContainer4.Panel1.SuspendLayout(); this.splitContainer4.Panel2.SuspendLayout(); this.splitContainer4.SuspendLayout(); this.SuspendLayout(); // // imageList // this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream"))); this.imageList.TransparentColor = System.Drawing.Color.Magenta; this.imageList.Images.SetKeyName(0, "Open"); this.imageList.Images.SetKeyName(1, "Code"); this.imageList.Images.SetKeyName(2, "Save"); this.imageList.Images.SetKeyName(3, "Reset"); this.imageList.Images.SetKeyName(4, "AddBuiltins"); this.imageList.Images.SetKeyName(5, "ToXML"); this.imageList.Images.SetKeyName(6, "ModuleToProgram"); this.imageList.Images.SetKeyName(7, "Link"); this.imageList.Images.SetKeyName(8, "Semantics"); this.imageList.Images.SetKeyName(9, "Refresh"); this.imageList.Images.SetKeyName(10, "RightArrow2"); this.imageList.Images.SetKeyName(11, "RightArrow"); this.imageList.Images.SetKeyName(12, "GoLtr"); this.imageList.Images.SetKeyName(13, "GoToNext"); this.imageList.Images.SetKeyName(14, "Play"); this.imageList.Images.SetKeyName(15, "DeleteTable"); // // openFileDialog // this.openFileDialog.DefaultExt = "ob51"; this.openFileDialog.Filter = "Ob51 sources|*.ob51|All files|*"; this.openFileDialog.RestoreDirectory = true; this.openFileDialog.Title = "Choose Ob51 source to open"; // // saveXMLDialog // this.saveXMLDialog.DefaultExt = "xml"; this.saveXMLDialog.Filter = "XML files|*.xml|All files|*"; this.saveXMLDialog.RestoreDirectory = true; // // tabpageProgram // this.tabpageProgram.Controls.Add(this.panel4); this.tabpageProgram.Controls.Add(this.panel3); this.tabpageProgram.Location = new System.Drawing.Point(4, 22); this.tabpageProgram.Name = "tabpageProgram"; this.tabpageProgram.Padding = new System.Windows.Forms.Padding(3); this.tabpageProgram.Size = new System.Drawing.Size(866, 532); this.tabpageProgram.TabIndex = 1; this.tabpageProgram.Text = "Whole program"; this.tabpageProgram.UseVisualStyleBackColor = true; // // tabpageModule // this.tabpageModule.Controls.Add(this.panel2); this.tabpageModule.Controls.Add(this.panel1); this.tabpageModule.Location = new System.Drawing.Point(4, 22); this.tabpageModule.Name = "tabpageModule"; this.tabpageModule.Padding = new System.Windows.Forms.Padding(3); this.tabpageModule.Size = new System.Drawing.Size(866, 532); this.tabpageModule.TabIndex = 0; this.tabpageModule.Text = "Single module"; this.tabpageModule.UseVisualStyleBackColor = true; // // tabControl // this.tabControl.Controls.Add(this.tabpageModule); this.tabControl.Controls.Add(this.tabpageProgram); this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl.Location = new System.Drawing.Point(0, 0); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(874, 558); this.tabControl.TabIndex = 5; // // panel1 // this.panel1.Controls.Add(this.btnAddToProgram); this.panel1.Controls.Add(this.checkboxTextChanged); this.panel1.Controls.Add(this.btnSaveXML); this.panel1.Controls.Add(this.btnCompile); this.panel1.Controls.Add(this.btnOpen); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(3, 3); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(860, 30); this.panel1.TabIndex = 7; // // checkboxTextChanged // this.checkboxTextChanged.AutoCheck = false; this.checkboxTextChanged.Location = new System.Drawing.Point(102, 6); this.checkboxTextChanged.Name = "checkboxTextChanged"; this.checkboxTextChanged.Size = new System.Drawing.Size(68, 19); this.checkboxTextChanged.TabIndex = 1; this.checkboxTextChanged.Text = "changed"; this.checkboxTextChanged.UseCompatibleTextRendering = true; this.checkboxTextChanged.UseMnemonic = false; this.checkboxTextChanged.UseVisualStyleBackColor = true; // // btnSaveXML // this.btnSaveXML.Enabled = false; this.btnSaveXML.ImageKey = "Save"; this.btnSaveXML.ImageList = this.imageList; this.btnSaveXML.Location = new System.Drawing.Point(531, 3); this.btnSaveXML.Name = "btnSaveXML"; this.btnSaveXML.Size = new System.Drawing.Size(126, 23); this.btnSaveXML.TabIndex = 3; this.btnSaveXML.Text = "&Save XML to file"; this.btnSaveXML.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnSaveXML.UseVisualStyleBackColor = true; this.btnSaveXML.Click += new System.EventHandler(this.btnSaveXML_Click); // // btnCompile // this.btnCompile.ImageKey = "Code"; this.btnCompile.ImageList = this.imageList; this.btnCompile.Location = new System.Drawing.Point(236, 3); this.btnCompile.Name = "btnCompile"; this.btnCompile.Size = new System.Drawing.Size(75, 23); this.btnCompile.TabIndex = 2; this.btnCompile.Text = "&Compile"; this.btnCompile.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.btnCompile.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnCompile.UseVisualStyleBackColor = true; this.btnCompile.Click += new System.EventHandler(this.btnCompile_Click); // // btnOpen // this.btnOpen.ImageKey = "Open"; this.btnOpen.ImageList = this.imageList; this.btnOpen.Location = new System.Drawing.Point(12, 3); this.btnOpen.Name = "btnOpen"; this.btnOpen.Size = new System.Drawing.Size(75, 23); this.btnOpen.TabIndex = 0; this.btnOpen.Text = "&Open"; this.btnOpen.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnOpen.UseVisualStyleBackColor = true; this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click); // // panel2 // this.panel2.Controls.Add(this.splitContainer1); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(3, 33); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(860, 496); this.panel2.TabIndex = 8; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.textSourceBox); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); this.splitContainer1.Size = new System.Drawing.Size(860, 496); this.splitContainer1.SplitterDistance = 265; this.splitContainer1.TabIndex = 7; // // textSourceBox // this.textSourceBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textSourceBox.Location = new System.Drawing.Point(0, 0); this.textSourceBox.Multiline = true; this.textSourceBox.Name = "textSourceBox"; this.textSourceBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textSourceBox.Size = new System.Drawing.Size(265, 496); this.textSourceBox.TabIndex = 0; this.textSourceBox.TextChanged += new System.EventHandler(this.textSourceBox_TextChanged); // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.treeModuleView); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.textXMLBox); this.splitContainer2.Size = new System.Drawing.Size(591, 496); this.splitContainer2.SplitterDistance = 258; this.splitContainer2.TabIndex = 0; // // treeModuleView // this.treeModuleView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeModuleView.Location = new System.Drawing.Point(0, 0); this.treeModuleView.Name = "treeModuleView"; this.treeModuleView.ShowNodeToolTips = true; this.treeModuleView.Size = new System.Drawing.Size(258, 496); this.treeModuleView.TabIndex = 0; // // textXMLBox // this.textXMLBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textXMLBox.Location = new System.Drawing.Point(0, 0); this.textXMLBox.Multiline = true; this.textXMLBox.Name = "textXMLBox"; this.textXMLBox.ReadOnly = true; this.textXMLBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textXMLBox.Size = new System.Drawing.Size(329, 496); this.textXMLBox.TabIndex = 0; this.textXMLBox.WordWrap = false; // // panel3 // this.panel3.Controls.Add(this.btnSemanticsAnalyze); this.panel3.Controls.Add(this.btnLink); this.panel3.Controls.Add(this.btnProgramToXML); this.panel3.Controls.Add(this.btnAddBuiltins); this.panel3.Controls.Add(this.btnResetProgram); this.panel3.Dock = System.Windows.Forms.DockStyle.Top; this.panel3.Location = new System.Drawing.Point(3, 3); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(860, 30); this.panel3.TabIndex = 0; // // panel4 // this.panel4.Controls.Add(this.splitContainer3); this.panel4.Dock = System.Windows.Forms.DockStyle.Fill; this.panel4.Location = new System.Drawing.Point(3, 33); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(860, 496); this.panel4.TabIndex = 1; // // splitContainer3 // this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer3.Location = new System.Drawing.Point(0, 0); this.splitContainer3.Name = "splitContainer3"; // // splitContainer3.Panel1 // this.splitContainer3.Panel1.Controls.Add(this.treeProgramView); // // splitContainer3.Panel2 // this.splitContainer3.Panel2.Controls.Add(this.splitContainer4); this.splitContainer3.Size = new System.Drawing.Size(860, 496); this.splitContainer3.SplitterDistance = 244; this.splitContainer3.TabIndex = 0; // // treeProgramView // this.treeProgramView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeProgramView.Location = new System.Drawing.Point(0, 0); this.treeProgramView.Name = "treeProgramView"; this.treeProgramView.ShowNodeToolTips = true; this.treeProgramView.Size = new System.Drawing.Size(244, 496); this.treeProgramView.TabIndex = 1; // // splitContainer4 // this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer4.Location = new System.Drawing.Point(0, 0); this.splitContainer4.Name = "splitContainer4"; // // splitContainer4.Panel1 // this.splitContainer4.Panel1.Controls.Add(this.treeProcessedView); // // splitContainer4.Panel2 // this.splitContainer4.Panel2.Controls.Add(this.textProgramOutput); this.splitContainer4.Size = new System.Drawing.Size(612, 496); this.splitContainer4.SplitterDistance = 244; this.splitContainer4.TabIndex = 0; // // treeProcessedView // this.treeProcessedView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeProcessedView.Location = new System.Drawing.Point(0, 0); this.treeProcessedView.Name = "treeProcessedView"; this.treeProcessedView.ShowNodeToolTips = true; this.treeProcessedView.Size = new System.Drawing.Size(244, 496); this.treeProcessedView.TabIndex = 2; // // textProgramOutput // this.textProgramOutput.Dock = System.Windows.Forms.DockStyle.Fill; this.textProgramOutput.Location = new System.Drawing.Point(0, 0); this.textProgramOutput.Multiline = true; this.textProgramOutput.Name = "textProgramOutput"; this.textProgramOutput.ReadOnly = true; this.textProgramOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textProgramOutput.Size = new System.Drawing.Size(364, 496); this.textProgramOutput.TabIndex = 0; this.textProgramOutput.WordWrap = false; // // btnResetProgram // this.btnResetProgram.ImageKey = "Reset"; this.btnResetProgram.ImageList = this.imageList; this.btnResetProgram.Location = new System.Drawing.Point(0, 3); this.btnResetProgram.Name = "btnResetProgram"; this.btnResetProgram.Size = new System.Drawing.Size(75, 23); this.btnResetProgram.TabIndex = 0; this.btnResetProgram.Text = "&Reset"; this.btnResetProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnResetProgram.UseVisualStyleBackColor = true; this.btnResetProgram.Click += new System.EventHandler(this.btnResetProgram_Click); // // btnAddBuiltins // this.btnAddBuiltins.ImageKey = "AddBuiltins"; this.btnAddBuiltins.ImageList = this.imageList; this.btnAddBuiltins.Location = new System.Drawing.Point(81, 3); this.btnAddBuiltins.Name = "btnAddBuiltins"; this.btnAddBuiltins.Size = new System.Drawing.Size(89, 23); this.btnAddBuiltins.TabIndex = 1; this.btnAddBuiltins.Text = "Add &builtins"; this.btnAddBuiltins.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnAddBuiltins.UseVisualStyleBackColor = true; this.btnAddBuiltins.Click += new System.EventHandler(this.btnAddBuiltins_Click); // // btnAddToProgram // this.btnAddToProgram.Enabled = false; this.btnAddToProgram.ImageKey = "ModuleToProgram"; this.btnAddToProgram.ImageList = this.imageList; this.btnAddToProgram.Location = new System.Drawing.Point(740, 3); this.btnAddToProgram.Name = "btnAddToProgram"; this.btnAddToProgram.Size = new System.Drawing.Size(115, 23); this.btnAddToProgram.TabIndex = 4; this.btnAddToProgram.Text = "Add to &program"; this.btnAddToProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnAddToProgram.UseVisualStyleBackColor = true; this.btnAddToProgram.Click += new System.EventHandler(this.btnAddToProgram_Click); // // btnProgramToXML // this.btnProgramToXML.ImageKey = "ToXML"; this.btnProgramToXML.ImageList = this.imageList; this.btnProgramToXML.Location = new System.Drawing.Point(191, 3); this.btnProgramToXML.Name = "btnProgramToXML"; this.btnProgramToXML.Size = new System.Drawing.Size(53, 23); this.btnProgramToXML.TabIndex = 2; this.btnProgramToXML.Text = "XML"; this.btnProgramToXML.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnProgramToXML.UseVisualStyleBackColor = true; this.btnProgramToXML.Click += new System.EventHandler(this.btnProgramToXML_Click); // // btnLink // this.btnLink.ImageKey = "Link"; this.btnLink.ImageList = this.imageList; this.btnLink.Location = new System.Drawing.Point(265, 3); this.btnLink.Name = "btnLink"; this.btnLink.Size = new System.Drawing.Size(58, 23); this.btnLink.TabIndex = 3; this.btnLink.Text = "&Link"; this.btnLink.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnLink.UseVisualStyleBackColor = true; this.btnLink.Click += new System.EventHandler(this.btnLink_Click); // // btnSemanticsAnalyze // this.btnSemanticsAnalyze.ImageKey = "Semantics"; this.btnSemanticsAnalyze.ImageList = this.imageList; this.btnSemanticsAnalyze.Location = new System.Drawing.Point(329, 3); this.btnSemanticsAnalyze.Name = "btnSemanticsAnalyze"; this.btnSemanticsAnalyze.Size = new System.Drawing.Size(163, 23); this.btnSemanticsAnalyze.TabIndex = 4; this.btnSemanticsAnalyze.Text = "Link && analyze &semantics"; this.btnSemanticsAnalyze.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.btnSemanticsAnalyze.UseVisualStyleBackColor = true; this.btnSemanticsAnalyze.Click += new System.EventHandler(this.btnSemanticsAnalyze_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(874, 558); this.Controls.Add(this.tabControl); this.Name = "MainForm"; this.Text = "Ob51 compiler GUI driver"; this.tabpageProgram.ResumeLayout(false); this.tabpageModule.ResumeLayout(false); this.tabControl.ResumeLayout(false); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.Panel2.PerformLayout(); this.splitContainer2.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel4.ResumeLayout(false); this.splitContainer3.Panel1.ResumeLayout(false); this.splitContainer3.Panel2.ResumeLayout(false); this.splitContainer3.ResumeLayout(false); this.splitContainer4.Panel1.ResumeLayout(false); this.splitContainer4.Panel2.ResumeLayout(false); this.splitContainer4.Panel2.PerformLayout(); this.splitContainer4.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.OpenFileDialog openFileDialog; private System.Windows.Forms.ImageList imageList; private System.Windows.Forms.SaveFileDialog saveXMLDialog; private System.Windows.Forms.TabPage tabpageProgram; private System.Windows.Forms.TabPage tabpageModule; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.TextBox textSourceBox; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.TreeView treeModuleView; private System.Windows.Forms.TextBox textXMLBox; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.CheckBox checkboxTextChanged; private System.Windows.Forms.Button btnSaveXML; private System.Windows.Forms.Button btnCompile; private System.Windows.Forms.Button btnOpen; private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.Panel panel3; private System.Windows.Forms.Panel panel4; private System.Windows.Forms.SplitContainer splitContainer3; private System.Windows.Forms.TreeView treeProgramView; private System.Windows.Forms.SplitContainer splitContainer4; private System.Windows.Forms.TreeView treeProcessedView; private System.Windows.Forms.TextBox textProgramOutput; private System.Windows.Forms.Button btnResetProgram; private System.Windows.Forms.Button btnAddBuiltins; private System.Windows.Forms.Button btnAddToProgram; private System.Windows.Forms.Button btnProgramToXML; private System.Windows.Forms.Button btnSemanticsAnalyze; private System.Windows.Forms.Button btnLink; } }