public TabComponentContainerControl(TabComponentContainer component)
		{
			Platform.CheckForNullReference(component, "component");
			
			InitializeComponent();
			_component = component;

			_tabControl.ControlLeftOffset = 3;
			_tabControl.ControlTopOffset = 3;
			_tabControl.ControlRightOffset = 3;
			_tabControl.ControlBottomOffset = 3;

			foreach (TabPage page in _component.Pages)
			{
				Crownwood.DotNetMagic.Controls.TabPage tabPageUI = new Crownwood.DotNetMagic.Controls.TabPage(page.Name);
				tabPageUI.Tag = page;

				_tabControl.TabPages.Add(tabPageUI);
			}

			_tabControl.SelectionChanged += new Crownwood.DotNetMagic.Controls.SelectTabHandler(OnControlSelectionChanged);
			_component.CurrentPageChanged += new EventHandler(OnComponentCurrentPageChanged);

            ShowPage(_component.CurrentPage);
		}
        private void CreateTabGroups()
        {
            _tabbedGroupsControl.PageChanged += new Crownwood.DotNetMagic.Controls.TabbedGroups.PageChangeHandler(OnControlPageChanged);

            _tabbedGroupsControl.RootDirection = _component.LayoutDirection == LayoutDirection.Vertical ?
                Crownwood.DotNetMagic.Common.LayoutDirection.Vertical :
                Crownwood.DotNetMagic.Common.LayoutDirection.Horizontal;

            foreach (TabGroup tabGroup in _component.TabGroups)
            {
                Crownwood.DotNetMagic.Controls.TabGroupLeaf tgl = _tabbedGroupsControl.RootSequence.AddNewLeaf() as Crownwood.DotNetMagic.Controls.TabGroupLeaf;

                foreach (TabPage page in tabGroup.Component.Pages)
                {
                    Crownwood.DotNetMagic.Controls.TabPage tabPageUI = new Crownwood.DotNetMagic.Controls.TabPage(page.Name);
                    tabPageUI.Tag = page;
                    tgl.TabPages.Add(tabPageUI);
                }
            }

            // The weight can only be set after each leaf is created
            // Ask control to reposition children according to new spacing
            for (int i = 0; i < _component.TabGroups.Count; i++)
            {
                Crownwood.DotNetMagic.Controls.TabGroupLeaf tgl = _tabbedGroupsControl.RootSequence[i] as Crownwood.DotNetMagic.Controls.TabGroupLeaf;
                tgl.Space = (decimal)(_component.TabGroups[i].Weight * 100);
            }

            _tabbedGroupsControl.RootSequence.Reposition();
        }
Ejemplo n.º 3
0
		/// <summary>
		/// Constructor.
		/// </summary>
		/// <param name="workspace"></param>
		/// <param name="desktopView"></param>
		protected internal WorkspaceView(Workspace workspace, DesktopWindowView desktopView)
		{
			var componentView = workspace.ComponentView;

			_control = (Control)componentView.GuiElement;
			_tabPage = new Crownwood.DotNetMagic.Controls.TabPage { Control = _control, Tag = this };
			this.DesktopView = desktopView;

			_dialogBoxManager = new WorkspaceDialogBoxViewManager(this, _control);
		}
Ejemplo n.º 4
0
		/// <summary>
		/// Constructor.
		/// </summary>
		/// <param name="workspace"></param>
		/// <param name="desktopView"></param>
		protected internal WorkspaceView(Workspace workspace, DesktopWindowView desktopView)
		{
			var componentView = (IApplicationComponentView)ViewFactory.CreateAssociatedView(workspace.Component.GetType());
			componentView.SetComponent((IApplicationComponent)workspace.Component);

			_control = (Control)componentView.GuiElement;
			_tabPage = new Crownwood.DotNetMagic.Controls.TabPage { Control = _control, Tag = this };
			this.DesktopView = desktopView;

			_dialogBoxManager = new WorkspaceDialogBoxViewManager(this, _control);
		}
Ejemplo n.º 5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStartup));
     this.optNewProj     = new System.Windows.Forms.RadioButton();
     this.optOpenProj    = new System.Windows.Forms.RadioButton();
     this.optRecentProj  = new System.Windows.Forms.RadioButton();
     this.lstRecent      = new System.Windows.Forms.ListBox();
     this.ctRecent       = new ActiproSoftware.WinUICore.OwnerDrawContextMenu();
     this.mnuRemFromList = new ActiproSoftware.WinUICore.OwnerDrawMenuItem();
     this.cmdClose       = new System.Windows.Forms.Button();
     this.cmdOK          = new System.Windows.Forms.Button();
     this.linkLabel1     = new System.Windows.Forms.LinkLabel();
     this.linkLabel2     = new System.Windows.Forms.LinkLabel();
     this.pictureBox2    = new System.Windows.Forms.PictureBox();
     this.pictureBox1    = new System.Windows.Forms.PictureBox();
     this.tabControl1    = new Crownwood.DotNetMagic.Controls.TabControl();
     this.tabPage1       = new Crownwood.DotNetMagic.Controls.TabPage();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // optNewProj
     //
     this.optNewProj.Checked   = true;
     this.optNewProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optNewProj.Location  = new System.Drawing.Point(152, 16);
     this.optNewProj.Name      = "optNewProj";
     this.optNewProj.Size      = new System.Drawing.Size(128, 16);
     this.optNewProj.TabIndex  = 1;
     this.optNewProj.TabStop   = true;
     this.optNewProj.Text      = "Create New Project";
     //
     // optOpenProj
     //
     this.optOpenProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optOpenProj.Location  = new System.Drawing.Point(152, 48);
     this.optOpenProj.Name      = "optOpenProj";
     this.optOpenProj.Size      = new System.Drawing.Size(136, 16);
     this.optOpenProj.TabIndex  = 2;
     this.optOpenProj.Text      = "Open Existing Project";
     //
     // optRecentProj
     //
     this.optRecentProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optRecentProj.Location  = new System.Drawing.Point(152, 80);
     this.optRecentProj.Name      = "optRecentProj";
     this.optRecentProj.Size      = new System.Drawing.Size(136, 16);
     this.optRecentProj.TabIndex  = 2;
     this.optRecentProj.Text      = "Open Recent Project:";
     //
     // lstRecent
     //
     this.lstRecent.ContextMenu         = this.ctRecent;
     this.lstRecent.HorizontalScrollbar = true;
     this.lstRecent.Location            = new System.Drawing.Point(168, 104);
     this.lstRecent.Name         = "lstRecent";
     this.lstRecent.Size         = new System.Drawing.Size(256, 121);
     this.lstRecent.TabIndex     = 3;
     this.lstRecent.DoubleClick += new System.EventHandler(this.lstRecent_DoubleClick);
     //
     // ctRecent
     //
     this.ctRecent.MenuItems.AddRange(new ActiproSoftware.WinUICore.OwnerDrawMenuItem[] {
         this.mnuRemFromList
     });
     this.ctRecent.Popup += new System.EventHandler(this.ctRecent_Popup);
     //
     // mnuRemFromList
     //
     this.mnuRemFromList.Index     = 0;
     this.mnuRemFromList.OwnerDraw = true;
     this.mnuRemFromList.Text      = "&Remove from list";
     this.mnuRemFromList.Click    += new System.EventHandler(this.mnuRemFromList_Click);
     //
     // cmdClose
     //
     this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cmdClose.Location     = new System.Drawing.Point(352, 392);
     this.cmdClose.Name         = "cmdClose";
     this.cmdClose.Size         = new System.Drawing.Size(88, 24);
     this.cmdClose.TabIndex     = 4;
     this.cmdClose.Text         = "Close";
     this.cmdClose.Click       += new System.EventHandler(this.cmdClose_Click);
     //
     // cmdOK
     //
     this.cmdOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdOK.Location  = new System.Drawing.Point(256, 392);
     this.cmdOK.Name      = "cmdOK";
     this.cmdOK.Size      = new System.Drawing.Size(88, 24);
     this.cmdOK.TabIndex  = 4;
     this.cmdOK.Text      = "OK";
     this.cmdOK.Click    += new System.EventHandler(this.cmdOK_Click);
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize     = true;
     this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel1.Location     = new System.Drawing.Point(16, 152);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(102, 17);
     this.linkLabel1.TabIndex     = 6;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "TorqueDev Website";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize     = true;
     this.linkLabel2.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel2.Location     = new System.Drawing.Point(16, 168);
     this.linkLabel2.Name         = "linkLabel2";
     this.linkLabel2.Size         = new System.Drawing.Size(78, 17);
     this.linkLabel2.TabIndex     = 5;
     this.linkLabel2.TabStop      = true;
     this.linkLabel2.Text         = "Garage Games";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // pictureBox2
     //
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox2.Image       = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location    = new System.Drawing.Point(-176, -32);
     this.pictureBox2.Name        = "pictureBox2";
     this.pictureBox2.Size        = new System.Drawing.Size(640, 140);
     this.pictureBox2.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex    = 7;
     this.pictureBox2.TabStop     = false;
     //
     // pictureBox1
     //
     this.pictureBox1.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 0);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(128, 128);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // tabControl1
     //
     this.tabControl1.BackColor           = System.Drawing.SystemColors.Control;
     this.tabControl1.ButtonActiveColor   = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.ButtonInactiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.Font            = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.tabControl1.HotTextColor    = System.Drawing.SystemColors.ActiveCaption;
     this.tabControl1.ImageList       = null;
     this.tabControl1.Location        = new System.Drawing.Point(8, 120);
     this.tabControl1.Name            = "tabControl1";
     this.tabControl1.OfficeDockSides = false;
     this.tabControl1.OfficeStyle     = Crownwood.DotNetMagic.Controls.OfficeStyle.SoftWhite;
     this.tabControl1.SelectedIndex   = 0;
     this.tabControl1.ShowDropSelect  = false;
     this.tabControl1.Size            = new System.Drawing.Size(440, 264);
     this.tabControl1.Style           = Crownwood.DotNetMagic.Common.VisualStyle.IDE2005;
     this.tabControl1.TabIndex        = 8;
     this.tabControl1.TabPages.AddRange(new Crownwood.DotNetMagic.Controls.TabPage[] {
         this.tabPage1
     });
     this.tabControl1.TextColor         = System.Drawing.SystemColors.ControlText;
     this.tabControl1.TextInactiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.TextTips          = true;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage1.Controls.Add(this.optOpenProj);
     this.tabPage1.Controls.Add(this.optRecentProj);
     this.tabPage1.Controls.Add(this.optNewProj);
     this.tabPage1.Controls.Add(this.lstRecent);
     this.tabPage1.Controls.Add(this.linkLabel1);
     this.tabPage1.Controls.Add(this.linkLabel2);
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.InactiveBackColor     = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextColor     = System.Drawing.Color.Empty;
     this.tabPage1.Location            = new System.Drawing.Point(1, 1);
     this.tabPage1.Name                = "tabPage1";
     this.tabPage1.SelectBackColor     = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextColor     = System.Drawing.Color.Empty;
     this.tabPage1.Size                = new System.Drawing.Size(438, 237);
     this.tabPage1.TabIndex            = 4;
     this.tabPage1.Title               = "Welcome";
     this.tabPage1.ToolTip             = "Welcome";
     //
     // frmStartup
     //
     this.AcceptButton      = this.cmdOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.CancelButton      = this.cmdClose;
     this.ClientSize        = new System.Drawing.Size(458, 431);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdOK);
     this.Controls.Add(this.tabControl1);
     this.Font            = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmStartup";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Welcome";
     this.Load           += new System.EventHandler(this.frmStartup_Load);
     this.Closed         += new System.EventHandler(this.frmStartup_Closed);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 6
