Worms4Editor/W4Gui/Components/InputEventMappingPanel.Desi...

236 lines
11 KiB
C#

namespace W4Gui.Components
{
partial class InputEventMappingPanel
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.inputSettingTabControl = new System.Windows.Forms.TabControl();
this.generalTab = new System.Windows.Forms.TabPage();
this.tblGeneral = new System.Windows.Forms.TableLayoutPanel();
this.lblGroup = new System.Windows.Forms.Label();
this.lblAllowedDuplicates = new System.Windows.Forms.Label();
this.selResourceId = new System.Windows.Forms.TextBox();
this.lblResourceId = new System.Windows.Forms.Label();
this.lblMessage = new System.Windows.Forms.Label();
this.selMessage = new System.Windows.Forms.TextBox();
this.selAllowedDuplicates = new W4Gui.Components.HexInputBox();
this.selGroup = new W4Gui.Components.IntUpDown();
this.mappingsPage = new System.Windows.Forms.TabPage();
this.selInputMappings = new W4Gui.Tabs.OtherTabs.InputMappingsTab();
this.inputSettingTabControl.SuspendLayout();
this.generalTab.SuspendLayout();
this.tblGeneral.SuspendLayout();
this.mappingsPage.SuspendLayout();
this.SuspendLayout();
//
// inputSettingTabControl
//
this.inputSettingTabControl.Controls.Add(this.generalTab);
this.inputSettingTabControl.Controls.Add(this.mappingsPage);
this.inputSettingTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.inputSettingTabControl.HotTrack = true;
this.inputSettingTabControl.Location = new System.Drawing.Point(0, 0);
this.inputSettingTabControl.Name = "inputSettingTabControl";
this.inputSettingTabControl.SelectedIndex = 0;
this.inputSettingTabControl.Size = new System.Drawing.Size(707, 419);
this.inputSettingTabControl.TabIndex = 1;
//
// generalTab
//
this.generalTab.BackColor = System.Drawing.Color.Transparent;
this.generalTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.generalTab.Controls.Add(this.tblGeneral);
this.generalTab.Location = new System.Drawing.Point(4, 24);
this.generalTab.Name = "generalTab";
this.generalTab.Padding = new System.Windows.Forms.Padding(3);
this.generalTab.Size = new System.Drawing.Size(699, 391);
this.generalTab.TabIndex = 0;
this.generalTab.Text = "General";
//
// tblGeneral
//
this.tblGeneral.AutoSize = true;
this.tblGeneral.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset;
this.tblGeneral.ColumnCount = 2;
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblGeneral.Controls.Add(this.lblGroup, 0, 3);
this.tblGeneral.Controls.Add(this.lblAllowedDuplicates, 0, 2);
this.tblGeneral.Controls.Add(this.selResourceId, 1, 1);
this.tblGeneral.Controls.Add(this.lblResourceId, 0, 1);
this.tblGeneral.Controls.Add(this.lblMessage, 0, 0);
this.tblGeneral.Controls.Add(this.selMessage, 1, 0);
this.tblGeneral.Controls.Add(this.selAllowedDuplicates, 1, 2);
this.tblGeneral.Controls.Add(this.selGroup, 1, 3);
this.tblGeneral.Dock = System.Windows.Forms.DockStyle.Top;
this.tblGeneral.Location = new System.Drawing.Point(3, 3);
this.tblGeneral.Name = "tblGeneral";
this.tblGeneral.RowCount = 4;
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.Size = new System.Drawing.Size(689, 126);
this.tblGeneral.TabIndex = 0;
//
// lblGroup
//
this.lblGroup.AutoSize = true;
this.lblGroup.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblGroup.Location = new System.Drawing.Point(5, 95);
this.lblGroup.Name = "lblGroup";
this.lblGroup.Size = new System.Drawing.Size(111, 29);
this.lblGroup.TabIndex = 20;
this.lblGroup.Text = "Group:";
this.lblGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblAllowedDuplicates
//
this.lblAllowedDuplicates.AutoSize = true;
this.lblAllowedDuplicates.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblAllowedDuplicates.Location = new System.Drawing.Point(5, 64);
this.lblAllowedDuplicates.Name = "lblAllowedDuplicates";
this.lblAllowedDuplicates.Size = new System.Drawing.Size(111, 29);
this.lblAllowedDuplicates.TabIndex = 19;
this.lblAllowedDuplicates.Text = "Allowed Duplicates:";
this.lblAllowedDuplicates.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// selResourceId
//
this.selResourceId.Dock = System.Windows.Forms.DockStyle.Top;
this.selResourceId.Location = new System.Drawing.Point(124, 36);
this.selResourceId.Name = "selResourceId";
this.selResourceId.PlaceholderText = "Resource Id";
this.selResourceId.Size = new System.Drawing.Size(560, 23);
this.selResourceId.TabIndex = 18;
//
// lblResourceId
//
this.lblResourceId.AutoSize = true;
this.lblResourceId.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblResourceId.Location = new System.Drawing.Point(5, 33);
this.lblResourceId.Name = "lblResourceId";
this.lblResourceId.Size = new System.Drawing.Size(111, 29);
this.lblResourceId.TabIndex = 17;
this.lblResourceId.Text = "Resource Id:";
this.lblResourceId.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblMessage.Location = new System.Drawing.Point(5, 2);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(111, 29);
this.lblMessage.TabIndex = 0;
this.lblMessage.Text = "Message:";
this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// selMessage
//
this.selMessage.Dock = System.Windows.Forms.DockStyle.Top;
this.selMessage.Location = new System.Drawing.Point(124, 5);
this.selMessage.Name = "selMessage";
this.selMessage.PlaceholderText = "Message";
this.selMessage.Size = new System.Drawing.Size(560, 23);
this.selMessage.TabIndex = 1;
//
// selAllowedDuplicates
//
this.selAllowedDuplicates.Dock = System.Windows.Forms.DockStyle.Top;
this.selAllowedDuplicates.Location = new System.Drawing.Point(124, 67);
this.selAllowedDuplicates.Name = "selAllowedDuplicates";
this.selAllowedDuplicates.Size = new System.Drawing.Size(560, 23);
this.selAllowedDuplicates.TabIndex = 21;
this.selAllowedDuplicates.Value = new byte[0];
//
// selGroup
//
this.selGroup.Dock = System.Windows.Forms.DockStyle.Top;
this.selGroup.Location = new System.Drawing.Point(124, 98);
this.selGroup.Name = "selGroup";
this.selGroup.Size = new System.Drawing.Size(560, 23);
this.selGroup.TabIndex = 22;
this.selGroup.Text = "0";
this.selGroup.Value = 0;
//
// mappingsPage
//
this.mappingsPage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.mappingsPage.Controls.Add(this.selInputMappings);
this.mappingsPage.Location = new System.Drawing.Point(4, 24);
this.mappingsPage.Name = "mappingsPage";
this.mappingsPage.Padding = new System.Windows.Forms.Padding(3);
this.mappingsPage.Size = new System.Drawing.Size(699, 391);
this.mappingsPage.TabIndex = 1;
this.mappingsPage.Text = "Input Mappings";
this.mappingsPage.UseVisualStyleBackColor = true;
//
// selInputMappings
//
this.selInputMappings.Dock = System.Windows.Forms.DockStyle.Fill;
this.selInputMappings.Location = new System.Drawing.Point(3, 3);
this.selInputMappings.Name = "selInputMappings";
this.selInputMappings.Size = new System.Drawing.Size(689, 381);
this.selInputMappings.TabIndex = 0;
//
// InputSettingsPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightGray;
this.Controls.Add(this.inputSettingTabControl);
this.Name = "InputSettingsPanel";
this.Size = new System.Drawing.Size(707, 419);
this.inputSettingTabControl.ResumeLayout(false);
this.generalTab.ResumeLayout(false);
this.generalTab.PerformLayout();
this.tblGeneral.ResumeLayout(false);
this.tblGeneral.PerformLayout();
this.mappingsPage.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private TabControl inputSettingTabControl;
private TabPage generalTab;
private TableLayoutPanel tblGeneral;
private Label lblMessage;
private TextBox selMessage;
private Label lblResourceId;
private Label lblGroup;
private Label lblAllowedDuplicates;
private TextBox selResourceId;
private HexInputBox selAllowedDuplicates;
private IntUpDown selGroup;
private TabPage mappingsPage;
private Tabs.OtherTabs.InputMappingsTab selInputMappings;
}
}