namespace CodeImp.DoomBuilder.Interface { partial class ConfigForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if(disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.Label label1; this.tabs = new System.Windows.Forms.TabControl(); this.tabinterface = new System.Windows.Forms.TabPage(); this.tabediting = new System.Windows.Forms.TabPage(); this.tabconfigs = new System.Windows.Forms.TabPage(); this.cancel = new System.Windows.Forms.Button(); this.apply = new System.Windows.Forms.Button(); this.listconfigs = new System.Windows.Forms.ListBox(); label1 = new System.Windows.Forms.Label(); this.tabs.SuspendLayout(); this.tabconfigs.SuspendLayout(); this.SuspendLayout(); // // tabs // this.tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabs.Controls.Add(this.tabinterface); this.tabs.Controls.Add(this.tabediting); this.tabs.Controls.Add(this.tabconfigs); this.tabs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabs.ItemSize = new System.Drawing.Size(110, 19); this.tabs.Location = new System.Drawing.Point(12, 12); this.tabs.Name = "tabs"; this.tabs.SelectedIndex = 0; this.tabs.Size = new System.Drawing.Size(519, 306); this.tabs.SizeMode = System.Windows.Forms.TabSizeMode.Fixed; this.tabs.TabIndex = 0; // // tabinterface // this.tabinterface.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabinterface.Location = new System.Drawing.Point(4, 23); this.tabinterface.Name = "tabinterface"; this.tabinterface.Padding = new System.Windows.Forms.Padding(3); this.tabinterface.Size = new System.Drawing.Size(511, 279); this.tabinterface.TabIndex = 0; this.tabinterface.Text = "Interface"; this.tabinterface.UseVisualStyleBackColor = true; // // tabediting // this.tabediting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabediting.Location = new System.Drawing.Point(4, 23); this.tabediting.Name = "tabediting"; this.tabediting.Padding = new System.Windows.Forms.Padding(3); this.tabediting.Size = new System.Drawing.Size(511, 279); this.tabediting.TabIndex = 1; this.tabediting.Text = "Editing"; this.tabediting.UseVisualStyleBackColor = true; // // tabconfigs // this.tabconfigs.Controls.Add(label1); this.tabconfigs.Controls.Add(this.listconfigs); this.tabconfigs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabconfigs.Location = new System.Drawing.Point(4, 23); this.tabconfigs.Name = "tabconfigs"; this.tabconfigs.Size = new System.Drawing.Size(511, 279); this.tabconfigs.TabIndex = 2; this.tabconfigs.Text = "Configurations"; this.tabconfigs.UseVisualStyleBackColor = true; // // cancel // this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancel.Location = new System.Drawing.Point(419, 332); this.cancel.Name = "cancel"; this.cancel.Size = new System.Drawing.Size(112, 25); this.cancel.TabIndex = 17; this.cancel.Text = "Cancel"; this.cancel.UseVisualStyleBackColor = true; // // apply // this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.apply.Location = new System.Drawing.Point(301, 332); this.apply.Name = "apply"; this.apply.Size = new System.Drawing.Size(112, 25); this.apply.TabIndex = 16; this.apply.Text = "OK"; this.apply.UseVisualStyleBackColor = true; // // listconfigs // this.listconfigs.FormattingEnabled = true; this.listconfigs.ItemHeight = 14; this.listconfigs.Location = new System.Drawing.Point(11, 11); this.listconfigs.Name = "listconfigs"; this.listconfigs.Size = new System.Drawing.Size(181, 256); this.listconfigs.TabIndex = 0; // // label1 // label1.Location = new System.Drawing.Point(209, 11); label1.Name = "label1"; label1.Size = new System.Drawing.Size(288, 46); label1.TabIndex = 1; label1.Text = "Select the nodebuilder to use with this configuration. The nodebuilder is a compi" + "ler that builds geometry structures in your map when saved and when using 3D mod" + "e."; // // ConfigForm // this.AcceptButton = this.apply; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancel; this.ClientSize = new System.Drawing.Size(543, 368); this.Controls.Add(this.cancel); this.Controls.Add(this.apply); this.Controls.Add(this.tabs); 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 = "ConfigForm"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Configuration"; this.tabs.ResumeLayout(false); this.tabconfigs.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TabControl tabs; private System.Windows.Forms.TabPage tabinterface; private System.Windows.Forms.TabPage tabediting; private System.Windows.Forms.TabPage tabconfigs; private System.Windows.Forms.Button cancel; private System.Windows.Forms.Button apply; private System.Windows.Forms.ListBox listconfigs; } }