0
 public PrimaryTab(Crownwood.DotNetMagic.Controls.TabPage NewPage, T Control, ICodeweaverPlugin plugin)
 {
     this._control = Control;
     this.page     = NewPage;
     this.plugin   = plugin;
 }
Ejemplo n.º 7
0
 public PrimaryTab(Crownwood.DotNetMagic.Controls.TabPage NewPage, T Control)
 {
     this._control = Control;
     this.page     = NewPage;
 }
Ejemplo n.º 8
0
 public SortedTab(Crownwood.DotNetMagic.Controls.TabPage page, int Index)
 {
     this.Page  = page;
     this.Index = Index;
 }
Ejemplo n.º 9
0
        private void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e)
        {
            string url = e.Url.ToString();

            if (e.TargetFrameName.ToLower() == "_blank")
            {
                g.Main.SpawnBrowser(url, false);
                e.Cancel = true;
                return;
            }

            if (url.StartsWith("torquedev://"))
            {
                // Perform a custom action:
                url = url.Substring(0, url.Length - 1).Replace("torquedev://", "");

                if (url == "newproject")
                {
                    g.Main.mnuFile_NewProject_Click(null, null);
                }
                else if (url == "openproject")
                {
                    g.Main.mnuFile_OpenProj_Click(null, null);
                }
                else if (url == "welcome")
                {
                    g.Main.SpawnBrowser("welcome", true);
                }
                else if (url == "firstrun")
                {
                    g.Main.SpawnBrowser("firstrun", false);
                }
                else
                {
                    // If it's anything else, it's a recent project... parse the
                    // project filename and open it, but first decode the URL
                    url = url.Remove(0, 1);
                    url = System.Web.HttpUtility.UrlDecode(url).Replace("/", "\\");

                    // Check if projects are open
                    if (g.Project != null)
                    {
                        if (!g.Main.PerformCloseOperations())
                        {
                            return;
                        }
                    }

                    // Open project
                    g.Main.OpenProject(url);
                }

                //g.Main.tabMain.LeafForPage(this._parent_tab).TabPages.Remove(this._parent_tab);
                //g.Main._al_browsers.Remove(this._parent_tab);
                g.Main.CloseTab <UCBrowser>(g.Browsers.FindByTab(this._parent_tab));
                g.Browsers.Remove(g.Browsers.FindByTab(this._parent_tab));

                this._parent_tab = null;
                this.Dispose();
                return;
            }
            else if (url.StartsWith("extern://"))
            {
                // Spawn an external browser
                url = url.Replace("extern://", "http://");
                System.Diagnostics.Process.Start(url);
            }
        }
Ejemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lblVerString = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.cmdClose = new System.Windows.Forms.Button();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.tabPage4 = new Crownwood.DotNetMagic.Controls.TabPage();
     this.lvPlugins = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label4 = new System.Windows.Forms.Label();
     this.menuCommand1 = new Crownwood.DotNetMagic.Menus.MenuCommand();
     this.lblMemUtil = new System.Windows.Forms.Label();
     this.tabControl1 = new Crownwood.DotNetMagic.Controls.TabControl();
     this.tabPage1 = new Crownwood.DotNetMagic.Controls.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lblLicLimit = new System.Windows.Forms.Label();
     this.lblLicType = new System.Windows.Forms.Label();
     this.lblLicExp = new System.Windows.Forms.Label();
     this.lblLicSerial = new System.Windows.Forms.Label();
     this.lblLicCompany = new System.Windows.Forms.Label();
     this.lblLicName = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.tabPage2 = new Crownwood.DotNetMagic.Controls.TabPage();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.tabPage3 = new Crownwood.DotNetMagic.Controls.TabPage();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.markupLabel1 = new ActiproSoftware.MarkupLabel.MarkupLabel();
     this.lblMiscMsg = new System.Windows.Forms.Label();
     this.tabPage4.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(80, 72);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(165, 15);
     this.label1.TabIndex = 1;
     this.label1.Text = "TorqueDev Development IDE";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(80, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(228, 14);
     this.label2.TabIndex = 1;
     this.label2.Text = "Copyright (c) 2005-2009 netMercs Group LLC";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(80, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(99, 14);
     this.label3.TabIndex = 1;
     this.label3.Text = "All rights reserved.";
     //
     // lblVerString
     //
     this.lblVerString.AutoSize = true;
     this.lblVerString.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblVerString.Location = new System.Drawing.Point(8, 320);
     this.lblVerString.Name = "lblVerString";
     this.lblVerString.Size = new System.Drawing.Size(16, 14);
     this.lblVerString.TabIndex = 3;
     this.lblVerString.Text = "%";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel1.Location = new System.Drawing.Point(8, 288);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(102, 13);
     this.linkLabel1.TabIndex = 4;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "TorqueDev Website";
     this.toolTip1.SetToolTip(this.linkLabel1, "http://www.torquedev.com/ - Official TorqueDev Website");
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel2.Location = new System.Drawing.Point(315, 288);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(77, 13);
     this.linkLabel2.TabIndex = 4;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "Garage Games";
     this.linkLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.linkLabel2, "http://www.garagegames.com/ - Offical site of the creators of the Torque engine");
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // cmdClose
     //
     this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdClose.Location = new System.Drawing.Point(327, 382);
     this.cmdClose.Name = "cmdClose";
     this.cmdClose.Size = new System.Drawing.Size(80, 24);
     this.cmdClose.TabIndex = 5;
     this.cmdClose.Text = "Close";
     this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage4.Controls.Add(this.lvPlugins);
     this.tabPage4.Controls.Add(this.label4);
     this.tabPage4.InactiveBackColor = System.Drawing.Color.Empty;
     this.tabPage4.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage4.InactiveTextColor = System.Drawing.Color.Empty;
     this.tabPage4.Location = new System.Drawing.Point(1, 1);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.SelectBackColor = System.Drawing.Color.Empty;
     this.tabPage4.Selected = false;
     this.tabPage4.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage4.SelectTextColor = System.Drawing.Color.Empty;
     this.tabPage4.Size = new System.Drawing.Size(398, 341);
     this.tabPage4.TabIndex = 7;
     this.tabPage4.Title = "Loaded Plugins";
     this.tabPage4.ToolTip = "Page";
     this.toolTip1.SetToolTip(this.tabPage4, "Loaded Plugins");
     //
     // lvPlugins
     //
     this.lvPlugins.Activation = System.Windows.Forms.ItemActivation.TwoClick;
     this.lvPlugins.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader5,
     this.columnHeader2,
     this.columnHeader6,
     this.columnHeader3,
     this.columnHeader4});
     this.lvPlugins.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvPlugins.FullRowSelect = true;
     this.lvPlugins.Location = new System.Drawing.Point(0, 0);
     this.lvPlugins.Name = "lvPlugins";
     this.lvPlugins.Size = new System.Drawing.Size(398, 328);
     this.lvPlugins.TabIndex = 0;
     this.lvPlugins.UseCompatibleStateImageBehavior = false;
     this.lvPlugins.View = System.Windows.Forms.View.Details;
     this.lvPlugins.ItemActivate += new System.EventHandler(this.lvPlugins_ItemActivate);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Name";
     this.columnHeader1.Width = 109;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Version";
     this.columnHeader5.Width = 91;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Author";
     this.columnHeader2.Width = 96;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Description";
     this.columnHeader6.Width = 120;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Copyright";
     this.columnHeader3.Width = 126;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Guid";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.label4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(0, 328);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(398, 13);
     this.label4.TabIndex = 1;
     this.label4.Text = "Double-click a plugin for more information";
     //
     // menuCommand1
     //
     this.menuCommand1.Description = "Menu";
     this.menuCommand1.Text = "Menu";
     //
     // lblMemUtil
     //
     this.lblMemUtil.Location = new System.Drawing.Point(232, 320);
     this.lblMemUtil.Name = "lblMemUtil";
     this.lblMemUtil.Size = new System.Drawing.Size(160, 16);
     this.lblMemUtil.TabIndex = 7;
     this.lblMemUtil.Text = "%";
     this.lblMemUtil.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lblMemUtil.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblMemUtil_MouseDown);
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.SystemColors.Control;
     this.tabControl1.ButtonActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabControl1.ButtonInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabControl1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.tabControl1.HotTextColor = System.Drawing.SystemColors.ActiveCaption;
     this.tabControl1.ImageList = null;
     this.tabControl1.Location = new System.Drawing.Point(8, 8);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.OfficeDockSides = false;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.ShowDropSelect = false;
     this.tabControl1.Size = new System.Drawing.Size(400, 368);
     this.tabControl1.Style = Crownwood.DotNetMagic.Common.VisualStyle.IDE2005;
     this.tabControl1.TabIndex = 8;
     this.tabControl1.TabPages.AddRange(new Crownwood.DotNetMagic.Controls.TabPage[] {
     this.tabPage1,
     this.tabPage4,
     this.tabPage2,
     this.tabPage3});
     this.tabControl1.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.TextInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabControl1.TextTips = true;
     this.tabControl1.SelectionChanged += new Crownwood.DotNetMagic.Controls.SelectTabHandler(this.tabControl1_SelectionChanged);
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.lblVerString);
     this.tabPage1.Controls.Add(this.lblMemUtil);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.linkLabel2);
     this.tabPage1.Controls.Add(this.linkLabel1);
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.Controls.Add(this.pictureBox2);
     this.tabPage1.InactiveBackColor = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextColor = System.Drawing.Color.Empty;
     this.tabPage1.Location = new System.Drawing.Point(1, 1);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.SelectBackColor = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextColor = System.Drawing.Color.Empty;
     this.tabPage1.Size = new System.Drawing.Size(398, 341);
     this.tabPage1.TabIndex = 4;
     this.tabPage1.Title = "About";
     this.tabPage1.ToolTip = "About";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lblLicLimit);
     this.groupBox1.Controls.Add(this.lblLicType);
     this.groupBox1.Controls.Add(this.lblLicExp);
     this.groupBox1.Controls.Add(this.lblLicSerial);
     this.groupBox1.Controls.Add(this.lblLicCompany);
     this.groupBox1.Controls.Add(this.lblLicName);
     this.groupBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(11, 143);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(374, 131);
     this.groupBox1.TabIndex = 13;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Licensed To";
     //
     // lblLicLimit
     //
     this.lblLicLimit.AutoSize = true;
     this.lblLicLimit.Location = new System.Drawing.Point(6, 112);
     this.lblLicLimit.Name = "lblLicLimit";
     this.lblLicLimit.Size = new System.Drawing.Size(126, 14);
     this.lblLicLimit.TabIndex = 2;
     this.lblLicLimit.Text = "Licensed for 1 Computer";
     //
     // lblLicType
     //
     this.lblLicType.Location = new System.Drawing.Point(155, 113);
     this.lblLicType.Name = "lblLicType";
     this.lblLicType.Size = new System.Drawing.Size(213, 13);
     this.lblLicType.TabIndex = 1;
     this.lblLicType.Text = "Standard License";
     this.lblLicType.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblLicExp
     //
     this.lblLicExp.Location = new System.Drawing.Point(9, 92);
     this.lblLicExp.Name = "lblLicExp";
     this.lblLicExp.Size = new System.Drawing.Size(359, 13);
     this.lblLicExp.TabIndex = 0;
     this.lblLicExp.Text = "License Does Not Expire";
     this.lblLicExp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicSerial
     //
     this.lblLicSerial.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.lblLicSerial.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicSerial.Location = new System.Drawing.Point(6, 61);
     this.lblLicSerial.Name = "lblLicSerial";
     this.lblLicSerial.Size = new System.Drawing.Size(362, 21);
     this.lblLicSerial.TabIndex = 0;
     this.lblLicSerial.Text = "CWF-134444-00UL";
     this.lblLicSerial.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicCompany
     //
     this.lblLicCompany.Location = new System.Drawing.Point(10, 32);
     this.lblLicCompany.Name = "lblLicCompany";
     this.lblLicCompany.Size = new System.Drawing.Size(359, 13);
     this.lblLicCompany.TabIndex = 0;
     this.lblLicCompany.Text = "Company";
     this.lblLicCompany.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblLicName
     //
     this.lblLicName.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLicName.Location = new System.Drawing.Point(9, 17);
     this.lblLicName.Name = "lblLicName";
     this.lblLicName.Size = new System.Drawing.Size(359, 16);
     this.lblLicName.TabIndex = 0;
     this.lblLicName.Text = "User";
     this.lblLicName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(24, 72);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(48, 48);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
     //
     // pictureBox2
     //
     this.pictureBox2.Image = global::TSDev.Properties.Resources.cw_about_std;
     this.pictureBox2.Location = new System.Drawing.Point(-1, 0);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(408, 58);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 10;
     this.pictureBox2.TabStop = false;
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage2.Controls.Add(this.textBox1);
     this.tabPage2.InactiveBackColor = System.Drawing.Color.Empty;
     this.tabPage2.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage2.InactiveTextColor = System.Drawing.Color.Empty;
     this.tabPage2.Location = new System.Drawing.Point(1, 1);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.SelectBackColor = System.Drawing.Color.Empty;
     this.tabPage2.Selected = false;
     this.tabPage2.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage2.SelectTextColor = System.Drawing.Color.Empty;
     this.tabPage2.Size = new System.Drawing.Size(398, 341);
     this.tabPage2.TabIndex = 5;
     this.tabPage2.Title = "Contributors";
     this.tabPage2.ToolTip = "Contributors";
     //
     // textBox1
     //
     this.textBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(0, 0);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(398, 341);
     this.textBox1.TabIndex = 0;
     this.textBox1.TabStop = false;
     this.textBox1.Text = resources.GetString("textBox1.Text");
     this.textBox1.Enter += new System.EventHandler(this.textBox1_Enter);
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage3.Controls.Add(this.textBox2);
     this.tabPage3.Controls.Add(this.markupLabel1);
     this.tabPage3.InactiveBackColor = System.Drawing.Color.Empty;
     this.tabPage3.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage3.InactiveTextColor = System.Drawing.Color.Empty;
     this.tabPage3.Location = new System.Drawing.Point(1, 1);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.SelectBackColor = System.Drawing.Color.Empty;
     this.tabPage3.Selected = false;
     this.tabPage3.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage3.SelectTextColor = System.Drawing.Color.Empty;
     this.tabPage3.Size = new System.Drawing.Size(398, 341);
     this.tabPage3.TabIndex = 6;
     this.tabPage3.Title = "Thanks To";
     this.tabPage3.ToolTip = "Thanks To";
     //
     // textBox2
     //
     this.textBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox2.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.textBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBox2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(0, 60);
     this.textBox2.Multiline = true;
     this.textBox2.Name = "textBox2";
     this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox2.Size = new System.Drawing.Size(398, 281);
     this.textBox2.TabIndex = 1;
     this.textBox2.TabStop = false;
     this.textBox2.Text = resources.GetString("textBox2.Text");
     this.textBox2.Enter += new System.EventHandler(this.textBox1_Enter);
     //
     // markupLabel1
     //
     this.markupLabel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.markupLabel1.Location = new System.Drawing.Point(0, 0);
     this.markupLabel1.MaxWidth = 2147483647;
     this.markupLabel1.Name = "markupLabel1";
     this.markupLabel1.Size = new System.Drawing.Size(398, 60);
     this.markupLabel1.TabIndex = 14;
     this.markupLabel1.Text = resources.GetString("markupLabel1.Text");
     this.markupLabel1.LinkClick += new ActiproSoftware.MarkupLabel.MarkupLabelLinkClickEventHandler(this.markupLabel1_LinkClick);
     //
     // lblMiscMsg
     //
     this.lblMiscMsg.AutoSize = true;
     this.lblMiscMsg.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMiscMsg.Location = new System.Drawing.Point(8, 392);
     this.lblMiscMsg.Name = "lblMiscMsg";
     this.lblMiscMsg.Size = new System.Drawing.Size(16, 14);
     this.lblMiscMsg.TabIndex = 9;
     this.lblMiscMsg.Text = "%";
     this.lblMiscMsg.Visible = false;
     //
     // frmAbout
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ClientSize = new System.Drawing.Size(417, 415);
     this.Controls.Add(this.lblMiscMsg);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.cmdClose);
     this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmAbout";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "About TorqueDev";
     this.Closed += new System.EventHandler(this.frmAbout_Closed);
     this.Load += new System.EventHandler(this.frmAbout_Load);
     this.tabPage4.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmConfig));
     ActiproSoftware.SyntaxEditor.Document document1 = new ActiproSoftware.SyntaxEditor.Document();
     this.tabMain = new Crownwood.DotNetMagic.Controls.TabControl();
     this.tpGeneral = new Crownwood.DotNetMagic.Controls.TabPage();
     this.optRenderStd = new System.Windows.Forms.RadioButton();
     this.optRenderPro = new System.Windows.Forms.RadioButton();
     this.label7 = new System.Windows.Forms.Label();
     this.cmdClearRecent = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.chkAC_Infopop = new System.Windows.Forms.CheckBox();
     this.chkAC_Obj = new System.Windows.Forms.CheckBox();
     this.chkAC_TypeAsYouGo = new System.Windows.Forms.CheckBox();
     this.chkAC_Var = new System.Windows.Forms.CheckBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmdOnDebugExec = new System.Windows.Forms.Button();
     this.chkDebugSummary = new System.Windows.Forms.CheckBox();
     this.chkErrChkDbg = new System.Windows.Forms.CheckBox();
     this.label1 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.chkCheckUpdates = new System.Windows.Forms.CheckBox();
     this.tpHighlighting = new Crownwood.DotNetMagic.Controls.TabPage();
     this.cmdResetColors = new System.Windows.Forms.Button();
     this.cmdAdColor = new System.Windows.Forms.Button();
     this.lstColorDefs = new System.Windows.Forms.ListBox();
     this.txtSynEd = new ActiproSoftware.SyntaxEditor.SyntaxEditor();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tpShortcut = new Crownwood.DotNetMagic.Controls.TabPage();
     this.tvMenus = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.cmdApplyShortcut = new System.Windows.Forms.Button();
     this.txtAssgnShortcut = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lvShortcuts = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label3 = new System.Windows.Forms.Label();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.tpEditor = new Crownwood.DotNetMagic.Controls.TabPage();
     this.chkConvTabToSpc = new System.Windows.Forms.CheckBox();
     this.txtTabSpace = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.chk_Ed_Virtlines = new System.Windows.Forms.CheckBox();
     this.chk_Ed_ShowLines = new System.Windows.Forms.CheckBox();
     this.chk_Ed_ShowWhitespace = new System.Windows.Forms.CheckBox();
     this.chk_Ed_ShowNewline = new System.Windows.Forms.CheckBox();
     this.chk_Ed_ShowBrackets = new System.Windows.Forms.CheckBox();
     this.chk_Ed_Wordwrap = new System.Windows.Forms.CheckBox();
     this.chk_Ed_ShowTabs = new System.Windows.Forms.CheckBox();
     this.chk_Ed_Errs = new System.Windows.Forms.CheckBox();
     this.chkScrollHint = new System.Windows.Forms.CheckBox();
     this.chkAutoColl = new System.Windows.Forms.CheckBox();
     this.chk_E_IndentGuides = new System.Windows.Forms.CheckBox();
     this.chk_Ed_CodeFold = new System.Windows.Forms.CheckBox();
     this.chk_Ed_AutoIndent = new System.Windows.Forms.CheckBox();
     this.cmdFlushAuth = new System.Windows.Forms.Button();
     this.cmdCancel = new System.Windows.Forms.Button();
     this.cmdOK = new System.Windows.Forms.Button();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.ctxReset = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.ctxReset_DefaultClr = new System.Windows.Forms.ToolStripMenuItem();
     this.ctxReset_NoolnessDarkClr = new System.Windows.Forms.ToolStripMenuItem();
     this.tabMain.SuspendLayout();
     this.tpGeneral.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tpHighlighting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.tpShortcut.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.tpEditor.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.ctxReset.SuspendLayout();
     this.SuspendLayout();
     //
     // tabMain
     //
     this.tabMain.BackColor = System.Drawing.SystemColors.Control;
     this.tabMain.ButtonActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabMain.ButtonInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabMain.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.tabMain.HotTextColor = System.Drawing.SystemColors.ActiveCaption;
     this.tabMain.ImageList = null;
     this.tabMain.Location = new System.Drawing.Point(8, 8);
     this.tabMain.Name = "tabMain";
     this.tabMain.OfficeDockSides = false;
     this.tabMain.SelectedIndex = 0;
     this.tabMain.ShowArrows = true;
     this.tabMain.ShowDropSelect = false;
     this.tabMain.ShrinkPagesToFit = false;
     this.tabMain.Size = new System.Drawing.Size(376, 384);
     this.tabMain.Style = Crownwood.DotNetMagic.Common.VisualStyle.IDE2005;
     this.tabMain.TabIndex = 1;
     this.tabMain.TabPages.AddRange(new Crownwood.DotNetMagic.Controls.TabPage[] {
     this.tpGeneral,
     this.tpHighlighting,
     this.tpShortcut,
     this.tpEditor});
     this.tabMain.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabMain.TextInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tabMain.TextTips = true;
     //
     // tpGeneral
     //
     this.tpGeneral.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tpGeneral.Controls.Add(this.optRenderStd);
     this.tpGeneral.Controls.Add(this.optRenderPro);
     this.tpGeneral.Controls.Add(this.label7);
     this.tpGeneral.Controls.Add(this.cmdClearRecent);
     this.tpGeneral.Controls.Add(this.groupBox3);
     this.tpGeneral.Controls.Add(this.groupBox2);
     this.tpGeneral.Controls.Add(this.label1);
     this.tpGeneral.Controls.Add(this.pictureBox1);
     this.tpGeneral.Controls.Add(this.chkCheckUpdates);
     this.tpGeneral.InactiveBackColor = System.Drawing.Color.Empty;
     this.tpGeneral.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tpGeneral.InactiveTextColor = System.Drawing.Color.Empty;
     this.tpGeneral.Location = new System.Drawing.Point(1, 1);
     this.tpGeneral.Name = "tpGeneral";
     this.tpGeneral.SelectBackColor = System.Drawing.Color.Empty;
     this.tpGeneral.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tpGeneral.SelectTextColor = System.Drawing.Color.Empty;
     this.tpGeneral.Size = new System.Drawing.Size(374, 357);
     this.tpGeneral.TabIndex = 4;
     this.tpGeneral.Title = "General Preferences";
     this.tpGeneral.ToolTip = "Page";
     //
     // optRenderStd
     //
     this.optRenderStd.AutoSize = true;
     this.optRenderStd.Enabled = false;
     this.optRenderStd.Location = new System.Drawing.Point(191, 283);
     this.optRenderStd.Name = "optRenderStd";
     this.optRenderStd.Size = new System.Drawing.Size(69, 17);
     this.optRenderStd.TabIndex = 8;
     this.optRenderStd.TabStop = true;
     this.optRenderStd.Text = "Standard";
     this.toolTip1.SetToolTip(this.optRenderStd, "Classic Windows environment display.");
     this.optRenderStd.UseVisualStyleBackColor = true;
     this.optRenderStd.CheckedChanged += new System.EventHandler(this.optRenderStd_CheckedChanged);
     //
     // optRenderPro
     //
     this.optRenderPro.AutoSize = true;
     this.optRenderPro.Enabled = false;
     this.optRenderPro.Location = new System.Drawing.Point(102, 283);
     this.optRenderPro.Name = "optRenderPro";
     this.optRenderPro.Size = new System.Drawing.Size(83, 17);
     this.optRenderPro.TabIndex = 8;
     this.optRenderPro.TabStop = true;
     this.optRenderPro.Text = "Professional";
     this.toolTip1.SetToolTip(this.optRenderPro, "Microsoft Office 2003-style \"blue skin\" display.");
     this.optRenderPro.UseVisualStyleBackColor = true;
     this.optRenderPro.CheckedChanged += new System.EventHandler(this.optRenderPro_CheckedChanged);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Enabled = false;
     this.label7.Location = new System.Drawing.Point(13, 285);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(83, 13);
     this.label7.TabIndex = 7;
     this.label7.Text = "Display Render:";
     //
     // cmdClearRecent
     //
     this.cmdClearRecent.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdClearRecent.Location = new System.Drawing.Point(240, 318);
     this.cmdClearRecent.Name = "cmdClearRecent";
     this.cmdClearRecent.Size = new System.Drawing.Size(120, 24);
     this.cmdClearRecent.TabIndex = 6;
     this.cmdClearRecent.Text = "Clear Recent Items";
     this.toolTip1.SetToolTip(this.cmdClearRecent, "Cleares recently-opened projects in welcome screen.");
     this.cmdClearRecent.Click += new System.EventHandler(this.cmdClearRecent_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.chkAC_Infopop);
     this.groupBox3.Controls.Add(this.chkAC_Obj);
     this.groupBox3.Controls.Add(this.chkAC_TypeAsYouGo);
     this.groupBox3.Controls.Add(this.chkAC_Var);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox3.Location = new System.Drawing.Point(16, 152);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(344, 120);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Auto-Complete";
     //
     // chkAC_Infopop
     //
     this.chkAC_Infopop.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkAC_Infopop.Location = new System.Drawing.Point(8, 24);
     this.chkAC_Infopop.Name = "chkAC_Infopop";
     this.chkAC_Infopop.Size = new System.Drawing.Size(200, 16);
     this.chkAC_Infopop.TabIndex = 0;
     this.chkAC_Infopop.Text = "Enable Automatic Function Infopop";
     this.toolTip1.SetToolTip(this.chkAC_Infopop, "Enables function tooltips to be displayed on open parenthese.");
     this.chkAC_Infopop.CheckedChanged += new System.EventHandler(this.chkAC_Infopop_CheckedChanged);
     //
     // chkAC_Obj
     //
     this.chkAC_Obj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkAC_Obj.Location = new System.Drawing.Point(8, 48);
     this.chkAC_Obj.Name = "chkAC_Obj";
     this.chkAC_Obj.Size = new System.Drawing.Size(280, 16);
     this.chkAC_Obj.TabIndex = 0;
     this.chkAC_Obj.Text = "Enable Automatic Object Memberlist (:: or .)";
     this.toolTip1.SetToolTip(this.chkAC_Obj, "Displays object memberlist in dropdown on :: or .");
     this.chkAC_Obj.CheckedChanged += new System.EventHandler(this.chkAC_Obj_CheckedChanged);
     //
     // chkAC_TypeAsYouGo
     //
     this.chkAC_TypeAsYouGo.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkAC_TypeAsYouGo.Location = new System.Drawing.Point(8, 94);
     this.chkAC_TypeAsYouGo.Name = "chkAC_TypeAsYouGo";
     this.chkAC_TypeAsYouGo.Size = new System.Drawing.Size(280, 16);
     this.chkAC_TypeAsYouGo.TabIndex = 0;
     this.chkAC_TypeAsYouGo.Text = "Enable Type-As-You-Go Completion";
     this.toolTip1.SetToolTip(this.chkAC_TypeAsYouGo, "Enables display of valid functions and variables as you type them.");
     this.chkAC_TypeAsYouGo.CheckedChanged += new System.EventHandler(this.chkAC_TypeAsYouGo_CheckedChanged);
     //
     // chkAC_Var
     //
     this.chkAC_Var.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkAC_Var.Location = new System.Drawing.Point(8, 72);
     this.chkAC_Var.Name = "chkAC_Var";
     this.chkAC_Var.Size = new System.Drawing.Size(280, 16);
     this.chkAC_Var.TabIndex = 0;
     this.chkAC_Var.Text = "Enable Automatic Variable Memberlist (__decl)";
     this.toolTip1.SetToolTip(this.chkAC_Var, "Enables declared variable memberlist on dot-operator.");
     this.chkAC_Var.CheckedChanged += new System.EventHandler(this.chkAC_Var_CheckedChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cmdOnDebugExec);
     this.groupBox2.Controls.Add(this.chkDebugSummary);
     this.groupBox2.Controls.Add(this.chkErrChkDbg);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location = new System.Drawing.Point(16, 72);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(344, 72);
     this.groupBox2.TabIndex = 4;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Debugger";
     //
     // cmdOnDebugExec
     //
     this.cmdOnDebugExec.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdOnDebugExec.Location = new System.Drawing.Point(208, 32);
     this.cmdOnDebugExec.Name = "cmdOnDebugExec";
     this.cmdOnDebugExec.Size = new System.Drawing.Size(120, 24);
     this.cmdOnDebugExec.TabIndex = 2;
     this.cmdOnDebugExec.Text = "On Debug Execute";
     this.cmdOnDebugExec.Click += new System.EventHandler(this.cmdOnDebugExec_Click);
     //
     // chkDebugSummary
     //
     this.chkDebugSummary.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkDebugSummary.Location = new System.Drawing.Point(8, 24);
     this.chkDebugSummary.Name = "chkDebugSummary";
     this.chkDebugSummary.Size = new System.Drawing.Size(144, 16);
     this.chkDebugSummary.TabIndex = 1;
     this.chkDebugSummary.Text = "Show Debug Summary";
     this.toolTip1.SetToolTip(this.chkDebugSummary, "Displays console output in a browser window when debugging is completed.");
     this.chkDebugSummary.CheckedChanged += new System.EventHandler(this.chkDebugSummary_CheckedChanged);
     //
     // chkErrChkDbg
     //
     this.chkErrChkDbg.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkErrChkDbg.Location = new System.Drawing.Point(8, 48);
     this.chkErrChkDbg.Name = "chkErrChkDbg";
     this.chkErrChkDbg.Size = new System.Drawing.Size(192, 16);
     this.chkErrChkDbg.TabIndex = 1;
     this.chkErrChkDbg.Text = "Check for errors before debugging";
     this.toolTip1.SetToolTip(this.chkErrChkDbg, "Scans project for syntax errors before entering debug mode.");
     this.chkErrChkDbg.CheckedChanged += new System.EventHandler(this.chkErrChkDbg_CheckedChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(72, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(288, 48);
     this.label1.TabIndex = 2;
     this.label1.Text = "This page allows you to configure the basic functionality of the TorqueDev develo" +
     "pment environment:";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(16, 8);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(48, 48);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // chkCheckUpdates
     //
     this.chkCheckUpdates.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkCheckUpdates.Location = new System.Drawing.Point(16, 323);
     this.chkCheckUpdates.Name = "chkCheckUpdates";
     this.chkCheckUpdates.Size = new System.Drawing.Size(160, 16);
     this.chkCheckUpdates.TabIndex = 1;
     this.chkCheckUpdates.Text = "Check for Updates Daily";
     this.toolTip1.SetToolTip(this.chkCheckUpdates, "Checks for CW updates once per day.");
     this.chkCheckUpdates.Visible = false;
     this.chkCheckUpdates.CheckedChanged += new System.EventHandler(this.chkCheckUpdates_CheckedChanged);
     //
     // tpHighlighting
     //
     this.tpHighlighting.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tpHighlighting.Controls.Add(this.cmdResetColors);
     this.tpHighlighting.Controls.Add(this.cmdAdColor);
     this.tpHighlighting.Controls.Add(this.lstColorDefs);
     this.tpHighlighting.Controls.Add(this.txtSynEd);
     this.tpHighlighting.Controls.Add(this.pictureBox2);
     this.tpHighlighting.Controls.Add(this.label2);
     this.tpHighlighting.InactiveBackColor = System.Drawing.Color.Empty;
     this.tpHighlighting.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tpHighlighting.InactiveTextColor = System.Drawing.Color.Empty;
     this.tpHighlighting.Location = new System.Drawing.Point(1, 1);
     this.tpHighlighting.Name = "tpHighlighting";
     this.tpHighlighting.SelectBackColor = System.Drawing.Color.Empty;
     this.tpHighlighting.Selected = false;
     this.tpHighlighting.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tpHighlighting.SelectTextColor = System.Drawing.Color.Empty;
     this.tpHighlighting.Size = new System.Drawing.Size(374, 357);
     this.tpHighlighting.TabIndex = 5;
     this.tpHighlighting.Title = "Syntax Highlighting";
     this.tpHighlighting.ToolTip = "Page";
     //
     // cmdResetColors
     //
     this.cmdResetColors.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdResetColors.Location = new System.Drawing.Point(288, 64);
     this.cmdResetColors.Name = "cmdResetColors";
     this.cmdResetColors.Size = new System.Drawing.Size(72, 24);
     this.cmdResetColors.TabIndex = 9;
     this.cmdResetColors.Text = "Reset";
     this.cmdResetColors.MouseUp += new System.Windows.Forms.MouseEventHandler(this.cmdResetColors_MouseUp);
     //
     // cmdAdColor
     //
     this.cmdAdColor.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdAdColor.Location = new System.Drawing.Point(288, 104);
     this.cmdAdColor.Name = "cmdAdColor";
     this.cmdAdColor.Size = new System.Drawing.Size(72, 24);
     this.cmdAdColor.TabIndex = 9;
     this.cmdAdColor.Text = "Adjust";
     this.cmdAdColor.Click += new System.EventHandler(this.cmdAdColor_Click);
     //
     // lstColorDefs
     //
     this.lstColorDefs.Items.AddRange(new object[] {
     "Built-In Preprocessors",
     "Comment Contents",
     "Comment Delimiters",
     "Default Font and Colors",
     "Engine Functions",
     "Global Variables",
     "Indent Guidelines",
     "Line Numbers",
     "Line Number Margin",
     "Local Variables",
     "Numbers",
     "Operators",
     "Reserved Words",
     "Scope Resolution Operators",
     "Special Comment Contents",
     "Special Comment Delimiters",
     "String Delimiters",
     "String Contents",
     "Tagged String Delimiters",
     "Tagged String Contents",
     "Variable Declarations"});
     this.lstColorDefs.Location = new System.Drawing.Point(16, 64);
     this.lstColorDefs.Name = "lstColorDefs";
     this.lstColorDefs.Size = new System.Drawing.Size(264, 69);
     this.lstColorDefs.TabIndex = 8;
     this.lstColorDefs.DoubleClick += new System.EventHandler(this.lstColorDefs_DoubleClick);
     //
     // txtSynEd
     //
     this.txtSynEd.Document = document1;
     this.txtSynEd.Location = new System.Drawing.Point(8, 144);
     this.txtSynEd.Name = "txtSynEd";
     this.txtSynEd.Size = new System.Drawing.Size(352, 200);
     this.txtSynEd.SplitType = ActiproSoftware.SyntaxEditor.SyntaxEditorSplitType.None;
     this.txtSynEd.TabIndex = 7;
     //
     // pictureBox2
     //
     this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(16, 8);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(48, 48);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 0;
     this.pictureBox2.TabStop = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(72, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(288, 48);
     this.label2.TabIndex = 6;
     this.label2.Text = "You may adjust the colors of the syntax editor below.";
     //
     // tpShortcut
     //
     this.tpShortcut.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tpShortcut.Controls.Add(this.tvMenus);
     this.tpShortcut.Controls.Add(this.cmdApplyShortcut);
     this.tpShortcut.Controls.Add(this.txtAssgnShortcut);
     this.tpShortcut.Controls.Add(this.label4);
     this.tpShortcut.Controls.Add(this.lvShortcuts);
     this.tpShortcut.Controls.Add(this.label3);
     this.tpShortcut.Controls.Add(this.pictureBox3);
     this.tpShortcut.InactiveBackColor = System.Drawing.Color.Empty;
     this.tpShortcut.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tpShortcut.InactiveTextColor = System.Drawing.Color.Empty;
     this.tpShortcut.Location = new System.Drawing.Point(1, 1);
     this.tpShortcut.Name = "tpShortcut";
     this.tpShortcut.SelectBackColor = System.Drawing.Color.Empty;
     this.tpShortcut.Selected = false;
     this.tpShortcut.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tpShortcut.SelectTextColor = System.Drawing.Color.Empty;
     this.tpShortcut.Size = new System.Drawing.Size(374, 357);
     this.tpShortcut.TabIndex = 6;
     this.tpShortcut.Title = "Shortcuts";
     this.tpShortcut.ToolTip = "Page";
     //
     // tvMenus
     //
     this.tvMenus.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tvMenus.ImageIndex = 0;
     this.tvMenus.ImageList = this.imageList1;
     this.tvMenus.Location = new System.Drawing.Point(8, 64);
     this.tvMenus.Name = "tvMenus";
     this.tvMenus.SelectedImageIndex = 0;
     this.tvMenus.Size = new System.Drawing.Size(360, 200);
     this.tvMenus.TabIndex = 7;
     this.tvMenus.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvMenus_AfterSelect);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder_closed.png");
     this.imageList1.Images.SetKeyName(1, "blank_16x16.png");
     //
     // cmdApplyShortcut
     //
     this.cmdApplyShortcut.Enabled = false;
     this.cmdApplyShortcut.Location = new System.Drawing.Point(293, 289);
     this.cmdApplyShortcut.Name = "cmdApplyShortcut";
     this.cmdApplyShortcut.Size = new System.Drawing.Size(75, 23);
     this.cmdApplyShortcut.TabIndex = 6;
     this.cmdApplyShortcut.Text = "Apply";
     this.cmdApplyShortcut.UseVisualStyleBackColor = true;
     this.cmdApplyShortcut.Click += new System.EventHandler(this.cmdApplyShortcut_Click);
     //
     // txtAssgnShortcut
     //
     this.txtAssgnShortcut.AcceptsReturn = true;
     this.txtAssgnShortcut.AcceptsTab = true;
     this.txtAssgnShortcut.Location = new System.Drawing.Point(16, 291);
     this.txtAssgnShortcut.Name = "txtAssgnShortcut";
     this.txtAssgnShortcut.Size = new System.Drawing.Size(271, 21);
     this.txtAssgnShortcut.TabIndex = 5;
     this.txtAssgnShortcut.Text = "None";
     this.txtAssgnShortcut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtAssgnShortcut.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAssgnShortcut_KeyDown);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 272);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(232, 16);
     this.label4.TabIndex = 4;
     this.label4.Text = "Assigned shortcut:";
     //
     // lvShortcuts
     //
     this.lvShortcuts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.lvShortcuts.FullRowSelect = true;
     this.lvShortcuts.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.lvShortcuts.HideSelection = false;
     this.lvShortcuts.Location = new System.Drawing.Point(8, 64);
     this.lvShortcuts.MultiSelect = false;
     this.lvShortcuts.Name = "lvShortcuts";
     this.lvShortcuts.Size = new System.Drawing.Size(360, 200);
     this.lvShortcuts.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.lvShortcuts.TabIndex = 2;
     this.lvShortcuts.UseCompatibleStateImageBehavior = false;
     this.lvShortcuts.View = System.Windows.Forms.View.Details;
     this.lvShortcuts.Visible = false;
     this.lvShortcuts.SelectedIndexChanged += new System.EventHandler(this.lvShortcuts_SelectedIndexChanged);
     this.lvShortcuts.Click += new System.EventHandler(this.lvShortcuts_Click);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Menu";
     this.columnHeader1.Width = 173;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Shortcut";
     this.columnHeader2.Width = 174;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(72, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(296, 16);
     this.label3.TabIndex = 1;
     this.label3.Text = "You can configure the menu shortcut keys below:";
     //
     // pictureBox3
     //
     this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(16, 8);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(48, 48);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox3.TabIndex = 0;
     this.pictureBox3.TabStop = false;
     //
     // tpEditor
     //
     this.tpEditor.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tpEditor.Controls.Add(this.chkConvTabToSpc);
     this.tpEditor.Controls.Add(this.txtTabSpace);
     this.tpEditor.Controls.Add(this.label6);
     this.tpEditor.Controls.Add(this.label5);
     this.tpEditor.Controls.Add(this.pictureBox4);
     this.tpEditor.Controls.Add(this.chk_Ed_Virtlines);
     this.tpEditor.Controls.Add(this.chk_Ed_ShowLines);
     this.tpEditor.Controls.Add(this.chk_Ed_ShowWhitespace);
     this.tpEditor.Controls.Add(this.chk_Ed_ShowNewline);
     this.tpEditor.Controls.Add(this.chk_Ed_ShowBrackets);
     this.tpEditor.Controls.Add(this.chk_Ed_Wordwrap);
     this.tpEditor.Controls.Add(this.chk_Ed_ShowTabs);
     this.tpEditor.Controls.Add(this.chk_Ed_Errs);
     this.tpEditor.Controls.Add(this.chkScrollHint);
     this.tpEditor.Controls.Add(this.chkAutoColl);
     this.tpEditor.Controls.Add(this.chk_E_IndentGuides);
     this.tpEditor.Controls.Add(this.chk_Ed_CodeFold);
     this.tpEditor.Controls.Add(this.chk_Ed_AutoIndent);
     this.tpEditor.InactiveBackColor = System.Drawing.Color.Empty;
     this.tpEditor.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tpEditor.InactiveTextColor = System.Drawing.Color.Empty;
     this.tpEditor.Location = new System.Drawing.Point(1, 1);
     this.tpEditor.Name = "tpEditor";
     this.tpEditor.SelectBackColor = System.Drawing.Color.Empty;
     this.tpEditor.Selected = false;
     this.tpEditor.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tpEditor.SelectTextColor = System.Drawing.Color.Empty;
     this.tpEditor.Size = new System.Drawing.Size(374, 357);
     this.tpEditor.TabIndex = 7;
     this.tpEditor.Title = "Editor";
     this.tpEditor.ToolTip = "Page";
     //
     // chkConvTabToSpc
     //
     this.chkConvTabToSpc.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkConvTabToSpc.Location = new System.Drawing.Point(152, 72);
     this.chkConvTabToSpc.Name = "chkConvTabToSpc";
     this.chkConvTabToSpc.Size = new System.Drawing.Size(144, 16);
     this.chkConvTabToSpc.TabIndex = 6;
     this.chkConvTabToSpc.Text = "Convert tabs to spaces";
     this.toolTip1.SetToolTip(this.chkConvTabToSpc, "Converts tabs to spaces upon saving a file.");
     this.chkConvTabToSpc.CheckedChanged += new System.EventHandler(this.chkConvTabToSpc_CheckedChanged);
     //
     // txtTabSpace
     //
     this.txtTabSpace.Location = new System.Drawing.Point(80, 72);
     this.txtTabSpace.MaxLength = 2;
     this.txtTabSpace.Name = "txtTabSpace";
     this.txtTabSpace.Size = new System.Drawing.Size(56, 21);
     this.txtTabSpace.TabIndex = 5;
     this.txtTabSpace.TextChanged += new System.EventHandler(this.txtTabSpace_TextChanged);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 72);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(64, 16);
     this.label6.TabIndex = 4;
     this.label6.Text = "Tab space:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(72, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(296, 16);
     this.label5.TabIndex = 3;
     this.label5.Text = "You can configure basic editor preferences here:";
     //
     // pictureBox4
     //
     this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(16, 8);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(48, 48);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox4.TabIndex = 2;
     this.pictureBox4.TabStop = false;
     //
     // chk_Ed_Virtlines
     //
     this.chk_Ed_Virtlines.Enabled = false;
     this.chk_Ed_Virtlines.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_Virtlines.Location = new System.Drawing.Point(16, 328);
     this.chk_Ed_Virtlines.Name = "chk_Ed_Virtlines";
     this.chk_Ed_Virtlines.Size = new System.Drawing.Size(144, 16);
     this.chk_Ed_Virtlines.TabIndex = 6;
     this.chk_Ed_Virtlines.Text = "Virtual Space";
     this.toolTip1.SetToolTip(this.chk_Ed_Virtlines, "Enables accessing of \"virtual\" lines past the end of the file. (Feature not avail" +
     "able)");
     this.chk_Ed_Virtlines.CheckedChanged += new System.EventHandler(this.chk_Ed_Virtlines_CheckedChanged);
     //
     // chk_Ed_ShowLines
     //
     this.chk_Ed_ShowLines.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_ShowLines.Location = new System.Drawing.Point(16, 232);
     this.chk_Ed_ShowLines.Name = "chk_Ed_ShowLines";
     this.chk_Ed_ShowLines.Size = new System.Drawing.Size(144, 16);
     this.chk_Ed_ShowLines.TabIndex = 6;
     this.chk_Ed_ShowLines.Text = "Show Line Numbers";
     this.toolTip1.SetToolTip(this.chk_Ed_ShowLines, "Shows line numbers in the left column.");
     this.chk_Ed_ShowLines.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowLines_CheckedChanged);
     //
     // chk_Ed_ShowWhitespace
     //
     this.chk_Ed_ShowWhitespace.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_ShowWhitespace.Location = new System.Drawing.Point(16, 304);
     this.chk_Ed_ShowWhitespace.Name = "chk_Ed_ShowWhitespace";
     this.chk_Ed_ShowWhitespace.Size = new System.Drawing.Size(168, 16);
     this.chk_Ed_ShowWhitespace.TabIndex = 6;
     this.chk_Ed_ShowWhitespace.Text = "Show Whitespace Glyphs";
     this.toolTip1.SetToolTip(this.chk_Ed_ShowWhitespace, "Shows a glyph for every whitespace (space bar) character.");
     this.chk_Ed_ShowWhitespace.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowWhitespace_CheckedChanged);
     //
     // chk_Ed_ShowNewline
     //
     this.chk_Ed_ShowNewline.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_ShowNewline.Location = new System.Drawing.Point(16, 256);
     this.chk_Ed_ShowNewline.Name = "chk_Ed_ShowNewline";
     this.chk_Ed_ShowNewline.Size = new System.Drawing.Size(168, 16);
     this.chk_Ed_ShowNewline.TabIndex = 6;
     this.chk_Ed_ShowNewline.Text = "Show Newline Glyphs";
     this.toolTip1.SetToolTip(this.chk_Ed_ShowNewline, "Displays a glyph for every carriage return/line feed combination.");
     this.chk_Ed_ShowNewline.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowNewline_CheckedChanged);
     //
     // chk_Ed_ShowBrackets
     //
     this.chk_Ed_ShowBrackets.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_ShowBrackets.Location = new System.Drawing.Point(16, 160);
     this.chk_Ed_ShowBrackets.Name = "chk_Ed_ShowBrackets";
     this.chk_Ed_ShowBrackets.Size = new System.Drawing.Size(168, 16);
     this.chk_Ed_ShowBrackets.TabIndex = 6;
     this.chk_Ed_ShowBrackets.Text = "Enable Bracket Highlighting";
     this.toolTip1.SetToolTip(this.chk_Ed_ShowBrackets, "Automatically highlights matching parentheses, brackets, or braces while the curs" +
     "or is adjacent to it.");
     this.chk_Ed_ShowBrackets.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowBrackets_CheckedChanged);
     //
     // chk_Ed_Wordwrap
     //
     this.chk_Ed_Wordwrap.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_Wordwrap.Location = new System.Drawing.Point(16, 208);
     this.chk_Ed_Wordwrap.Name = "chk_Ed_Wordwrap";
     this.chk_Ed_Wordwrap.Size = new System.Drawing.Size(168, 16);
     this.chk_Ed_Wordwrap.TabIndex = 6;
     this.chk_Ed_Wordwrap.Text = "Enable Wordwrap";
     this.toolTip1.SetToolTip(this.chk_Ed_Wordwrap, "Wraps text that passes the horizontal boundary of the text editor to the next lin" +
     "e.");
     this.chk_Ed_Wordwrap.CheckedChanged += new System.EventHandler(this.chk_Ed_Wordwrap_CheckedChanged);
     //
     // chk_Ed_ShowTabs
     //
     this.chk_Ed_ShowTabs.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_ShowTabs.Location = new System.Drawing.Point(16, 280);
     this.chk_Ed_ShowTabs.Name = "chk_Ed_ShowTabs";
     this.chk_Ed_ShowTabs.Size = new System.Drawing.Size(168, 16);
     this.chk_Ed_ShowTabs.TabIndex = 6;
     this.chk_Ed_ShowTabs.Text = "Show Tab Glyphs";
     this.toolTip1.SetToolTip(this.chk_Ed_ShowTabs, "Shows a glyph for all TAB characters.");
     this.chk_Ed_ShowTabs.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowTabs_CheckedChanged);
     //
     // chk_Ed_Errs
     //
     this.chk_Ed_Errs.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_Errs.Location = new System.Drawing.Point(16, 136);
     this.chk_Ed_Errs.Name = "chk_Ed_Errs";
     this.chk_Ed_Errs.Size = new System.Drawing.Size(184, 16);
     this.chk_Ed_Errs.TabIndex = 6;
     this.chk_Ed_Errs.Text = "Check for errors while typing";
     this.toolTip1.SetToolTip(this.chk_Ed_Errs, "Underlines detected syntax errors in red while typing.");
     this.chk_Ed_Errs.CheckedChanged += new System.EventHandler(this.chk_Ed_Errs_CheckedChanged);
     //
     // chkScrollHint
     //
     this.chkScrollHint.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkScrollHint.Location = new System.Drawing.Point(16, 184);
     this.chkScrollHint.Name = "chkScrollHint";
     this.chkScrollHint.Size = new System.Drawing.Size(112, 16);
     this.chkScrollHint.TabIndex = 1;
     this.chkScrollHint.Text = "Enable Scroll Hint";
     this.toolTip1.SetToolTip(this.chkScrollHint, "Displays passing line numbers in a tooltip while scrolling.");
     this.chkScrollHint.CheckedChanged += new System.EventHandler(this.chkScrollHint_CheckedChanged);
     //
     // chkAutoColl
     //
     this.chkAutoColl.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkAutoColl.Location = new System.Drawing.Point(16, 112);
     this.chkAutoColl.Name = "chkAutoColl";
     this.chkAutoColl.Size = new System.Drawing.Size(136, 16);
     this.chkAutoColl.TabIndex = 1;
     this.chkAutoColl.Text = "Auto-Collapse Regions";
     this.toolTip1.SetToolTip(this.chkAutoColl, "Automatically collapses __REGION and __END blocks when a file is opened.");
     this.chkAutoColl.CheckedChanged += new System.EventHandler(this.chkAutoColl_CheckedChanged);
     //
     // chk_E_IndentGuides
     //
     this.chk_E_IndentGuides.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_E_IndentGuides.Location = new System.Drawing.Point(216, 180);
     this.chk_E_IndentGuides.Name = "chk_E_IndentGuides";
     this.chk_E_IndentGuides.Size = new System.Drawing.Size(136, 32);
     this.chk_E_IndentGuides.TabIndex = 1;
     this.chk_E_IndentGuides.Text = "Enable Indent Guides";
     this.toolTip1.SetToolTip(this.chk_E_IndentGuides, "Enables or disables the vertical guidelines displayed on indents.");
     this.chk_E_IndentGuides.CheckedChanged += new System.EventHandler(this.chk_E_IndentGuides_CheckedChanged);
     //
     // chk_Ed_CodeFold
     //
     this.chk_Ed_CodeFold.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_CodeFold.Location = new System.Drawing.Point(216, 142);
     this.chk_Ed_CodeFold.Name = "chk_Ed_CodeFold";
     this.chk_Ed_CodeFold.Size = new System.Drawing.Size(136, 32);
     this.chk_Ed_CodeFold.TabIndex = 1;
     this.chk_Ed_CodeFold.Text = "Enable Automatic Code Folding";
     this.toolTip1.SetToolTip(this.chk_Ed_CodeFold, "Enables non-region codeblocks to be collapsed.");
     this.chk_Ed_CodeFold.CheckedChanged += new System.EventHandler(this.chk_Ed_CodeFold_CheckedChanged);
     //
     // chk_Ed_AutoIndent
     //
     this.chk_Ed_AutoIndent.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Ed_AutoIndent.Location = new System.Drawing.Point(216, 104);
     this.chk_Ed_AutoIndent.Name = "chk_Ed_AutoIndent";
     this.chk_Ed_AutoIndent.Size = new System.Drawing.Size(136, 32);
     this.chk_Ed_AutoIndent.TabIndex = 1;
     this.chk_Ed_AutoIndent.Text = "Auto Indent/Outdent on Brace";
     this.toolTip1.SetToolTip(this.chk_Ed_AutoIndent, "Automatically tabs in or untabs on open brace and close brace respectively.");
     this.chk_Ed_AutoIndent.CheckedChanged += new System.EventHandler(this.chk_Ed_AutoIndent_CheckedChanged);
     //
     // cmdFlushAuth
     //
     this.cmdFlushAuth.Enabled = false;
     this.cmdFlushAuth.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdFlushAuth.Location = new System.Drawing.Point(9, 398);
     this.cmdFlushAuth.Name = "cmdFlushAuth";
     this.cmdFlushAuth.Size = new System.Drawing.Size(152, 24);
     this.cmdFlushAuth.TabIndex = 6;
     this.cmdFlushAuth.Text = "Flush Authorization Cache";
     this.cmdFlushAuth.Visible = false;
     this.cmdFlushAuth.Click += new System.EventHandler(this.cmdFlushAuth_Click);
     //
     // cmdCancel
     //
     this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdCancel.Location = new System.Drawing.Point(304, 400);
     this.cmdCancel.Name = "cmdCancel";
     this.cmdCancel.Size = new System.Drawing.Size(80, 24);
     this.cmdCancel.TabIndex = 2;
     this.cmdCancel.Text = "Cancel";
     this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdOK
     //
     this.cmdOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdOK.Location = new System.Drawing.Point(216, 400);
     this.cmdOK.Name = "cmdOK";
     this.cmdOK.Size = new System.Drawing.Size(80, 24);
     this.cmdOK.TabIndex = 2;
     this.cmdOK.Text = "OK";
     this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
     //
     // ctxReset
     //
     this.ctxReset.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ctxReset_DefaultClr,
     this.ctxReset_NoolnessDarkClr});
     this.ctxReset.Name = "ctxReset";
     this.ctxReset.Size = new System.Drawing.Size(211, 48);
     //
     // ctxReset_DefaultClr
     //
     this.ctxReset_DefaultClr.Name = "ctxReset_DefaultClr";
     this.ctxReset_DefaultClr.Size = new System.Drawing.Size(210, 22);
     this.ctxReset_DefaultClr.Text = "TorqueDev Default Colors";
     this.ctxReset_DefaultClr.Click += new System.EventHandler(this.ctxReset_DefaultClr_Click);
     //
     // ctxReset_NoolnessDarkClr
     //
     this.ctxReset_NoolnessDarkClr.Name = "ctxReset_NoolnessDarkClr";
     this.ctxReset_NoolnessDarkClr.Size = new System.Drawing.Size(210, 22);
     this.ctxReset_NoolnessDarkClr.Text = "Noolness Dark Colors";
     this.ctxReset_NoolnessDarkClr.Click += new System.EventHandler(this.ctxReset_NoolnessDarkClr_Click);
     //
     // frmConfig
     //
     this.AcceptButton = this.cmdOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.cmdCancel;
     this.ClientSize = new System.Drawing.Size(394, 431);
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this.cmdOK);
     this.Controls.Add(this.cmdFlushAuth);
     this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmConfig";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Preferences";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmConfig_FormClosing);
     this.Load += new System.EventHandler(this.frmConfig_Load);
     this.tabMain.ResumeLayout(false);
     this.tpGeneral.ResumeLayout(false);
     this.tpGeneral.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tpHighlighting.ResumeLayout(false);
     this.tpHighlighting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.tpShortcut.ResumeLayout(false);
     this.tpShortcut.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.tpEditor.ResumeLayout(false);
     this.tpEditor.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.ctxReset.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 12
