diff --git a/trunk/Editor/SyntaxRichTextBox.cs b/trunk/Editor/SyntaxRichTextBox.cs index 8bb22fa..6f696bc 100644 --- a/trunk/Editor/SyntaxRichTextBox.cs +++ b/trunk/Editor/SyntaxRichTextBox.cs @@ -2020,7 +2020,59 @@ namespace LSLEditor EndUpdate(); } } + public void doOutline() + { + //TODO: finish the outline class and such + // still a work in progress trying to figure out exactly how i wanna do this. + int len = this.Lines.Length; + if (len < 1) + { + return; + } + Dictionary list = new Dictionary(); + using (StringReader reader = new StringReader(this.Text)) + { + string line; + + int lineNumber = 0; + while ((line = reader.ReadLine()) != null) + { + string[] words = line.Split(' '); + foreach (string word in words) + { + if (keyWords.ContainsKeyWord(word)) + { + KeyWordInfo k = keyWords.GetKeyWordInfo(word); + switch (k.type) + { + case KeyWordTypeEnum.Functions: + list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber)); + break; + case KeyWordTypeEnum.Events: + break; + case KeyWordTypeEnum.Constants: + break; + case KeyWordTypeEnum.Class: + break; + case KeyWordTypeEnum.Vars: + break; + default: + + break; + } + + } + } + lineNumber++; + + } + } + //TODO: parse dict and create the outline in the treeview + + + + } public void SaveCurrentFile(string strPath) { try diff --git a/trunk/Helpers/OutlineHelper.cs b/trunk/Helpers/OutlineHelper.cs new file mode 100644 index 0000000..fc7d03e --- /dev/null +++ b/trunk/Helpers/OutlineHelper.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace LSLEditor.Helpers +{ + class OutlineHelper + { + public KeyWordInfo info; + public int line; + public OutlineHelper(KeyWordInfo i, int l) + { + this.info = i; + this.line = l; + } + } +} diff --git a/trunk/LSLEditorForm.Designer.cs b/trunk/LSLEditorForm.Designer.cs index 8266777..dccf5db 100644 --- a/trunk/LSLEditorForm.Designer.cs +++ b/trunk/LSLEditorForm.Designer.cs @@ -28,133 +28,136 @@ namespace LSLEditor /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LSLEditorForm)); - this.menuStrip1 = new System.Windows.Forms.MenuStrip(); - this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.newProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.newFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.notecardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.openProjectSolutionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.openFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); - this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.newProjectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator(); - this.existingProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.addToolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); - this.closeFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.closeSolutiontoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator(); - this.importExampleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SaveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.pageSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.printPreviewtoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.copyToClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); - this.recentFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.recentProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator(); - this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); - this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); - this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); - this.FindtoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.findToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.findNextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator(); - this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.formatDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.formatSelectedTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.commentInToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.uncommentingSelectedTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); - this.solutionExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.projectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.addNewObjecttoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.addNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.buildToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator(); - this.syntaxCheckerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); - this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.horizontalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.verticalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.cascadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); - this.ArangeIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); - this.browserInWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WikiSepBrowserstoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator(); - this.tabbedViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.closeActiveWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.indexToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.helpKeywordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); - this.checkForUpdatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); - this.ReleaseNotesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); - this.makeBugReporttoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator(); - this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator(); - this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); - this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); - this.statusStrip1 = new System.Windows.Forms.StatusStrip(); - this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); - this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); - this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.panel2 = new System.Windows.Forms.Panel(); - this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components); - this.tabPage1 = new System.Windows.Forms.TabPage(); - this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer(); - this.splitter2 = new System.Windows.Forms.Splitter(); - this.panel1 = new System.Windows.Forms.Panel(); - this.splitter1 = new System.Windows.Forms.Splitter(); - this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog(); - this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components); - this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog(); - this.menuStrip1.SuspendLayout(); - this.statusStrip1.SuspendLayout(); - this.contextMenuStrip1.SuspendLayout(); - this.panel2.SuspendLayout(); - this.tabControlExtended2.SuspendLayout(); - this.tabPage1.SuspendLayout(); - this.SuspendLayout(); - // - // menuStrip1 - // - this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LSLEditorForm)); + this.menuStrip1 = new System.Windows.Forms.MenuStrip(); + this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.notecardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.openProjectSolutionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.openFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); + this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newProjectToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator(); + this.existingProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.addToolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); + this.closeFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.closeSolutiontoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator(); + this.importExampleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SaveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.pageSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.printPreviewtoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.copyToClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.recentFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.recentProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator(); + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); + this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); + this.FindtoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.findToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.findNextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator(); + this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.formatDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.formatSelectedTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.commentInToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.uncommentingSelectedTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.solutionExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.projectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.addNewObjecttoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.addNewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.buildToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.stopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator(); + this.syntaxCheckerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); + this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.horizontalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.verticalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.cascadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator(); + this.ArangeIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); + this.browserInWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WikiSepBrowserstoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator(); + this.tabbedViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.closeActiveWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.indexToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.helpKeywordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); + this.checkForUpdatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); + this.ReleaseNotesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); + this.makeBugReporttoolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator(); + this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); + this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.panel2 = new System.Windows.Forms.Panel(); + this.splitter2 = new System.Windows.Forms.Splitter(); + this.panel1 = new System.Windows.Forms.Panel(); + this.splitter1 = new System.Windows.Forms.Splitter(); + this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog(); + this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog(); + this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components); + this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer(); + this.outline = new System.Windows.Forms.TabPage(); + this.treeView1 = new System.Windows.Forms.TreeView(); + this.menuStrip1.SuspendLayout(); + this.statusStrip1.SuspendLayout(); + this.contextMenuStrip1.SuspendLayout(); + this.panel2.SuspendLayout(); + this.tabControlExtended2.SuspendLayout(); + this.tabPage1.SuspendLayout(); + this.outline.SuspendLayout(); + this.SuspendLayout(); + // + // menuStrip1 + // + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem, this.toolStripMenuItem2, @@ -163,15 +166,15 @@ namespace LSLEditor this.toolStripMenuItem3, this.viewToolStripMenuItem, this.helpToolStripMenuItem}); - this.menuStrip1.Location = new System.Drawing.Point(0, 0); - this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.Size = new System.Drawing.Size(742, 24); - this.menuStrip1.TabIndex = 0; - this.menuStrip1.Text = "menuStrip1"; - // - // fileToolStripMenuItem - // - this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.Size = new System.Drawing.Size(742, 24); + this.menuStrip1.TabIndex = 0; + this.menuStrip1.Text = "menuStrip1"; + // + // fileToolStripMenuItem + // + this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, this.openToolStripMenuItem, this.toolStripSeparator5, @@ -196,247 +199,247 @@ namespace LSLEditor this.recentProjectToolStripMenuItem, this.toolStripSeparator21, this.exitToolStripMenuItem}); - this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; - this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); - this.fileToolStripMenuItem.Text = "File"; - this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click); - // - // newToolStripMenuItem - // - this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; + this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); + this.fileToolStripMenuItem.Text = "File"; + this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click); + // + // newToolStripMenuItem + // + this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newProjectToolStripMenuItem, this.newFileToolStripMenuItem, this.notecardToolStripMenuItem}); - this.newToolStripMenuItem.Name = "newToolStripMenuItem"; - this.newToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.newToolStripMenuItem.Text = "New"; - // - // newProjectToolStripMenuItem - // - this.newProjectToolStripMenuItem.Name = "newProjectToolStripMenuItem"; - this.newProjectToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) - | System.Windows.Forms.Keys.N))); - this.newProjectToolStripMenuItem.Size = new System.Drawing.Size(204, 22); - this.newProjectToolStripMenuItem.Text = "Solution..."; - this.newProjectToolStripMenuItem.Click += new System.EventHandler(this.newProjectToolStripMenuItem_Click); - // - // newFileToolStripMenuItem - // - this.newFileToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.NEWDOC; - this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem"; - this.newFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); - this.newFileToolStripMenuItem.Size = new System.Drawing.Size(204, 22); - this.newFileToolStripMenuItem.Text = "Script"; - this.newFileToolStripMenuItem.Click += new System.EventHandler(this.newFileToolStripMenuItem_Click); - // - // notecardToolStripMenuItem - // - this.notecardToolStripMenuItem.Name = "notecardToolStripMenuItem"; - this.notecardToolStripMenuItem.Size = new System.Drawing.Size(204, 22); - this.notecardToolStripMenuItem.Text = "Notecard"; - this.notecardToolStripMenuItem.Click += new System.EventHandler(this.notecardToolStripMenuItem_Click); - // - // openToolStripMenuItem - // - this.openToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.newToolStripMenuItem.Name = "newToolStripMenuItem"; + this.newToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.newToolStripMenuItem.Text = "New"; + // + // newProjectToolStripMenuItem + // + this.newProjectToolStripMenuItem.Name = "newProjectToolStripMenuItem"; + this.newProjectToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.N))); + this.newProjectToolStripMenuItem.Size = new System.Drawing.Size(202, 22); + this.newProjectToolStripMenuItem.Text = "Solution..."; + this.newProjectToolStripMenuItem.Click += new System.EventHandler(this.newProjectToolStripMenuItem_Click); + // + // newFileToolStripMenuItem + // + this.newFileToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.NEWDOC; + this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem"; + this.newFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); + this.newFileToolStripMenuItem.Size = new System.Drawing.Size(202, 22); + this.newFileToolStripMenuItem.Text = "Script"; + this.newFileToolStripMenuItem.Click += new System.EventHandler(this.newFileToolStripMenuItem_Click); + // + // notecardToolStripMenuItem + // + this.notecardToolStripMenuItem.Name = "notecardToolStripMenuItem"; + this.notecardToolStripMenuItem.Size = new System.Drawing.Size(202, 22); + this.notecardToolStripMenuItem.Text = "Notecard"; + this.notecardToolStripMenuItem.Click += new System.EventHandler(this.notecardToolStripMenuItem_Click); + // + // openToolStripMenuItem + // + this.openToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openProjectSolutionToolStripMenuItem, this.openFileToolStripMenuItem}); - this.openToolStripMenuItem.Name = "openToolStripMenuItem"; - this.openToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.openToolStripMenuItem.Text = "Open"; - // - // openProjectSolutionToolStripMenuItem - // - this.openProjectSolutionToolStripMenuItem.Name = "openProjectSolutionToolStripMenuItem"; - this.openProjectSolutionToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) - | System.Windows.Forms.Keys.O))); - this.openProjectSolutionToolStripMenuItem.Size = new System.Drawing.Size(243, 22); - this.openProjectSolutionToolStripMenuItem.Text = "Project/Solution..."; - this.openProjectSolutionToolStripMenuItem.Click += new System.EventHandler(this.openProjectSolutionToolStripMenuItem_Click); - // - // openFileToolStripMenuItem - // - this.openFileToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.OPEN; - this.openFileToolStripMenuItem.Name = "openFileToolStripMenuItem"; - this.openFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); - this.openFileToolStripMenuItem.Size = new System.Drawing.Size(243, 22); - this.openFileToolStripMenuItem.Text = "File..."; - this.openFileToolStripMenuItem.Click += new System.EventHandler(this.openFileToolStripMenuItem_Click); - // - // toolStripSeparator5 - // - this.toolStripSeparator5.Name = "toolStripSeparator5"; - this.toolStripSeparator5.Size = new System.Drawing.Size(188, 6); - // - // addToolStripMenuItem - // - this.addToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.openToolStripMenuItem.Name = "openToolStripMenuItem"; + this.openToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.openToolStripMenuItem.Text = "Open"; + // + // openProjectSolutionToolStripMenuItem + // + this.openProjectSolutionToolStripMenuItem.Name = "openProjectSolutionToolStripMenuItem"; + this.openProjectSolutionToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.O))); + this.openProjectSolutionToolStripMenuItem.Size = new System.Drawing.Size(244, 22); + this.openProjectSolutionToolStripMenuItem.Text = "Project/Solution..."; + this.openProjectSolutionToolStripMenuItem.Click += new System.EventHandler(this.openProjectSolutionToolStripMenuItem_Click); + // + // openFileToolStripMenuItem + // + this.openFileToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.OPEN; + this.openFileToolStripMenuItem.Name = "openFileToolStripMenuItem"; + this.openFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); + this.openFileToolStripMenuItem.Size = new System.Drawing.Size(244, 22); + this.openFileToolStripMenuItem.Text = "File..."; + this.openFileToolStripMenuItem.Click += new System.EventHandler(this.openFileToolStripMenuItem_Click); + // + // toolStripSeparator5 + // + this.toolStripSeparator5.Name = "toolStripSeparator5"; + this.toolStripSeparator5.Size = new System.Drawing.Size(184, 6); + // + // addToolStripMenuItem + // + this.addToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newProjectToolStripMenuItem1, this.toolStripSeparator19, this.existingProjectToolStripMenuItem}); - this.addToolStripMenuItem.Name = "addToolStripMenuItem"; - this.addToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.addToolStripMenuItem.Text = "Add"; - this.addToolStripMenuItem.Visible = false; - // - // newProjectToolStripMenuItem1 - // - this.newProjectToolStripMenuItem1.Name = "newProjectToolStripMenuItem1"; - this.newProjectToolStripMenuItem1.Size = new System.Drawing.Size(171, 22); - this.newProjectToolStripMenuItem1.Text = "New project..."; - this.newProjectToolStripMenuItem1.Click += new System.EventHandler(this.newProjectToolStripMenuItem1_Click); - // - // toolStripSeparator19 - // - this.toolStripSeparator19.Name = "toolStripSeparator19"; - this.toolStripSeparator19.Size = new System.Drawing.Size(168, 6); - // - // existingProjectToolStripMenuItem - // - this.existingProjectToolStripMenuItem.Name = "existingProjectToolStripMenuItem"; - this.existingProjectToolStripMenuItem.Size = new System.Drawing.Size(171, 22); - this.existingProjectToolStripMenuItem.Text = "Existing project..."; - this.existingProjectToolStripMenuItem.Click += new System.EventHandler(this.existingProjectToolStripMenuItem_Click); - // - // addToolStripSeparator - // - this.addToolStripSeparator.Name = "addToolStripSeparator"; - this.addToolStripSeparator.Size = new System.Drawing.Size(188, 6); - this.addToolStripSeparator.Visible = false; - // - // closeFileToolStripMenuItem - // - this.closeFileToolStripMenuItem.Name = "closeFileToolStripMenuItem"; - this.closeFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W))); - this.closeFileToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.closeFileToolStripMenuItem.Text = "Close"; - this.closeFileToolStripMenuItem.Click += new System.EventHandler(this.closeFileToolStripMenuItem_Click); - // - // closeSolutiontoolStripMenuItem - // - this.closeSolutiontoolStripMenuItem.Enabled = false; - this.closeSolutiontoolStripMenuItem.Name = "closeSolutiontoolStripMenuItem"; - this.closeSolutiontoolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.closeSolutiontoolStripMenuItem.Text = "Close Solution"; - this.closeSolutiontoolStripMenuItem.Click += new System.EventHandler(this.closeSolutiontoolStripMenuItem_Click); - // - // toolStripSeparator20 - // - this.toolStripSeparator20.Name = "toolStripSeparator20"; - this.toolStripSeparator20.Size = new System.Drawing.Size(188, 6); - // - // importExampleToolStripMenuItem - // - this.importExampleToolStripMenuItem.Name = "importExampleToolStripMenuItem"; - this.importExampleToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.importExampleToolStripMenuItem.Text = "Import Example..."; - this.importExampleToolStripMenuItem.Click += new System.EventHandler(this.importExampleToolStripMenuItem_Click); - // - // toolStripSeparator4 - // - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(188, 6); - // - // saveToolStripMenuItem - // - this.saveToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.SAVE; - this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; - this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); - this.saveToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.saveToolStripMenuItem.Text = "Save"; - this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); - // - // saveAsToolStripMenuItem - // - this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; - this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.saveAsToolStripMenuItem.Text = "Save As..."; - this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); - // - // SaveAllToolStripMenuItem - // - this.SaveAllToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.SAVEAS; - this.SaveAllToolStripMenuItem.Name = "SaveAllToolStripMenuItem"; - this.SaveAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) - | System.Windows.Forms.Keys.S))); - this.SaveAllToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.SaveAllToolStripMenuItem.Text = "Save All"; - this.SaveAllToolStripMenuItem.Click += new System.EventHandler(this.SaveAllToolStripMenuItem_Click); - // - // toolStripSeparator3 - // - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(188, 6); - // - // pageSettingsToolStripMenuItem - // - this.pageSettingsToolStripMenuItem.Name = "pageSettingsToolStripMenuItem"; - this.pageSettingsToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.pageSettingsToolStripMenuItem.Text = "Page settings..."; - this.pageSettingsToolStripMenuItem.Click += new System.EventHandler(this.pageSettingsToolStripMenuItem_Click); - // - // printPreviewtoolStripMenuItem - // - this.printPreviewtoolStripMenuItem.Name = "printPreviewtoolStripMenuItem"; - this.printPreviewtoolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.printPreviewtoolStripMenuItem.Text = "Print Preview..."; - this.printPreviewtoolStripMenuItem.Click += new System.EventHandler(this.printPreviewtoolStripMenuItem_Click); - // - // printToolStripMenuItem - // - this.printToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.PRINT; - this.printToolStripMenuItem.Name = "printToolStripMenuItem"; - this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P))); - this.printToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.printToolStripMenuItem.Text = "Print..."; - this.printToolStripMenuItem.Click += new System.EventHandler(this.printToolStripMenuItem_Click); - // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(188, 6); - // - // copyToClipboardToolStripMenuItem - // - this.copyToClipboardToolStripMenuItem.Name = "copyToClipboardToolStripMenuItem"; - this.copyToClipboardToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.copyToClipboardToolStripMenuItem.Text = "Copy to clipboard"; - this.copyToClipboardToolStripMenuItem.Click += new System.EventHandler(this.copyToClipboardToolStripMenuItem_Click); - // - // toolStripSeparator1 - // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(188, 6); - // - // recentFileToolStripMenuItem - // - this.recentFileToolStripMenuItem.Name = "recentFileToolStripMenuItem"; - this.recentFileToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.recentFileToolStripMenuItem.Text = "Recent Files"; - this.recentFileToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentFileToolStripMenuItem_DropDownItemClicked); - // - // recentProjectToolStripMenuItem - // - this.recentProjectToolStripMenuItem.Name = "recentProjectToolStripMenuItem"; - this.recentProjectToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.recentProjectToolStripMenuItem.Text = "Recent Solutions"; - this.recentProjectToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentProjectToolStripMenuItem_DropDownItemClicked); - // - // toolStripSeparator21 - // - this.toolStripSeparator21.Name = "toolStripSeparator21"; - this.toolStripSeparator21.Size = new System.Drawing.Size(188, 6); - // - // exitToolStripMenuItem - // - this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; - this.exitToolStripMenuItem.Size = new System.Drawing.Size(191, 22); - this.exitToolStripMenuItem.Text = "Exit"; - this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); - // - // editToolStripMenuItem - // - this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.addToolStripMenuItem.Name = "addToolStripMenuItem"; + this.addToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.addToolStripMenuItem.Text = "Add"; + this.addToolStripMenuItem.Visible = false; + // + // newProjectToolStripMenuItem1 + // + this.newProjectToolStripMenuItem1.Name = "newProjectToolStripMenuItem1"; + this.newProjectToolStripMenuItem1.Size = new System.Drawing.Size(163, 22); + this.newProjectToolStripMenuItem1.Text = "New project..."; + this.newProjectToolStripMenuItem1.Click += new System.EventHandler(this.newProjectToolStripMenuItem1_Click); + // + // toolStripSeparator19 + // + this.toolStripSeparator19.Name = "toolStripSeparator19"; + this.toolStripSeparator19.Size = new System.Drawing.Size(160, 6); + // + // existingProjectToolStripMenuItem + // + this.existingProjectToolStripMenuItem.Name = "existingProjectToolStripMenuItem"; + this.existingProjectToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.existingProjectToolStripMenuItem.Text = "Existing project..."; + this.existingProjectToolStripMenuItem.Click += new System.EventHandler(this.existingProjectToolStripMenuItem_Click); + // + // addToolStripSeparator + // + this.addToolStripSeparator.Name = "addToolStripSeparator"; + this.addToolStripSeparator.Size = new System.Drawing.Size(184, 6); + this.addToolStripSeparator.Visible = false; + // + // closeFileToolStripMenuItem + // + this.closeFileToolStripMenuItem.Name = "closeFileToolStripMenuItem"; + this.closeFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W))); + this.closeFileToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.closeFileToolStripMenuItem.Text = "Close"; + this.closeFileToolStripMenuItem.Click += new System.EventHandler(this.closeFileToolStripMenuItem_Click); + // + // closeSolutiontoolStripMenuItem + // + this.closeSolutiontoolStripMenuItem.Enabled = false; + this.closeSolutiontoolStripMenuItem.Name = "closeSolutiontoolStripMenuItem"; + this.closeSolutiontoolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.closeSolutiontoolStripMenuItem.Text = "Close Solution"; + this.closeSolutiontoolStripMenuItem.Click += new System.EventHandler(this.closeSolutiontoolStripMenuItem_Click); + // + // toolStripSeparator20 + // + this.toolStripSeparator20.Name = "toolStripSeparator20"; + this.toolStripSeparator20.Size = new System.Drawing.Size(184, 6); + // + // importExampleToolStripMenuItem + // + this.importExampleToolStripMenuItem.Name = "importExampleToolStripMenuItem"; + this.importExampleToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.importExampleToolStripMenuItem.Text = "Import Example..."; + this.importExampleToolStripMenuItem.Click += new System.EventHandler(this.importExampleToolStripMenuItem_Click); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(184, 6); + // + // saveToolStripMenuItem + // + this.saveToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.SAVE; + this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; + this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); + this.saveToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.saveToolStripMenuItem.Text = "Save"; + this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); + // + // saveAsToolStripMenuItem + // + this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; + this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.saveAsToolStripMenuItem.Text = "Save As..."; + this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); + // + // SaveAllToolStripMenuItem + // + this.SaveAllToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.SAVEAS; + this.SaveAllToolStripMenuItem.Name = "SaveAllToolStripMenuItem"; + this.SaveAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.S))); + this.SaveAllToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.SaveAllToolStripMenuItem.Text = "Save All"; + this.SaveAllToolStripMenuItem.Click += new System.EventHandler(this.SaveAllToolStripMenuItem_Click); + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(184, 6); + // + // pageSettingsToolStripMenuItem + // + this.pageSettingsToolStripMenuItem.Name = "pageSettingsToolStripMenuItem"; + this.pageSettingsToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.pageSettingsToolStripMenuItem.Text = "Page settings..."; + this.pageSettingsToolStripMenuItem.Click += new System.EventHandler(this.pageSettingsToolStripMenuItem_Click); + // + // printPreviewtoolStripMenuItem + // + this.printPreviewtoolStripMenuItem.Name = "printPreviewtoolStripMenuItem"; + this.printPreviewtoolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.printPreviewtoolStripMenuItem.Text = "Print Preview..."; + this.printPreviewtoolStripMenuItem.Click += new System.EventHandler(this.printPreviewtoolStripMenuItem_Click); + // + // printToolStripMenuItem + // + this.printToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.PRINT; + this.printToolStripMenuItem.Name = "printToolStripMenuItem"; + this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P))); + this.printToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.printToolStripMenuItem.Text = "Print..."; + this.printToolStripMenuItem.Click += new System.EventHandler(this.printToolStripMenuItem_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(184, 6); + // + // copyToClipboardToolStripMenuItem + // + this.copyToClipboardToolStripMenuItem.Name = "copyToClipboardToolStripMenuItem"; + this.copyToClipboardToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.copyToClipboardToolStripMenuItem.Text = "Copy to clipboard"; + this.copyToClipboardToolStripMenuItem.Click += new System.EventHandler(this.copyToClipboardToolStripMenuItem_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(184, 6); + // + // recentFileToolStripMenuItem + // + this.recentFileToolStripMenuItem.Name = "recentFileToolStripMenuItem"; + this.recentFileToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.recentFileToolStripMenuItem.Text = "Recent Files"; + this.recentFileToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentFileToolStripMenuItem_DropDownItemClicked); + // + // recentProjectToolStripMenuItem + // + this.recentProjectToolStripMenuItem.Name = "recentProjectToolStripMenuItem"; + this.recentProjectToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.recentProjectToolStripMenuItem.Text = "Recent Solutions"; + this.recentProjectToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentProjectToolStripMenuItem_DropDownItemClicked); + // + // toolStripSeparator21 + // + this.toolStripSeparator21.Name = "toolStripSeparator21"; + this.toolStripSeparator21.Size = new System.Drawing.Size(184, 6); + // + // exitToolStripMenuItem + // + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + this.exitToolStripMenuItem.Size = new System.Drawing.Size(187, 22); + this.exitToolStripMenuItem.Text = "Exit"; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); + // + // editToolStripMenuItem + // + this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.undoToolStripMenuItem, this.redoToolStripMenuItem, this.toolStripSeparator6, @@ -452,291 +455,291 @@ namespace LSLEditor this.toolStripMenuItem1, this.toolStripSeparator14, this.advancedToolStripMenuItem}); - this.editToolStripMenuItem.Name = "editToolStripMenuItem"; - this.editToolStripMenuItem.Size = new System.Drawing.Size(37, 20); - this.editToolStripMenuItem.Text = "Edit"; - // - // undoToolStripMenuItem - // - this.undoToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.UNDO; - this.undoToolStripMenuItem.Name = "undoToolStripMenuItem"; - this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); - this.undoToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.undoToolStripMenuItem.Text = "Undo"; - this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click); - // - // redoToolStripMenuItem - // - this.redoToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.REDO; - this.redoToolStripMenuItem.Name = "redoToolStripMenuItem"; - this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); - this.redoToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.redoToolStripMenuItem.Text = "Redo"; - this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click); - // - // toolStripSeparator6 - // - this.toolStripSeparator6.Name = "toolStripSeparator6"; - this.toolStripSeparator6.Size = new System.Drawing.Size(221, 6); - // - // cutToolStripMenuItem - // - this.cutToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.CUT; - this.cutToolStripMenuItem.Name = "cutToolStripMenuItem"; - this.cutToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+X"; - this.cutToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.cutToolStripMenuItem.Text = "Cut"; - this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click); - // - // copyToolStripMenuItem - // - this.copyToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.COPY; - this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; - this.copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C"; - this.copyToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.copyToolStripMenuItem.Text = "Copy"; - this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click); - // - // pasteToolStripMenuItem - // - this.pasteToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.PASTE; - this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem"; - this.pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V"; - this.pasteToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.pasteToolStripMenuItem.Text = "Paste"; - this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click); - // - // deleteToolStripMenuItem - // - this.deleteToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.DELETE; - this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; - this.deleteToolStripMenuItem.ShortcutKeyDisplayString = "Del"; - this.deleteToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.deleteToolStripMenuItem.Text = "Delete"; - this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click); - // - // toolStripSeparator13 - // - this.toolStripSeparator13.Name = "toolStripSeparator13"; - this.toolStripSeparator13.Size = new System.Drawing.Size(221, 6); - // - // selectAllToolStripMenuItem - // - this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem"; - this.selectAllToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+A"; - this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.selectAllToolStripMenuItem.Text = "Select All"; - this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click); - // - // toolStripMenuItem8 - // - this.toolStripMenuItem8.Name = "toolStripMenuItem8"; - this.toolStripMenuItem8.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) - | System.Windows.Forms.Keys.A))); - this.toolStripMenuItem8.Size = new System.Drawing.Size(224, 22); - this.toolStripMenuItem8.Text = "Select All to SL"; - this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click); - // - // toolStripSeparator7 - // - this.toolStripSeparator7.Name = "toolStripSeparator7"; - this.toolStripSeparator7.Size = new System.Drawing.Size(221, 6); - // - // FindtoolStripMenuItem - // - this.FindtoolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.editToolStripMenuItem.Name = "editToolStripMenuItem"; + this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); + this.editToolStripMenuItem.Text = "Edit"; + // + // undoToolStripMenuItem + // + this.undoToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.UNDO; + this.undoToolStripMenuItem.Name = "undoToolStripMenuItem"; + this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); + this.undoToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.undoToolStripMenuItem.Text = "Undo"; + this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click); + // + // redoToolStripMenuItem + // + this.redoToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.REDO; + this.redoToolStripMenuItem.Name = "redoToolStripMenuItem"; + this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); + this.redoToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.redoToolStripMenuItem.Text = "Redo"; + this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + this.toolStripSeparator6.Size = new System.Drawing.Size(222, 6); + // + // cutToolStripMenuItem + // + this.cutToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.CUT; + this.cutToolStripMenuItem.Name = "cutToolStripMenuItem"; + this.cutToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+X"; + this.cutToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.cutToolStripMenuItem.Text = "Cut"; + this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click); + // + // copyToolStripMenuItem + // + this.copyToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.COPY; + this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; + this.copyToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C"; + this.copyToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.copyToolStripMenuItem.Text = "Copy"; + this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click); + // + // pasteToolStripMenuItem + // + this.pasteToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.PASTE; + this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem"; + this.pasteToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+V"; + this.pasteToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.pasteToolStripMenuItem.Text = "Paste"; + this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click); + // + // deleteToolStripMenuItem + // + this.deleteToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.DELETE; + this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; + this.deleteToolStripMenuItem.ShortcutKeyDisplayString = "Del"; + this.deleteToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.deleteToolStripMenuItem.Text = "Delete"; + this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click); + // + // toolStripSeparator13 + // + this.toolStripSeparator13.Name = "toolStripSeparator13"; + this.toolStripSeparator13.Size = new System.Drawing.Size(222, 6); + // + // selectAllToolStripMenuItem + // + this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem"; + this.selectAllToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+A"; + this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.selectAllToolStripMenuItem.Text = "Select All"; + this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click); + // + // toolStripMenuItem8 + // + this.toolStripMenuItem8.Name = "toolStripMenuItem8"; + this.toolStripMenuItem8.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.A))); + this.toolStripMenuItem8.Size = new System.Drawing.Size(225, 22); + this.toolStripMenuItem8.Text = "Select All to SL"; + this.toolStripMenuItem8.Click += new System.EventHandler(this.toolStripMenuItem8_Click); + // + // toolStripSeparator7 + // + this.toolStripSeparator7.Name = "toolStripSeparator7"; + this.toolStripSeparator7.Size = new System.Drawing.Size(222, 6); + // + // FindtoolStripMenuItem + // + this.FindtoolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.findToolStripMenuItem1, this.replaceToolStripMenuItem, this.findNextToolStripMenuItem}); - this.FindtoolStripMenuItem.Name = "FindtoolStripMenuItem"; - this.FindtoolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.FindtoolStripMenuItem.Text = "Find and Replace"; - // - // findToolStripMenuItem1 - // - this.findToolStripMenuItem1.Name = "findToolStripMenuItem1"; - this.findToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F))); - this.findToolStripMenuItem1.Size = new System.Drawing.Size(162, 22); - this.findToolStripMenuItem1.Text = "Find"; - this.findToolStripMenuItem1.Click += new System.EventHandler(this.findToolStripMenuItem_Click); - // - // replaceToolStripMenuItem - // - this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem"; - this.replaceToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); - this.replaceToolStripMenuItem.Size = new System.Drawing.Size(162, 22); - this.replaceToolStripMenuItem.Text = "Replace"; - this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click); - // - // findNextToolStripMenuItem - // - this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem"; - this.findNextToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3; - this.findNextToolStripMenuItem.Size = new System.Drawing.Size(162, 22); - this.findNextToolStripMenuItem.Text = "Find next"; - this.findNextToolStripMenuItem.Visible = false; - this.findNextToolStripMenuItem.Click += new System.EventHandler(this.findNextToolStripMenuItem_Click); - // - // toolStripMenuItem1 - // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G))); - this.toolStripMenuItem1.Size = new System.Drawing.Size(224, 22); - this.toolStripMenuItem1.Text = "Goto..."; - this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click); - // - // toolStripSeparator14 - // - this.toolStripSeparator14.Name = "toolStripSeparator14"; - this.toolStripSeparator14.Size = new System.Drawing.Size(221, 6); - // - // advancedToolStripMenuItem - // - this.advancedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FindtoolStripMenuItem.Name = "FindtoolStripMenuItem"; + this.FindtoolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.FindtoolStripMenuItem.Text = "Find and Replace"; + // + // findToolStripMenuItem1 + // + this.findToolStripMenuItem1.Name = "findToolStripMenuItem1"; + this.findToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F))); + this.findToolStripMenuItem1.Size = new System.Drawing.Size(158, 22); + this.findToolStripMenuItem1.Text = "Find"; + this.findToolStripMenuItem1.Click += new System.EventHandler(this.findToolStripMenuItem_Click); + // + // replaceToolStripMenuItem + // + this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem"; + this.replaceToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H))); + this.replaceToolStripMenuItem.Size = new System.Drawing.Size(158, 22); + this.replaceToolStripMenuItem.Text = "Replace"; + this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click); + // + // findNextToolStripMenuItem + // + this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem"; + this.findNextToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3; + this.findNextToolStripMenuItem.Size = new System.Drawing.Size(158, 22); + this.findNextToolStripMenuItem.Text = "Find next"; + this.findNextToolStripMenuItem.Visible = false; + this.findNextToolStripMenuItem.Click += new System.EventHandler(this.findNextToolStripMenuItem_Click); + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G))); + this.toolStripMenuItem1.Size = new System.Drawing.Size(225, 22); + this.toolStripMenuItem1.Text = "Goto..."; + this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click); + // + // toolStripSeparator14 + // + this.toolStripSeparator14.Name = "toolStripSeparator14"; + this.toolStripSeparator14.Size = new System.Drawing.Size(222, 6); + // + // advancedToolStripMenuItem + // + this.advancedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.formatDocumentToolStripMenuItem, this.formatSelectedTextToolStripMenuItem, this.commentInToolStripMenuItem, this.uncommentingSelectedTextToolStripMenuItem}); - this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem"; - this.advancedToolStripMenuItem.Size = new System.Drawing.Size(224, 22); - this.advancedToolStripMenuItem.Text = "Advanced"; - // - // formatDocumentToolStripMenuItem - // - this.formatDocumentToolStripMenuItem.Name = "formatDocumentToolStripMenuItem"; - this.formatDocumentToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D))); - this.formatDocumentToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.formatDocumentToolStripMenuItem.Text = "Format document"; - this.formatDocumentToolStripMenuItem.Click += new System.EventHandler(this.formatDocumentToolStripMenuItem_Click); - // - // formatSelectedTextToolStripMenuItem - // - this.formatSelectedTextToolStripMenuItem.Name = "formatSelectedTextToolStripMenuItem"; - this.formatSelectedTextToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E))); - this.formatSelectedTextToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.formatSelectedTextToolStripMenuItem.Text = "Format selected text"; - this.formatSelectedTextToolStripMenuItem.Click += new System.EventHandler(this.formatSelectedTextToolStripMenuItem_Click); - // - // commentInToolStripMenuItem - // - this.commentInToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.ININDENT; - this.commentInToolStripMenuItem.Name = "commentInToolStripMenuItem"; - this.commentInToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.K))); - this.commentInToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.commentInToolStripMenuItem.Text = "Commenting selected text"; - this.commentInToolStripMenuItem.Click += new System.EventHandler(this.commentInToolStripMenuItem_Click); - // - // uncommentingSelectedTextToolStripMenuItem - // - this.uncommentingSelectedTextToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.DEINDENT; - this.uncommentingSelectedTextToolStripMenuItem.Name = "uncommentingSelectedTextToolStripMenuItem"; - this.uncommentingSelectedTextToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L))); - this.uncommentingSelectedTextToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.uncommentingSelectedTextToolStripMenuItem.Text = "Uncommenting selected text"; - this.uncommentingSelectedTextToolStripMenuItem.Click += new System.EventHandler(this.uncommentingSelectedTextToolStripMenuItem_Click); - // - // toolStripMenuItem2 - // - this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem"; + this.advancedToolStripMenuItem.Size = new System.Drawing.Size(225, 22); + this.advancedToolStripMenuItem.Text = "Advanced"; + // + // formatDocumentToolStripMenuItem + // + this.formatDocumentToolStripMenuItem.Name = "formatDocumentToolStripMenuItem"; + this.formatDocumentToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D))); + this.formatDocumentToolStripMenuItem.Size = new System.Drawing.Size(266, 22); + this.formatDocumentToolStripMenuItem.Text = "Format document"; + this.formatDocumentToolStripMenuItem.Click += new System.EventHandler(this.formatDocumentToolStripMenuItem_Click); + // + // formatSelectedTextToolStripMenuItem + // + this.formatSelectedTextToolStripMenuItem.Name = "formatSelectedTextToolStripMenuItem"; + this.formatSelectedTextToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E))); + this.formatSelectedTextToolStripMenuItem.Size = new System.Drawing.Size(266, 22); + this.formatSelectedTextToolStripMenuItem.Text = "Format selected text"; + this.formatSelectedTextToolStripMenuItem.Click += new System.EventHandler(this.formatSelectedTextToolStripMenuItem_Click); + // + // commentInToolStripMenuItem + // + this.commentInToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.ININDENT; + this.commentInToolStripMenuItem.Name = "commentInToolStripMenuItem"; + this.commentInToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.K))); + this.commentInToolStripMenuItem.Size = new System.Drawing.Size(266, 22); + this.commentInToolStripMenuItem.Text = "Commenting selected text"; + this.commentInToolStripMenuItem.Click += new System.EventHandler(this.commentInToolStripMenuItem_Click); + // + // uncommentingSelectedTextToolStripMenuItem + // + this.uncommentingSelectedTextToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.DEINDENT; + this.uncommentingSelectedTextToolStripMenuItem.Name = "uncommentingSelectedTextToolStripMenuItem"; + this.uncommentingSelectedTextToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L))); + this.uncommentingSelectedTextToolStripMenuItem.Size = new System.Drawing.Size(266, 22); + this.uncommentingSelectedTextToolStripMenuItem.Text = "Uncommenting selected text"; + this.uncommentingSelectedTextToolStripMenuItem.Click += new System.EventHandler(this.uncommentingSelectedTextToolStripMenuItem_Click); + // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.solutionExplorerToolStripMenuItem}); - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(41, 20); - this.toolStripMenuItem2.Text = "View"; - // - // solutionExplorerToolStripMenuItem - // - this.solutionExplorerToolStripMenuItem.Name = "solutionExplorerToolStripMenuItem"; - this.solutionExplorerToolStripMenuItem.Size = new System.Drawing.Size(166, 22); - this.solutionExplorerToolStripMenuItem.Text = "Solution Explorer"; - this.solutionExplorerToolStripMenuItem.Click += new System.EventHandler(this.solutionExplorerToolStripMenuItem_Click); - // - // projectToolStripMenuItem - // - this.projectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(44, 20); + this.toolStripMenuItem2.Text = "View"; + // + // solutionExplorerToolStripMenuItem + // + this.solutionExplorerToolStripMenuItem.Name = "solutionExplorerToolStripMenuItem"; + this.solutionExplorerToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.solutionExplorerToolStripMenuItem.Text = "Solution Explorer"; + this.solutionExplorerToolStripMenuItem.Click += new System.EventHandler(this.solutionExplorerToolStripMenuItem_Click); + // + // projectToolStripMenuItem + // + this.projectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.addNewObjecttoolStripMenuItem, this.addNewFileToolStripMenuItem}); - this.projectToolStripMenuItem.Name = "projectToolStripMenuItem"; - this.projectToolStripMenuItem.Size = new System.Drawing.Size(53, 20); - this.projectToolStripMenuItem.Text = "Project"; - // - // addNewObjecttoolStripMenuItem - // - this.addNewObjecttoolStripMenuItem.Enabled = false; - this.addNewObjecttoolStripMenuItem.Name = "addNewObjecttoolStripMenuItem"; - this.addNewObjecttoolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) - | System.Windows.Forms.Keys.A))); - this.addNewObjecttoolStripMenuItem.Size = new System.Drawing.Size(232, 22); - this.addNewObjecttoolStripMenuItem.Text = "Add New Object"; - this.addNewObjecttoolStripMenuItem.Click += new System.EventHandler(this.addNewObjecttoolStripMenuItem_Click); - // - // addNewFileToolStripMenuItem - // - this.addNewFileToolStripMenuItem.Enabled = false; - this.addNewFileToolStripMenuItem.Name = "addNewFileToolStripMenuItem"; - this.addNewFileToolStripMenuItem.Size = new System.Drawing.Size(232, 22); - this.addNewFileToolStripMenuItem.Text = "Add New Item"; - // - // buildToolStripMenuItem - // - this.buildToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.projectToolStripMenuItem.Name = "projectToolStripMenuItem"; + this.projectToolStripMenuItem.Size = new System.Drawing.Size(56, 20); + this.projectToolStripMenuItem.Text = "Project"; + // + // addNewObjecttoolStripMenuItem + // + this.addNewObjecttoolStripMenuItem.Enabled = false; + this.addNewObjecttoolStripMenuItem.Name = "addNewObjecttoolStripMenuItem"; + this.addNewObjecttoolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.A))); + this.addNewObjecttoolStripMenuItem.Size = new System.Drawing.Size(235, 22); + this.addNewObjecttoolStripMenuItem.Text = "Add New Object"; + this.addNewObjecttoolStripMenuItem.Click += new System.EventHandler(this.addNewObjecttoolStripMenuItem_Click); + // + // addNewFileToolStripMenuItem + // + this.addNewFileToolStripMenuItem.Enabled = false; + this.addNewFileToolStripMenuItem.Name = "addNewFileToolStripMenuItem"; + this.addNewFileToolStripMenuItem.Size = new System.Drawing.Size(235, 22); + this.addNewFileToolStripMenuItem.Text = "Add New Item"; + // + // buildToolStripMenuItem + // + this.buildToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.startToolStripMenuItem, this.stopToolStripMenuItem, this.toolStripSeparator23, this.syntaxCheckerToolStripMenuItem}); - this.buildToolStripMenuItem.Name = "buildToolStripMenuItem"; - this.buildToolStripMenuItem.Size = new System.Drawing.Size(50, 20); - this.buildToolStripMenuItem.Text = "Debug"; - // - // startToolStripMenuItem - // - this.startToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.START; - this.startToolStripMenuItem.Name = "startToolStripMenuItem"; - this.startToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5; - this.startToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.startToolStripMenuItem.Text = "Start"; - this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); - // - // stopToolStripMenuItem - // - this.stopToolStripMenuItem.Enabled = false; - this.stopToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.END; - this.stopToolStripMenuItem.Name = "stopToolStripMenuItem"; - this.stopToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F5))); - this.stopToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.stopToolStripMenuItem.Text = "Stop"; - this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click); - // - // toolStripSeparator23 - // - this.toolStripSeparator23.Name = "toolStripSeparator23"; - this.toolStripSeparator23.Size = new System.Drawing.Size(177, 6); - // - // syntaxCheckerToolStripMenuItem - // - this.syntaxCheckerToolStripMenuItem.Name = "syntaxCheckerToolStripMenuItem"; - this.syntaxCheckerToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F6; - this.syntaxCheckerToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.syntaxCheckerToolStripMenuItem.Text = "Syntax Checker"; - this.syntaxCheckerToolStripMenuItem.Click += new System.EventHandler(this.syntaxCheckerToolStripMenuItem_Click); - // - // toolStripMenuItem3 - // - this.toolStripMenuItem3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.buildToolStripMenuItem.Name = "buildToolStripMenuItem"; + this.buildToolStripMenuItem.Size = new System.Drawing.Size(54, 20); + this.buildToolStripMenuItem.Text = "Debug"; + // + // startToolStripMenuItem + // + this.startToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.START; + this.startToolStripMenuItem.Name = "startToolStripMenuItem"; + this.startToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5; + this.startToolStripMenuItem.Size = new System.Drawing.Size(173, 22); + this.startToolStripMenuItem.Text = "Start"; + this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click); + // + // stopToolStripMenuItem + // + this.stopToolStripMenuItem.Enabled = false; + this.stopToolStripMenuItem.Image = global::LSLEditor.Properties.Resources.END; + this.stopToolStripMenuItem.Name = "stopToolStripMenuItem"; + this.stopToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F5))); + this.stopToolStripMenuItem.Size = new System.Drawing.Size(173, 22); + this.stopToolStripMenuItem.Text = "Stop"; + this.stopToolStripMenuItem.Click += new System.EventHandler(this.stopToolStripMenuItem_Click); + // + // toolStripSeparator23 + // + this.toolStripSeparator23.Name = "toolStripSeparator23"; + this.toolStripSeparator23.Size = new System.Drawing.Size(170, 6); + // + // syntaxCheckerToolStripMenuItem + // + this.syntaxCheckerToolStripMenuItem.Name = "syntaxCheckerToolStripMenuItem"; + this.syntaxCheckerToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F6; + this.syntaxCheckerToolStripMenuItem.Size = new System.Drawing.Size(173, 22); + this.syntaxCheckerToolStripMenuItem.Text = "Syntax Checker"; + this.syntaxCheckerToolStripMenuItem.Click += new System.EventHandler(this.syntaxCheckerToolStripMenuItem_Click); + // + // toolStripMenuItem3 + // + this.toolStripMenuItem3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.optionsToolStripMenuItem}); - this.toolStripMenuItem3.Name = "toolStripMenuItem3"; - this.toolStripMenuItem3.Size = new System.Drawing.Size(44, 20); - this.toolStripMenuItem3.Text = "Tools"; - // - // optionsToolStripMenuItem - // - this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; - this.optionsToolStripMenuItem.Size = new System.Drawing.Size(134, 22); - this.optionsToolStripMenuItem.Text = "Options..."; - this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click); - // - // viewToolStripMenuItem - // - this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; + this.toolStripMenuItem3.Size = new System.Drawing.Size(48, 20); + this.toolStripMenuItem3.Text = "Tools"; + // + // optionsToolStripMenuItem + // + this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; + this.optionsToolStripMenuItem.Size = new System.Drawing.Size(125, 22); + this.optionsToolStripMenuItem.Text = "Options..."; + this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click); + // + // viewToolStripMenuItem + // + this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.horizontalToolStripMenuItem, this.verticalToolStripMenuItem, this.cascadeToolStripMenuItem, @@ -748,85 +751,85 @@ namespace LSLEditor this.toolStripSeparator16, this.tabbedViewToolStripMenuItem, this.closeActiveWindowToolStripMenuItem}); - this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; - this.viewToolStripMenuItem.Size = new System.Drawing.Size(57, 20); - this.viewToolStripMenuItem.Text = "Window"; - // - // horizontalToolStripMenuItem - // - this.horizontalToolStripMenuItem.Name = "horizontalToolStripMenuItem"; - this.horizontalToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.horizontalToolStripMenuItem.Text = "Horizontal"; - this.horizontalToolStripMenuItem.Click += new System.EventHandler(this.horizontalToolStripMenuItem_Click); - // - // verticalToolStripMenuItem - // - this.verticalToolStripMenuItem.Name = "verticalToolStripMenuItem"; - this.verticalToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.verticalToolStripMenuItem.Text = "Vertical"; - this.verticalToolStripMenuItem.Click += new System.EventHandler(this.verticalToolStripMenuItem_Click); - // - // cascadeToolStripMenuItem - // - this.cascadeToolStripMenuItem.Name = "cascadeToolStripMenuItem"; - this.cascadeToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.cascadeToolStripMenuItem.Text = "Cascade"; - this.cascadeToolStripMenuItem.Click += new System.EventHandler(this.cascadeToolStripMenuItem_Click); - // - // toolStripSeparator11 - // - this.toolStripSeparator11.Name = "toolStripSeparator11"; - this.toolStripSeparator11.Size = new System.Drawing.Size(255, 6); - // - // ArangeIconsToolStripMenuItem - // - this.ArangeIconsToolStripMenuItem.Name = "ArangeIconsToolStripMenuItem"; - this.ArangeIconsToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.ArangeIconsToolStripMenuItem.Text = "Arange Icons"; - this.ArangeIconsToolStripMenuItem.Click += new System.EventHandler(this.normalToolStripMenuItem_Click); - // - // toolStripSeparator10 - // - this.toolStripSeparator10.Name = "toolStripSeparator10"; - this.toolStripSeparator10.Size = new System.Drawing.Size(255, 6); - // - // browserInWindowToolStripMenuItem - // - this.browserInWindowToolStripMenuItem.Name = "browserInWindowToolStripMenuItem"; - this.browserInWindowToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.browserInWindowToolStripMenuItem.Text = "Browser in window"; - this.browserInWindowToolStripMenuItem.Click += new System.EventHandler(this.browserInWindowToolStripMenuItem_Click); - // - // WikiSepBrowserstoolStripMenuItem - // - this.WikiSepBrowserstoolStripMenuItem.Name = "WikiSepBrowserstoolStripMenuItem"; - this.WikiSepBrowserstoolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.WikiSepBrowserstoolStripMenuItem.Text = "Online Wiki-pages separate Browser"; - this.WikiSepBrowserstoolStripMenuItem.Click += new System.EventHandler(this.WikiSepBrowserstoolStripMenuItem_Click); - // - // toolStripSeparator16 - // - this.toolStripSeparator16.Name = "toolStripSeparator16"; - this.toolStripSeparator16.Size = new System.Drawing.Size(255, 6); - // - // tabbedViewToolStripMenuItem - // - this.tabbedViewToolStripMenuItem.Name = "tabbedViewToolStripMenuItem"; - this.tabbedViewToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.tabbedViewToolStripMenuItem.Text = "Tabbed document"; - this.tabbedViewToolStripMenuItem.Click += new System.EventHandler(this.tabbedViewToolStripMenuItem_Click); - // - // closeActiveWindowToolStripMenuItem - // - this.closeActiveWindowToolStripMenuItem.Name = "closeActiveWindowToolStripMenuItem"; - this.closeActiveWindowToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4))); - this.closeActiveWindowToolStripMenuItem.Size = new System.Drawing.Size(258, 22); - this.closeActiveWindowToolStripMenuItem.Text = "Close active window"; - this.closeActiveWindowToolStripMenuItem.Click += new System.EventHandler(this.closeActiveWindowToolStripMenuItem_Click); - // - // helpToolStripMenuItem - // - this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; + this.viewToolStripMenuItem.Size = new System.Drawing.Size(63, 20); + this.viewToolStripMenuItem.Text = "Window"; + // + // horizontalToolStripMenuItem + // + this.horizontalToolStripMenuItem.Name = "horizontalToolStripMenuItem"; + this.horizontalToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.horizontalToolStripMenuItem.Text = "Horizontal"; + this.horizontalToolStripMenuItem.Click += new System.EventHandler(this.horizontalToolStripMenuItem_Click); + // + // verticalToolStripMenuItem + // + this.verticalToolStripMenuItem.Name = "verticalToolStripMenuItem"; + this.verticalToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.verticalToolStripMenuItem.Text = "Vertical"; + this.verticalToolStripMenuItem.Click += new System.EventHandler(this.verticalToolStripMenuItem_Click); + // + // cascadeToolStripMenuItem + // + this.cascadeToolStripMenuItem.Name = "cascadeToolStripMenuItem"; + this.cascadeToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.cascadeToolStripMenuItem.Text = "Cascade"; + this.cascadeToolStripMenuItem.Click += new System.EventHandler(this.cascadeToolStripMenuItem_Click); + // + // toolStripSeparator11 + // + this.toolStripSeparator11.Name = "toolStripSeparator11"; + this.toolStripSeparator11.Size = new System.Drawing.Size(260, 6); + // + // ArangeIconsToolStripMenuItem + // + this.ArangeIconsToolStripMenuItem.Name = "ArangeIconsToolStripMenuItem"; + this.ArangeIconsToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.ArangeIconsToolStripMenuItem.Text = "Arange Icons"; + this.ArangeIconsToolStripMenuItem.Click += new System.EventHandler(this.normalToolStripMenuItem_Click); + // + // toolStripSeparator10 + // + this.toolStripSeparator10.Name = "toolStripSeparator10"; + this.toolStripSeparator10.Size = new System.Drawing.Size(260, 6); + // + // browserInWindowToolStripMenuItem + // + this.browserInWindowToolStripMenuItem.Name = "browserInWindowToolStripMenuItem"; + this.browserInWindowToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.browserInWindowToolStripMenuItem.Text = "Browser in window"; + this.browserInWindowToolStripMenuItem.Click += new System.EventHandler(this.browserInWindowToolStripMenuItem_Click); + // + // WikiSepBrowserstoolStripMenuItem + // + this.WikiSepBrowserstoolStripMenuItem.Name = "WikiSepBrowserstoolStripMenuItem"; + this.WikiSepBrowserstoolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.WikiSepBrowserstoolStripMenuItem.Text = "Online Wiki-pages separate Browser"; + this.WikiSepBrowserstoolStripMenuItem.Click += new System.EventHandler(this.WikiSepBrowserstoolStripMenuItem_Click); + // + // toolStripSeparator16 + // + this.toolStripSeparator16.Name = "toolStripSeparator16"; + this.toolStripSeparator16.Size = new System.Drawing.Size(260, 6); + // + // tabbedViewToolStripMenuItem + // + this.tabbedViewToolStripMenuItem.Name = "tabbedViewToolStripMenuItem"; + this.tabbedViewToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.tabbedViewToolStripMenuItem.Text = "Tabbed document"; + this.tabbedViewToolStripMenuItem.Click += new System.EventHandler(this.tabbedViewToolStripMenuItem_Click); + // + // closeActiveWindowToolStripMenuItem + // + this.closeActiveWindowToolStripMenuItem.Name = "closeActiveWindowToolStripMenuItem"; + this.closeActiveWindowToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F4))); + this.closeActiveWindowToolStripMenuItem.Size = new System.Drawing.Size(263, 22); + this.closeActiveWindowToolStripMenuItem.Text = "Close active window"; + this.closeActiveWindowToolStripMenuItem.Click += new System.EventHandler(this.closeActiveWindowToolStripMenuItem_Click); + // + // helpToolStripMenuItem + // + this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.indexToolStripMenuItem, this.helpKeywordToolStripMenuItem, this.toolStripSeparator8, @@ -843,262 +846,283 @@ namespace LSLEditor this.toolStripMenuItem7, this.toolStripSeparator17, this.aboutToolStripMenuItem}); - this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; - this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20); - this.helpToolStripMenuItem.Text = "Help"; - // - // indexToolStripMenuItem - // - this.indexToolStripMenuItem.Name = "indexToolStripMenuItem"; - this.indexToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F1))); - this.indexToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.indexToolStripMenuItem.Text = "Index LSL Wiki"; - this.indexToolStripMenuItem.Click += new System.EventHandler(this.indexToolStripMenuItem_Click); - // - // helpKeywordToolStripMenuItem - // - this.helpKeywordToolStripMenuItem.Name = "helpKeywordToolStripMenuItem"; - this.helpKeywordToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1; - this.helpKeywordToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.helpKeywordToolStripMenuItem.Text = "Help on keyword"; - this.helpKeywordToolStripMenuItem.Click += new System.EventHandler(this.helpKeywordToolStripMenuItem_Click); - // - // toolStripSeparator8 - // - this.toolStripSeparator8.Name = "toolStripSeparator8"; - this.toolStripSeparator8.Size = new System.Drawing.Size(216, 6); - // - // checkForUpdatesToolStripMenuItem - // - this.checkForUpdatesToolStripMenuItem.Name = "checkForUpdatesToolStripMenuItem"; - this.checkForUpdatesToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.checkForUpdatesToolStripMenuItem.Text = "Info on the latest release..."; - this.checkForUpdatesToolStripMenuItem.Click += new System.EventHandler(this.checkForUpdatesToolStripMenuItem_Click); - // - // toolStripMenuItem4 - // - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; - this.toolStripMenuItem4.Size = new System.Drawing.Size(219, 22); - this.toolStripMenuItem4.Text = "Check for update..."; - this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click); - // - // toolStripSeparator9 - // - this.toolStripSeparator9.Name = "toolStripSeparator9"; - this.toolStripSeparator9.Size = new System.Drawing.Size(216, 6); - // - // ReleaseNotesToolStripMenuItem - // - this.ReleaseNotesToolStripMenuItem.Name = "ReleaseNotesToolStripMenuItem"; - this.ReleaseNotesToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.ReleaseNotesToolStripMenuItem.Text = "Release notes..."; - this.ReleaseNotesToolStripMenuItem.Click += new System.EventHandler(this.ReleaseNotesToolStripMenuItem_Click); - // - // toolStripSeparator12 - // - this.toolStripSeparator12.Name = "toolStripSeparator12"; - this.toolStripSeparator12.Size = new System.Drawing.Size(216, 6); - // - // makeBugReporttoolStripMenuItem - // - this.makeBugReporttoolStripMenuItem.Name = "makeBugReporttoolStripMenuItem"; - this.makeBugReporttoolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.makeBugReporttoolStripMenuItem.Text = "Bug report..."; - this.makeBugReporttoolStripMenuItem.Click += new System.EventHandler(this.makeBugReporttoolStripMenuItem_Click); - // - // toolStripMenuItem6 - // - this.toolStripMenuItem6.Name = "toolStripMenuItem6"; - this.toolStripMenuItem6.Size = new System.Drawing.Size(219, 22); - this.toolStripMenuItem6.Text = "LSLEditor Forum..."; - this.toolStripMenuItem6.Click += new System.EventHandler(this.forumStripMenuItem_Click); - // - // toolStripSeparator22 - // - this.toolStripSeparator22.Name = "toolStripSeparator22"; - this.toolStripSeparator22.Size = new System.Drawing.Size(216, 6); - // - // toolStripMenuItem5 - // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; - this.toolStripMenuItem5.Size = new System.Drawing.Size(219, 22); - this.toolStripMenuItem5.Text = "Donate..."; - this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click); - // - // toolStripSeparator15 - // - this.toolStripSeparator15.Name = "toolStripSeparator15"; - this.toolStripSeparator15.Size = new System.Drawing.Size(216, 6); - // - // toolStripMenuItem7 - // - this.toolStripMenuItem7.Name = "toolStripMenuItem7"; - this.toolStripMenuItem7.Size = new System.Drawing.Size(219, 22); - this.toolStripMenuItem7.Text = "Contact..."; - this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click); - // - // toolStripSeparator17 - // - this.toolStripSeparator17.Name = "toolStripSeparator17"; - this.toolStripSeparator17.Size = new System.Drawing.Size(216, 6); - // - // aboutToolStripMenuItem - // - this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; - this.aboutToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.aboutToolStripMenuItem.Text = "About..."; - this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); - // - // openFileDialog1 - // - this.openFileDialog1.FileName = "openFileDialog1"; - // - // statusStrip1 - // - this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; + this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); + this.helpToolStripMenuItem.Text = "Help"; + // + // indexToolStripMenuItem + // + this.indexToolStripMenuItem.Name = "indexToolStripMenuItem"; + this.indexToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F1))); + this.indexToolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.indexToolStripMenuItem.Text = "Index LSL Wiki"; + this.indexToolStripMenuItem.Click += new System.EventHandler(this.indexToolStripMenuItem_Click); + // + // helpKeywordToolStripMenuItem + // + this.helpKeywordToolStripMenuItem.Name = "helpKeywordToolStripMenuItem"; + this.helpKeywordToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1; + this.helpKeywordToolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.helpKeywordToolStripMenuItem.Text = "Help on keyword"; + this.helpKeywordToolStripMenuItem.Click += new System.EventHandler(this.helpKeywordToolStripMenuItem_Click); + // + // toolStripSeparator8 + // + this.toolStripSeparator8.Name = "toolStripSeparator8"; + this.toolStripSeparator8.Size = new System.Drawing.Size(208, 6); + // + // checkForUpdatesToolStripMenuItem + // + this.checkForUpdatesToolStripMenuItem.Name = "checkForUpdatesToolStripMenuItem"; + this.checkForUpdatesToolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.checkForUpdatesToolStripMenuItem.Text = "Info on the latest release..."; + this.checkForUpdatesToolStripMenuItem.Click += new System.EventHandler(this.checkForUpdatesToolStripMenuItem_Click); + // + // toolStripMenuItem4 + // + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(211, 22); + this.toolStripMenuItem4.Text = "Check for update..."; + this.toolStripMenuItem4.Click += new System.EventHandler(this.toolStripMenuItem4_Click); + // + // toolStripSeparator9 + // + this.toolStripSeparator9.Name = "toolStripSeparator9"; + this.toolStripSeparator9.Size = new System.Drawing.Size(208, 6); + // + // ReleaseNotesToolStripMenuItem + // + this.ReleaseNotesToolStripMenuItem.Name = "ReleaseNotesToolStripMenuItem"; + this.ReleaseNotesToolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.ReleaseNotesToolStripMenuItem.Text = "Release notes..."; + this.ReleaseNotesToolStripMenuItem.Click += new System.EventHandler(this.ReleaseNotesToolStripMenuItem_Click); + // + // toolStripSeparator12 + // + this.toolStripSeparator12.Name = "toolStripSeparator12"; + this.toolStripSeparator12.Size = new System.Drawing.Size(208, 6); + // + // makeBugReporttoolStripMenuItem + // + this.makeBugReporttoolStripMenuItem.Name = "makeBugReporttoolStripMenuItem"; + this.makeBugReporttoolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.makeBugReporttoolStripMenuItem.Text = "Bug report..."; + this.makeBugReporttoolStripMenuItem.Click += new System.EventHandler(this.makeBugReporttoolStripMenuItem_Click); + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; + this.toolStripMenuItem6.Size = new System.Drawing.Size(211, 22); + this.toolStripMenuItem6.Text = "LSLEditor Forum..."; + this.toolStripMenuItem6.Click += new System.EventHandler(this.forumStripMenuItem_Click); + // + // toolStripSeparator22 + // + this.toolStripSeparator22.Name = "toolStripSeparator22"; + this.toolStripSeparator22.Size = new System.Drawing.Size(208, 6); + // + // toolStripMenuItem5 + // + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(211, 22); + this.toolStripMenuItem5.Text = "Donate..."; + this.toolStripMenuItem5.Click += new System.EventHandler(this.toolStripMenuItem5_Click); + // + // toolStripSeparator15 + // + this.toolStripSeparator15.Name = "toolStripSeparator15"; + this.toolStripSeparator15.Size = new System.Drawing.Size(208, 6); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; + this.toolStripMenuItem7.Size = new System.Drawing.Size(211, 22); + this.toolStripMenuItem7.Text = "Contact..."; + this.toolStripMenuItem7.Click += new System.EventHandler(this.toolStripMenuItem7_Click); + // + // toolStripSeparator17 + // + this.toolStripSeparator17.Name = "toolStripSeparator17"; + this.toolStripSeparator17.Size = new System.Drawing.Size(208, 6); + // + // aboutToolStripMenuItem + // + this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; + this.aboutToolStripMenuItem.Size = new System.Drawing.Size(211, 22); + this.aboutToolStripMenuItem.Text = "About..."; + this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); + // + // openFileDialog1 + // + this.openFileDialog1.FileName = "openFileDialog1"; + // + // statusStrip1 + // + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel1}); - this.statusStrip1.Location = new System.Drawing.Point(0, 494); - this.statusStrip1.Name = "statusStrip1"; - this.statusStrip1.Size = new System.Drawing.Size(742, 22); - this.statusStrip1.TabIndex = 9; - this.statusStrip1.Text = "statusStrip1"; - // - // toolStripStatusLabel1 - // - this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; - this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17); - // - // contextMenuStrip1 - // - this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.statusStrip1.Location = new System.Drawing.Point(0, 494); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(742, 22); + this.statusStrip1.TabIndex = 9; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripStatusLabel1 + // + this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; + this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17); + // + // contextMenuStrip1 + // + this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.closeTabToolStripMenuItem}); - this.contextMenuStrip1.Name = "contextMenuStrip1"; - this.contextMenuStrip1.Size = new System.Drawing.Size(112, 26); - // - // closeTabToolStripMenuItem - // - this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem"; - this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(111, 22); - this.closeTabToolStripMenuItem.Text = "Close"; - this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click); - // - // panel2 - // - this.panel2.Controls.Add(this.tabControlExtended2); - this.panel2.Dock = System.Windows.Forms.DockStyle.Right; - this.panel2.Location = new System.Drawing.Point(542, 24); - this.panel2.Name = "panel2"; - this.panel2.Size = new System.Drawing.Size(200, 470); - this.panel2.TabIndex = 20; - this.panel2.Visible = false; - // - // tabControlExtended2 - // - this.tabControlExtended2.Controls.Add(this.tabPage1); - this.tabControlExtended2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlExtended2.Location = new System.Drawing.Point(0, 0); - this.tabControlExtended2.Name = "tabControlExtended2"; - this.tabControlExtended2.SelectedIndex = 0; - this.tabControlExtended2.Size = new System.Drawing.Size(200, 470); - this.tabControlExtended2.TabIndex = 0; - // - // tabPage1 - // - this.tabPage1.Controls.Add(this.solutionExplorer1); - this.tabPage1.Location = new System.Drawing.Point(4, 22); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Padding = new System.Windows.Forms.Padding(3); - this.tabPage1.Size = new System.Drawing.Size(192, 444); - this.tabPage1.TabIndex = 0; - this.tabPage1.Text = "SolutionExplorer"; - this.tabPage1.UseVisualStyleBackColor = true; - // - // solutionExplorer1 - // - this.solutionExplorer1.Dock = System.Windows.Forms.DockStyle.Fill; - this.solutionExplorer1.Location = new System.Drawing.Point(3, 3); - this.solutionExplorer1.Name = "solutionExplorer1"; - this.solutionExplorer1.Size = new System.Drawing.Size(186, 438); - this.solutionExplorer1.TabIndex = 0; - // - // splitter2 - // - this.splitter2.Dock = System.Windows.Forms.DockStyle.Right; - this.splitter2.Location = new System.Drawing.Point(534, 24); - this.splitter2.Name = "splitter2"; - this.splitter2.Size = new System.Drawing.Size(8, 470); - this.splitter2.TabIndex = 22; - this.splitter2.TabStop = false; - // - // panel1 - // - this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panel1.Location = new System.Drawing.Point(0, 458); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(534, 36); - this.panel1.TabIndex = 23; - this.panel1.Visible = false; - // - // splitter1 - // - this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.splitter1.Location = new System.Drawing.Point(0, 450); - this.splitter1.Name = "splitter1"; - this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.splitter1.Size = new System.Drawing.Size(534, 8); - this.splitter1.TabIndex = 24; - this.splitter1.TabStop = false; - this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved); - // - // tabControlExtended1 - // - this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; - this.tabControlExtended1.Location = new System.Drawing.Point(0, 414); - this.tabControlExtended1.Name = "tabControlExtended1"; - this.tabControlExtended1.SelectedIndex = 0; - this.tabControlExtended1.Size = new System.Drawing.Size(534, 36); - this.tabControlExtended1.TabIndex = 25; - this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown); - this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged); - // - // openFileDialog2 - // - this.openFileDialog2.FileName = "openFileDialog2"; - // - // LSLEditorForm - // - this.AllowDrop = true; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(742, 516); - this.Controls.Add(this.tabControlExtended1); - this.Controls.Add(this.splitter1); - this.Controls.Add(this.panel1); - this.Controls.Add(this.splitter2); - this.Controls.Add(this.panel2); - this.Controls.Add(this.statusStrip1); - this.Controls.Add(this.menuStrip1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.IsMdiContainer = true; - this.MainMenuStrip = this.menuStrip1; - this.Name = "LSLEditorForm"; - this.Text = "LSLEditor"; - this.DragDrop += new System.Windows.Forms.DragEventHandler(this.LSLEditorForm_DragDrop); - this.MdiChildActivate += new System.EventHandler(this.LSLEditorForm_MdiChildActivate); - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LSLEditorForm_FormClosing); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.LSLEditorForm_DragEnter); - this.Load += new System.EventHandler(this.LSLEditorForm_Load); - this.menuStrip1.ResumeLayout(false); - this.menuStrip1.PerformLayout(); - this.statusStrip1.ResumeLayout(false); - this.statusStrip1.PerformLayout(); - this.contextMenuStrip1.ResumeLayout(false); - this.panel2.ResumeLayout(false); - this.tabControlExtended2.ResumeLayout(false); - this.tabPage1.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.contextMenuStrip1.Name = "contextMenuStrip1"; + this.contextMenuStrip1.Size = new System.Drawing.Size(104, 26); + // + // closeTabToolStripMenuItem + // + this.closeTabToolStripMenuItem.Name = "closeTabToolStripMenuItem"; + this.closeTabToolStripMenuItem.Size = new System.Drawing.Size(103, 22); + this.closeTabToolStripMenuItem.Text = "Close"; + this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click); + // + // panel2 + // + this.panel2.Controls.Add(this.tabControlExtended2); + this.panel2.Dock = System.Windows.Forms.DockStyle.Right; + this.panel2.Location = new System.Drawing.Point(542, 24); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(200, 470); + this.panel2.TabIndex = 20; + this.panel2.Visible = false; + // + // splitter2 + // + this.splitter2.Dock = System.Windows.Forms.DockStyle.Right; + this.splitter2.Location = new System.Drawing.Point(534, 24); + this.splitter2.Name = "splitter2"; + this.splitter2.Size = new System.Drawing.Size(8, 470); + this.splitter2.TabIndex = 22; + this.splitter2.TabStop = false; + // + // panel1 + // + this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.panel1.Location = new System.Drawing.Point(0, 458); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(534, 36); + this.panel1.TabIndex = 23; + this.panel1.Visible = false; + // + // splitter1 + // + this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.splitter1.Location = new System.Drawing.Point(0, 450); + this.splitter1.Name = "splitter1"; + this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.splitter1.Size = new System.Drawing.Size(534, 8); + this.splitter1.TabIndex = 24; + this.splitter1.TabStop = false; + this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved); + // + // openFileDialog2 + // + this.openFileDialog2.FileName = "openFileDialog2"; + // + // tabControlExtended1 + // + this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed; + this.tabControlExtended1.Location = new System.Drawing.Point(0, 414); + this.tabControlExtended1.Name = "tabControlExtended1"; + this.tabControlExtended1.SelectedIndex = 0; + this.tabControlExtended1.Size = new System.Drawing.Size(534, 36); + this.tabControlExtended1.TabIndex = 25; + this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown); + this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged); + // + // tabControlExtended2 + // + this.tabControlExtended2.Controls.Add(this.tabPage1); + this.tabControlExtended2.Controls.Add(this.outline); + this.tabControlExtended2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlExtended2.Location = new System.Drawing.Point(0, 0); + this.tabControlExtended2.Name = "tabControlExtended2"; + this.tabControlExtended2.SelectedIndex = 0; + this.tabControlExtended2.Size = new System.Drawing.Size(200, 470); + this.tabControlExtended2.TabIndex = 0; + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.solutionExplorer1); + this.tabPage1.Location = new System.Drawing.Point(4, 22); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(3); + this.tabPage1.Size = new System.Drawing.Size(192, 444); + this.tabPage1.TabIndex = 0; + this.tabPage1.Text = "SolutionExplorer"; + this.tabPage1.UseVisualStyleBackColor = true; + // + // solutionExplorer1 + // + this.solutionExplorer1.Dock = System.Windows.Forms.DockStyle.Fill; + this.solutionExplorer1.Location = new System.Drawing.Point(3, 3); + this.solutionExplorer1.Name = "solutionExplorer1"; + this.solutionExplorer1.Size = new System.Drawing.Size(186, 438); + this.solutionExplorer1.TabIndex = 0; + // + // outline + // + this.outline.Controls.Add(this.treeView1); + this.outline.Location = new System.Drawing.Point(4, 22); + this.outline.Name = "outline"; + this.outline.Padding = new System.Windows.Forms.Padding(3); + this.outline.Size = new System.Drawing.Size(192, 444); + this.outline.TabIndex = 1; + this.outline.Text = "Outline"; + this.outline.UseVisualStyleBackColor = true; + // + // treeView1 + // + this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill; + this.treeView1.Location = new System.Drawing.Point(3, 3); + this.treeView1.Name = "treeView1"; + this.treeView1.Size = new System.Drawing.Size(186, 438); + this.treeView1.TabIndex = 0; + // + // LSLEditorForm + // + this.AllowDrop = true; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(742, 516); + this.Controls.Add(this.tabControlExtended1); + this.Controls.Add(this.splitter1); + this.Controls.Add(this.panel1); + this.Controls.Add(this.splitter2); + this.Controls.Add(this.panel2); + this.Controls.Add(this.statusStrip1); + this.Controls.Add(this.menuStrip1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.IsMdiContainer = true; + this.MainMenuStrip = this.menuStrip1; + this.Name = "LSLEditorForm"; + this.Text = "LSLEditor"; + this.Load += new System.EventHandler(this.LSLEditorForm_Load); + this.DragDrop += new System.Windows.Forms.DragEventHandler(this.LSLEditorForm_DragDrop); + this.MdiChildActivate += new System.EventHandler(this.LSLEditorForm_MdiChildActivate); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.LSLEditorForm_DragEnter); + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LSLEditorForm_FormClosing); + this.menuStrip1.ResumeLayout(false); + this.menuStrip1.PerformLayout(); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + this.contextMenuStrip1.ResumeLayout(false); + this.panel2.ResumeLayout(false); + this.tabControlExtended2.ResumeLayout(false); + this.tabPage1.ResumeLayout(false); + this.outline.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -1218,5 +1242,7 @@ namespace LSLEditor private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7; private System.Windows.Forms.ToolStripSeparator toolStripSeparator17; private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; + private System.Windows.Forms.TabPage outline; + private System.Windows.Forms.TreeView treeView1; } } \ No newline at end of file