mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
269 lines
No EOL
11 KiB
C#
269 lines
No EOL
11 KiB
C#
namespace CodeImp.DoomBuilder.Interface
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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 Windows Form 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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.menumain = new System.Windows.Forms.MenuStrip();
|
|
this.menufile = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemnewmap = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemopenmap = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemclosemap = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.itemsavemap = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemsavemapas = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemsavemapinto = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.itemexit = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuhelp = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.itemhelpabout = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolbar = new System.Windows.Forms.ToolStrip();
|
|
this.statusbar = new System.Windows.Forms.StatusStrip();
|
|
this.statuslabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.panelinfo = new System.Windows.Forms.Panel();
|
|
this.redrawtimer = new System.Windows.Forms.Timer(this.components);
|
|
this.display = new System.Windows.Forms.Panel();
|
|
this.menumain.SuspendLayout();
|
|
this.statusbar.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menumain
|
|
//
|
|
this.menumain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.menufile,
|
|
this.menuhelp});
|
|
this.menumain.Location = new System.Drawing.Point(0, 0);
|
|
this.menumain.Name = "menumain";
|
|
this.menumain.Size = new System.Drawing.Size(731, 24);
|
|
this.menumain.TabIndex = 0;
|
|
this.menumain.Text = "menuStrip1";
|
|
//
|
|
// menufile
|
|
//
|
|
this.menufile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.itemnewmap,
|
|
this.itemopenmap,
|
|
this.itemclosemap,
|
|
this.toolStripMenuItem1,
|
|
this.itemsavemap,
|
|
this.itemsavemapas,
|
|
this.itemsavemapinto,
|
|
this.toolStripMenuItem2,
|
|
this.itemexit});
|
|
this.menufile.Name = "menufile";
|
|
this.menufile.Size = new System.Drawing.Size(35, 20);
|
|
this.menufile.Text = "File";
|
|
//
|
|
// itemnewmap
|
|
//
|
|
this.itemnewmap.Name = "itemnewmap";
|
|
this.itemnewmap.Size = new System.Drawing.Size(167, 22);
|
|
this.itemnewmap.Text = "New Map";
|
|
this.itemnewmap.Click += new System.EventHandler(this.itemnewmap_Click);
|
|
//
|
|
// itemopenmap
|
|
//
|
|
this.itemopenmap.Name = "itemopenmap";
|
|
this.itemopenmap.Size = new System.Drawing.Size(167, 22);
|
|
this.itemopenmap.Text = "Open Map...";
|
|
this.itemopenmap.Click += new System.EventHandler(this.itemopenmap_Click);
|
|
//
|
|
// itemclosemap
|
|
//
|
|
this.itemclosemap.Name = "itemclosemap";
|
|
this.itemclosemap.Size = new System.Drawing.Size(167, 22);
|
|
this.itemclosemap.Text = "Close Map";
|
|
this.itemclosemap.Click += new System.EventHandler(this.itemclosemap_Click);
|
|
//
|
|
// toolStripMenuItem1
|
|
//
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
|
this.toolStripMenuItem1.Size = new System.Drawing.Size(164, 6);
|
|
//
|
|
// itemsavemap
|
|
//
|
|
this.itemsavemap.Name = "itemsavemap";
|
|
this.itemsavemap.Size = new System.Drawing.Size(167, 22);
|
|
this.itemsavemap.Text = "Save Map";
|
|
//
|
|
// itemsavemapas
|
|
//
|
|
this.itemsavemapas.Name = "itemsavemapas";
|
|
this.itemsavemapas.Size = new System.Drawing.Size(167, 22);
|
|
this.itemsavemapas.Text = "Save Map As...";
|
|
//
|
|
// itemsavemapinto
|
|
//
|
|
this.itemsavemapinto.Name = "itemsavemapinto";
|
|
this.itemsavemapinto.Size = new System.Drawing.Size(167, 22);
|
|
this.itemsavemapinto.Text = "Save Map Into...";
|
|
//
|
|
// toolStripMenuItem2
|
|
//
|
|
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
|
|
this.toolStripMenuItem2.Size = new System.Drawing.Size(164, 6);
|
|
//
|
|
// itemexit
|
|
//
|
|
this.itemexit.Name = "itemexit";
|
|
this.itemexit.Size = new System.Drawing.Size(167, 22);
|
|
this.itemexit.Text = "Exit";
|
|
this.itemexit.Click += new System.EventHandler(this.itemexit_Click);
|
|
//
|
|
// menuhelp
|
|
//
|
|
this.menuhelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.itemhelpabout});
|
|
this.menuhelp.Name = "menuhelp";
|
|
this.menuhelp.Size = new System.Drawing.Size(40, 20);
|
|
this.menuhelp.Text = "Help";
|
|
//
|
|
// itemhelpabout
|
|
//
|
|
this.itemhelpabout.Name = "itemhelpabout";
|
|
this.itemhelpabout.Size = new System.Drawing.Size(191, 22);
|
|
this.itemhelpabout.Text = "About Doom Builder...";
|
|
this.itemhelpabout.Click += new System.EventHandler(this.itemhelpabout_Click);
|
|
//
|
|
// toolbar
|
|
//
|
|
this.toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
|
this.toolbar.Location = new System.Drawing.Point(0, 24);
|
|
this.toolbar.Name = "toolbar";
|
|
this.toolbar.Size = new System.Drawing.Size(731, 25);
|
|
this.toolbar.TabIndex = 1;
|
|
this.toolbar.Text = "toolStrip1";
|
|
//
|
|
// statusbar
|
|
//
|
|
this.statusbar.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.statuslabel});
|
|
this.statusbar.Location = new System.Drawing.Point(0, 523);
|
|
this.statusbar.Name = "statusbar";
|
|
this.statusbar.Size = new System.Drawing.Size(731, 22);
|
|
this.statusbar.TabIndex = 2;
|
|
//
|
|
// statuslabel
|
|
//
|
|
this.statuslabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.statuslabel.Name = "statuslabel";
|
|
this.statuslabel.Size = new System.Drawing.Size(716, 17);
|
|
this.statuslabel.Spring = true;
|
|
this.statuslabel.Text = "Initializing user interface...";
|
|
this.statuslabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// panelinfo
|
|
//
|
|
this.panelinfo.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panelinfo.Location = new System.Drawing.Point(0, 422);
|
|
this.panelinfo.Name = "panelinfo";
|
|
this.panelinfo.Size = new System.Drawing.Size(731, 101);
|
|
this.panelinfo.TabIndex = 4;
|
|
//
|
|
// redrawtimer
|
|
//
|
|
this.redrawtimer.Interval = 1;
|
|
this.redrawtimer.Tick += new System.EventHandler(this.redrawtimer_Tick);
|
|
//
|
|
// display
|
|
//
|
|
this.display.BackColor = System.Drawing.SystemColors.AppWorkspace;
|
|
this.display.BackgroundImage = global::CodeImp.DoomBuilder.Properties.Resources.Splash2;
|
|
this.display.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
|
this.display.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
this.display.CausesValidation = false;
|
|
this.display.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.display.Location = new System.Drawing.Point(0, 49);
|
|
this.display.Name = "display";
|
|
this.display.Size = new System.Drawing.Size(731, 373);
|
|
this.display.TabIndex = 5;
|
|
this.display.MouseLeave += new System.EventHandler(this.display_MouseLeave);
|
|
this.display.MouseDown += new System.Windows.Forms.MouseEventHandler(this.display_MouseDown);
|
|
this.display.MouseMove += new System.Windows.Forms.MouseEventHandler(this.display_MouseMove);
|
|
this.display.MouseClick += new System.Windows.Forms.MouseEventHandler(this.display_MouseClick);
|
|
this.display.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.display_MouseDoubleClick);
|
|
this.display.Resize += new System.EventHandler(this.display_Resize);
|
|
this.display.MouseEnter += new System.EventHandler(this.display_MouseEnter);
|
|
this.display.Paint += new System.Windows.Forms.PaintEventHandler(this.display_Paint);
|
|
this.display.MouseUp += new System.Windows.Forms.MouseEventHandler(this.display_MouseUp);
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.ClientSize = new System.Drawing.Size(731, 545);
|
|
this.Controls.Add(this.display);
|
|
this.Controls.Add(this.panelinfo);
|
|
this.Controls.Add(this.statusbar);
|
|
this.Controls.Add(this.toolbar);
|
|
this.Controls.Add(this.menumain);
|
|
this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.MainMenuStrip = this.menumain;
|
|
this.Name = "MainForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|
this.Text = "Doom Builder";
|
|
this.Resize += new System.EventHandler(this.MainForm_Resize);
|
|
this.Move += new System.EventHandler(this.MainForm_Move);
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|
this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd);
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.menumain.ResumeLayout(false);
|
|
this.menumain.PerformLayout();
|
|
this.statusbar.ResumeLayout(false);
|
|
this.statusbar.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menumain;
|
|
private System.Windows.Forms.ToolStrip toolbar;
|
|
private System.Windows.Forms.StatusStrip statusbar;
|
|
private System.Windows.Forms.Panel panelinfo;
|
|
private System.Windows.Forms.ToolStripMenuItem menufile;
|
|
private System.Windows.Forms.ToolStripMenuItem itemnewmap;
|
|
private System.Windows.Forms.ToolStripMenuItem itemopenmap;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
|
private System.Windows.Forms.ToolStripMenuItem itemsavemap;
|
|
private System.Windows.Forms.ToolStripMenuItem itemsavemapas;
|
|
private System.Windows.Forms.ToolStripMenuItem itemsavemapinto;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
|
|
private System.Windows.Forms.ToolStripMenuItem itemexit;
|
|
private System.Windows.Forms.ToolStripStatusLabel statuslabel;
|
|
private System.Windows.Forms.ToolStripMenuItem itemclosemap;
|
|
private System.Windows.Forms.Timer redrawtimer;
|
|
private System.Windows.Forms.ToolStripMenuItem menuhelp;
|
|
private System.Windows.Forms.ToolStripMenuItem itemhelpabout;
|
|
private System.Windows.Forms.Panel display;
|
|
}
|
|
} |