0
        private void frmConfig_Load(object sender, System.EventArgs e)
        {
            //txtSynEd.Document.LoadLanguageFromXml(Application.StartupPath + "\\highlight.xml", 0);
            this.Show();

            if (g.Project == null)
                cmdOnDebugExec.Enabled = false;

            txtSynEd.Document.LoadLanguageFromXml(Application.StartupPath + "\\highlight.bin", 5000);

            txtSynEd.Document.Text = "// Torque Game Engine\n\n/// This function returns something\nfunction returnSomething(%client, %locvar) {\n\tif (%locvar $= \"\")\n\t\treturn;\n\n\techo(\"Begin; standby\");\n\tfor (%i=0; %i<3; %i++)\n\t\tcommandToClient(%client, 'Test', $globvar)\n\n\t//__region test\n\tMyObject::MyFunction();\n\tMyObject.setValue(\"asdf\");\n\t\n\n\t//# DECLARE %mylocalvar AS SimObject\n\t%mylocalvar.save(\"testing.txt\")\n\n\t//__end\n\n}";
            txtSynEd.Document.ReadOnly = true;

            this.loconf.LoadColorData(txtSynEd);

            this.chkAutoColl.Checked = this.loconf.bAutoCollapse;
            this.chkScrollHint.Checked = this.loconf.bScrollHint;
            this.chkCheckUpdates.Checked = this.loconf.bCheckUpdates;
            this.chkDebugSummary.Checked = this.loconf.bShowDebugSummary;

            this.chkAC_Infopop.Checked = this.loconf.b_AC_Infopop;
            this.chkAC_Obj.Checked = this.loconf.b_AC_ObjectML;
            this.chkAC_Var.Checked = this.loconf.b_AC_VariableML;
            this.chkAC_TypeAsYouGo.Checked = this.loconf.b_AC_TypeAsYouGo;

            this.chk_Ed_ShowBrackets.Checked = loconf.b_Ed_BracketHighlight;
            this.chk_Ed_ShowLines.Checked = loconf.b_Ed_ShowLines;
            this.chk_Ed_ShowNewline.Checked = loconf.b_Ed_ShowNewline;
            this.chk_Ed_ShowWhitespace.Checked = loconf.b_Ed_ShowNewline;
            this.chk_Ed_Virtlines.Checked = loconf.b_Ed_Virtlines;
            this.chk_Ed_Wordwrap.Checked = loconf.b_Ed_Wordwrap;
            this.chkConvTabToSpc.Checked = loconf.b_Ed_ConvertTabsToSpaces;
            this.chk_Ed_ShowTabs.Checked = loconf.b_Ed_ShowTabs;
            this.chk_Ed_CodeFold.Checked = loconf.b_Ed_CodeFold;
            this.chk_E_IndentGuides.Checked = loconf.b_Ed_IndentGuides;
            this.txtTabSpace.Text = loconf.i_Ed_TabSize.ToString();

            this.chk_Ed_AutoIndent.Checked = loconf.b_Ed_AutoIndent;

            this.chkErrChkDbg.Checked = loconf.b_Err_BeforeCompile;
            this.chk_Ed_Errs.Checked = loconf.b_Err_WhileTyping;

            if (loconf.ColorPref == ColorPref.Professional)
                this.optRenderPro.Checked = true;
            else
                this.optRenderStd.Checked = true;

            //this.txtDelExt.Text = loconf.DSOExtension;
            //this.chkDelDSO.Checked = this.loconf.b_DeleteDSO;

            this.tpGeneral.Selected = true;
            this.cmdOK.Focus();

            // Enumerate each menu shortcut and add it to the shortcut list
            /*IDictionaryEnumerator enumer = this.loconf.menu_shortcuts.GetEnumerator();
            while(enumer.MoveNext()) {
                ListViewItem item = new ListViewItem(enumer.Key.ToString());
                item.SubItems.Add(ParseKeycode((Keys)enumer.Value).ToString());
                item.Tag = (Keys)enumer.Value;

                this.lvShortcuts.Items.Add(item);
            }*/

            // Enumerate all the menu items recursively on the main thing, and
            // add it to the list.  Assign it a shortcut if it
            // has one

            frmWait fWait = new frmWait("Loading configuration page...");
            fWait.Show(this);

            tvMenus.BeginUpdate();

            foreach (ToolStripItem item in g.Main.mnuMain.Items)
                EnumMenuItems(item, null);

            tvMenus.EndUpdate();

            // PLUGINS load custom config pages
            foreach (CustomConfigTab tab in g.CustomConfigTabs) {
                if (!(tab.TabControl is ICodeweaverConfigPage)) {
                    g.PluginException(
                        new Exception("Custom config page must derive from ICodeweaverConfigPage"),
                        new CWPlugin(tab.Plugin.CWPluginGuid.ToString(), new Version("0.0"), "", "", "", new Version("0.0"), tab.Plugin.CWPluginGuid, tab.Plugin)
                    );
                } else {
                    Crownwood.DotNetMagic.Controls.TabPage newPage = new Crownwood.DotNetMagic.Controls.TabPage(tab.TabText, tab.TabControl);
                    tabMain.TabPages.Add(newPage);

                    // Call initialization
                    try {
                        (tab.TabControl as ICodeweaverConfigPage).CWOnConfigLoad();
                    } catch (Exception exc) {
                        g.PluginException(exc, new CWPlugin(tab.Plugin.CWPluginGuid.ToString(), new Version("0.0"), "", "", "", new Version("0.0"), tab.Plugin.CWPluginGuid, tab.Plugin));
                    }
                }
            }

            fWait.Close();
            fWait.Dispose();

            fWait = null;
        }
        private void OnControlPageChanged(Crownwood.DotNetMagic.Controls.TabbedGroups tg, Crownwood.DotNetMagic.Controls.TabPage selectedPage)
        {
            if (selectedPage != null)
            {
                TabPage tabPage = selectedPage.Tag as TabPage;

                if (tabPage.Component.IsStarted == false)
                {
                    tabPage.Component.Start();
                }

                if (selectedPage.Control == null)
                {
                    TabGroup tabGroup = _component.GetTabGroup(tabPage);
                    selectedPage.Control = (Control)tabGroup.Component.GetPageView(tabPage).GuiElement;
                }
            }
        }
 private void tabTableinfo_SelectionChanged(Crownwood.DotNetMagic.Controls.TabControl sender, Crownwood.DotNetMagic.Controls.TabPage oldPage, Crownwood.DotNetMagic.Controls.TabPage newPage)
 {
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStartup));
     this.optNewProj = new System.Windows.Forms.RadioButton();
     this.optOpenProj = new System.Windows.Forms.RadioButton();
     this.optRecentProj = new System.Windows.Forms.RadioButton();
     this.lstRecent = new System.Windows.Forms.ListBox();
     this.ctRecent = new ActiproSoftware.WinUICore.OwnerDrawContextMenu();
     this.mnuRemFromList = new ActiproSoftware.WinUICore.OwnerDrawMenuItem();
     this.cmdClose = new System.Windows.Forms.Button();
     this.cmdOK = new System.Windows.Forms.Button();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabControl1 = new Crownwood.DotNetMagic.Controls.TabControl();
     this.tabPage1 = new Crownwood.DotNetMagic.Controls.TabPage();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // optNewProj
     //
     this.optNewProj.Checked = true;
     this.optNewProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optNewProj.Location = new System.Drawing.Point(152, 16);
     this.optNewProj.Name = "optNewProj";
     this.optNewProj.Size = new System.Drawing.Size(128, 16);
     this.optNewProj.TabIndex = 1;
     this.optNewProj.TabStop = true;
     this.optNewProj.Text = "Create New Project";
     //
     // optOpenProj
     //
     this.optOpenProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optOpenProj.Location = new System.Drawing.Point(152, 48);
     this.optOpenProj.Name = "optOpenProj";
     this.optOpenProj.Size = new System.Drawing.Size(136, 16);
     this.optOpenProj.TabIndex = 2;
     this.optOpenProj.Text = "Open Existing Project";
     //
     // optRecentProj
     //
     this.optRecentProj.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.optRecentProj.Location = new System.Drawing.Point(152, 80);
     this.optRecentProj.Name = "optRecentProj";
     this.optRecentProj.Size = new System.Drawing.Size(136, 16);
     this.optRecentProj.TabIndex = 2;
     this.optRecentProj.Text = "Open Recent Project:";
     //
     // lstRecent
     //
     this.lstRecent.ContextMenu = this.ctRecent;
     this.lstRecent.HorizontalScrollbar = true;
     this.lstRecent.Location = new System.Drawing.Point(168, 104);
     this.lstRecent.Name = "lstRecent";
     this.lstRecent.Size = new System.Drawing.Size(256, 121);
     this.lstRecent.TabIndex = 3;
     this.lstRecent.DoubleClick += new System.EventHandler(this.lstRecent_DoubleClick);
     //
     // ctRecent
     //
     this.ctRecent.MenuItems.AddRange(new ActiproSoftware.WinUICore.OwnerDrawMenuItem[] {
                                                                              this.mnuRemFromList});
     this.ctRecent.Popup += new System.EventHandler(this.ctRecent_Popup);
     //
     // mnuRemFromList
     //
     this.mnuRemFromList.Index = 0;
     this.mnuRemFromList.OwnerDraw = true;
     this.mnuRemFromList.Text = "&Remove from list";
     this.mnuRemFromList.Click += new System.EventHandler(this.mnuRemFromList_Click);
     //
     // cmdClose
     //
     this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdClose.Location = new System.Drawing.Point(352, 392);
     this.cmdClose.Name = "cmdClose";
     this.cmdClose.Size = new System.Drawing.Size(88, 24);
     this.cmdClose.TabIndex = 4;
     this.cmdClose.Text = "Close";
     this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
     //
     // cmdOK
     //
     this.cmdOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.cmdOK.Location = new System.Drawing.Point(256, 392);
     this.cmdOK.Name = "cmdOK";
     this.cmdOK.Size = new System.Drawing.Size(88, 24);
     this.cmdOK.TabIndex = 4;
     this.cmdOK.Text = "OK";
     this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel1.Location = new System.Drawing.Point(16, 152);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(102, 17);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "TorqueDev Website";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabel2.Location = new System.Drawing.Point(16, 168);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(78, 17);
     this.linkLabel2.TabIndex = 5;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "Garage Games";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // pictureBox2
     //
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(-176, -32);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(640, 140);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 7;
     this.pictureBox2.TabStop = false;
     //
     // pictureBox1
     //
     this.pictureBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(128, 128);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.SystemColors.Control;
     this.tabControl1.ButtonActiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.ButtonInactiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.tabControl1.HotTextColor = System.Drawing.SystemColors.ActiveCaption;
     this.tabControl1.ImageList = null;
     this.tabControl1.Location = new System.Drawing.Point(8, 120);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.OfficeDockSides = false;
     this.tabControl1.OfficeStyle = Crownwood.DotNetMagic.Controls.OfficeStyle.SoftWhite;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.ShowDropSelect = false;
     this.tabControl1.Size = new System.Drawing.Size(440, 264);
     this.tabControl1.Style = Crownwood.DotNetMagic.Common.VisualStyle.IDE2005;
     this.tabControl1.TabIndex = 8;
     this.tabControl1.TabPages.AddRange(new Crownwood.DotNetMagic.Controls.TabPage[] {
                                                                                         this.tabPage1});
     this.tabControl1.TextColor = System.Drawing.SystemColors.ControlText;
     this.tabControl1.TextInactiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControl1.TextTips = true;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage1.Controls.Add(this.optOpenProj);
     this.tabPage1.Controls.Add(this.optRecentProj);
     this.tabPage1.Controls.Add(this.optNewProj);
     this.tabPage1.Controls.Add(this.lstRecent);
     this.tabPage1.Controls.Add(this.linkLabel1);
     this.tabPage1.Controls.Add(this.linkLabel2);
     this.tabPage1.Controls.Add(this.pictureBox1);
     this.tabPage1.InactiveBackColor = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.InactiveTextColor = System.Drawing.Color.Empty;
     this.tabPage1.Location = new System.Drawing.Point(1, 1);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.SelectBackColor = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextBackColor = System.Drawing.Color.Empty;
     this.tabPage1.SelectTextColor = System.Drawing.Color.Empty;
     this.tabPage1.Size = new System.Drawing.Size(438, 237);
     this.tabPage1.TabIndex = 4;
     this.tabPage1.Title = "Welcome";
     this.tabPage1.ToolTip = "Welcome";
     //
     // frmStartup
     //
     this.AcceptButton = this.cmdOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Control;
     this.CancelButton = this.cmdClose;
     this.ClientSize = new System.Drawing.Size(458, 431);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdOK);
     this.Controls.Add(this.tabControl1);
     this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmStartup";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Welcome";
     this.Load += new System.EventHandler(this.frmStartup_Load);
     this.Closed += new System.EventHandler(this.frmStartup_Closed);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        private void OnControlSelectionChanged(Crownwood.DotNetMagic.Controls.TabControl sender, Crownwood.DotNetMagic.Controls.TabPage oldPage, Crownwood.DotNetMagic.Controls.TabPage newPage)
        {
            TabPage tabPage = newPage.Tag as TabPage;

            _component.CurrentPage = tabPage;
        }
