00001 namespace Editor
00002 {
00003 partial class NewSceneDialog
00004 {
00008 private System.ComponentModel.IContainer components = null;
00009
00014 protected override void Dispose(bool disposing)
00015 {
00016 if (disposing && (components != null))
00017 {
00018 components.Dispose();
00019 }
00020 base.Dispose(disposing);
00021 }
00022
00023 #region Windows Form Designer generated code
00024
00029 private void InitializeComponent()
00030 {
00031 this.label2 = new System.Windows.Forms.Label();
00032 this.sizeTextBox = new System.Windows.Forms.TextBox();
00033 this.label3 = new System.Windows.Forms.Label();
00034 this.numLevelTextBox = new System.Windows.Forms.TextBox();
00035 this.btnOk = new System.Windows.Forms.Button();
00036 this.BtnCancel = new System.Windows.Forms.Button();
00037 this.browseBtn = new System.Windows.Forms.Button();
00038 this.fileNameTextBox = new System.Windows.Forms.TextBox();
00039 this.label4 = new System.Windows.Forms.Label();
00040 this.SuspendLayout();
00041
00042
00043
00044 this.label2.AutoSize = true;
00045 this.label2.Location = new System.Drawing.Point(9, 60);
00046 this.label2.Name = "label2";
00047 this.label2.Size = new System.Drawing.Size(27, 13);
00048 this.label2.TabIndex = 2;
00049 this.label2.Text = "Size";
00050
00051
00052
00053 this.sizeTextBox.Location = new System.Drawing.Point(111, 53);
00054 this.sizeTextBox.Name = "sizeTextBox";
00055 this.sizeTextBox.Size = new System.Drawing.Size(535, 20);
00056 this.sizeTextBox.TabIndex = 3;
00057 this.sizeTextBox.Text = "1000";
00058 this.sizeTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
00059
00060
00061
00062 this.label3.AutoSize = true;
00063 this.label3.Location = new System.Drawing.Point(9, 94);
00064 this.label3.Name = "label3";
00065 this.label3.Size = new System.Drawing.Size(89, 13);
00066 this.label3.TabIndex = 4;
00067 this.label3.Text = "QuadTree Levels";
00068
00069
00070
00071 this.numLevelTextBox.Location = new System.Drawing.Point(111, 94);
00072 this.numLevelTextBox.Name = "numLevelTextBox";
00073 this.numLevelTextBox.Size = new System.Drawing.Size(535, 20);
00074 this.numLevelTextBox.TabIndex = 5;
00075 this.numLevelTextBox.Text = "4";
00076 this.numLevelTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
00077
00078
00079
00080 this.btnOk.Location = new System.Drawing.Point(76, 139);
00081 this.btnOk.Name = "btnOk";
00082 this.btnOk.Size = new System.Drawing.Size(86, 27);
00083 this.btnOk.TabIndex = 6;
00084 this.btnOk.Text = "Ok";
00085 this.btnOk.UseVisualStyleBackColor = true;
00086 this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
00087
00088
00089
00090 this.BtnCancel.Location = new System.Drawing.Point(168, 139);
00091 this.BtnCancel.Name = "BtnCancel";
00092 this.BtnCancel.Size = new System.Drawing.Size(86, 27);
00093 this.BtnCancel.TabIndex = 7;
00094 this.BtnCancel.Text = "Cancel";
00095 this.BtnCancel.UseVisualStyleBackColor = true;
00096 this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
00097
00098
00099
00100 this.browseBtn.Location = new System.Drawing.Point(595, 12);
00101 this.browseBtn.Name = "browseBtn";
00102 this.browseBtn.Size = new System.Drawing.Size(51, 20);
00103 this.browseBtn.TabIndex = 8;
00104 this.browseBtn.Text = "...";
00105 this.browseBtn.UseVisualStyleBackColor = true;
00106 this.browseBtn.Click += new System.EventHandler(this.browseBtn_Click);
00107
00108
00109
00110 this.fileNameTextBox.Location = new System.Drawing.Point(111, 12);
00111 this.fileNameTextBox.Name = "fileNameTextBox";
00112 this.fileNameTextBox.Size = new System.Drawing.Size(478, 20);
00113 this.fileNameTextBox.TabIndex = 9;
00114 this.fileNameTextBox.Text = "Needed!";
00115 this.fileNameTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
00116 this.fileNameTextBox.TextChanged += new System.EventHandler(this.fileNameTextBox_TextChanged);
00117
00118
00119
00120 this.label4.AutoSize = true;
00121 this.label4.Location = new System.Drawing.Point(9, 15);
00122 this.label4.Name = "label4";
00123 this.label4.Size = new System.Drawing.Size(51, 13);
00124 this.label4.TabIndex = 10;
00125 this.label4.Text = "FileName";
00126
00127
00128
00129 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00130 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00131 this.ClientSize = new System.Drawing.Size(661, 179);
00132 this.Controls.Add(this.label4);
00133 this.Controls.Add(this.fileNameTextBox);
00134 this.Controls.Add(this.browseBtn);
00135 this.Controls.Add(this.BtnCancel);
00136 this.Controls.Add(this.btnOk);
00137 this.Controls.Add(this.numLevelTextBox);
00138 this.Controls.Add(this.label3);
00139 this.Controls.Add(this.sizeTextBox);
00140 this.Controls.Add(this.label2);
00141 this.Name = "NewSceneDialog";
00142 this.Text = "NewSceneDialog";
00143 this.Load += new System.EventHandler(this.NewSceneDialog_Load);
00144 this.ResumeLayout(false);
00145 this.PerformLayout();
00146
00147 }
00148
00149 #endregion
00150
00151 private System.Windows.Forms.Label label2;
00152 private System.Windows.Forms.TextBox sizeTextBox;
00153 private System.Windows.Forms.Label label3;
00154 private System.Windows.Forms.TextBox numLevelTextBox;
00155 private System.Windows.Forms.Button btnOk;
00156 private System.Windows.Forms.Button BtnCancel;
00157 private System.Windows.Forms.Button browseBtn;
00158 private System.Windows.Forms.TextBox fileNameTextBox;
00159 private System.Windows.Forms.Label label4;
00160
00161 }
00162 }