Ejemplo n.º 17
0
		/// <summary>
		/// Disposes of this object.
		/// </summary>
		/// <param name="disposing"></param>
		protected override void Dispose(bool disposing)
		{
			if (disposing)
			{
				if (_tabPage != null)
				{
					// Remove the tab
					this.DesktopView.RemoveWorkspaceView(this);

					_dialogBoxManager.Dispose();
					_dialogBoxManager = null;
					_control.Dispose();
					_control = null;
					_tabPage.Dispose();
					_tabPage = null;

				}
			}
			base.Dispose(disposing);
		}
Ejemplo n.º 18
0
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     String ved_name = this.dataGridView1.Rows[(int)this.dataGridView1.CurrentRow.Index].Cells["Name"].Value.ToString();
     if (ved_name != "")
     {
         RichTextBox rtb = new RichTextBox();
         rtb.ReadOnly = true;
         rtb.BackColor = Color.White;
         addressInfoUpdate();
         Crownwood.DotNetMagic.Controls.TabPage tp = new Crownwood.DotNetMagic.Controls.TabPage(ved_name, rtb);
         productsPerVendor(rtb);
         tabbedGroups1.ActiveLeaf.TabPages.Add(tp);
         tp.Selected = true;
     }
        // System.Console.Write(this.dataGridView1.Rows[(int)this.dataGridView1.CurrentRow.Index].Cells["add_id"].Value);
 }