Form1.Designer.cs 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. namespace Movement_Loop_Generator_2._0
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  29. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  30. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.authorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  33. this.toolStripTextBox_Author = new System.Windows.Forms.ToolStripTextBox();
  34. this.reversePathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.howToUseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.collectWaypointsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.loadingLogsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.useGeneratorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.userToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.authorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.textBox_LogFile = new System.Windows.Forms.TextBox();
  43. this.label1 = new System.Windows.Forms.Label();
  44. this.btn_Browse = new System.Windows.Forms.Button();
  45. this.listView_Loaded = new System.Windows.Forms.ListView();
  46. this.column_blank = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  47. this.column_SpawnX = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  48. this.column_SpawnY = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  49. this.column_SpawnZ = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  50. this.column_SpawnSpeed = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  51. this.column_SpawnDelay = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  52. this.column_SpawnFunction = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  53. this.richTextBox_OutputView = new System.Windows.Forms.RichTextBox();
  54. this.groupBox_Edit = new System.Windows.Forms.GroupBox();
  55. this.checkBox_ReversePath = new System.Windows.Forms.CheckBox();
  56. this.button_Remove = new System.Windows.Forms.Button();
  57. this.button_Update = new System.Windows.Forms.Button();
  58. this.button_Reset = new System.Windows.Forms.Button();
  59. this.button_InsertBelow = new System.Windows.Forms.Button();
  60. this.textBox_Function = new System.Windows.Forms.TextBox();
  61. this.textBox_Delay = new System.Windows.Forms.TextBox();
  62. this.textBox_Speed = new System.Windows.Forms.TextBox();
  63. this.label9 = new System.Windows.Forms.Label();
  64. this.label8 = new System.Windows.Forms.Label();
  65. this.label7 = new System.Windows.Forms.Label();
  66. this.label6 = new System.Windows.Forms.Label();
  67. this.textBox_ZLOC = new System.Windows.Forms.TextBox();
  68. this.textBox_YLOC = new System.Windows.Forms.TextBox();
  69. this.textBox_XLOC = new System.Windows.Forms.TextBox();
  70. this.label5 = new System.Windows.Forms.Label();
  71. this.label3 = new System.Windows.Forms.Label();
  72. this.button_Save = new System.Windows.Forms.Button();
  73. this.button_ParseDetalis = new System.Windows.Forms.Button();
  74. this.listBox_NPCs = new System.Windows.Forms.ListBox();
  75. this.button_InsertAbove = new System.Windows.Forms.Button();
  76. this.menuStrip1.SuspendLayout();
  77. this.SuspendLayout();
  78. //
  79. // menuStrip1
  80. //
  81. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  82. this.fileToolStripMenuItem,
  83. this.howToUseToolStripMenuItem,
  84. this.aboutToolStripMenuItem,
  85. this.userToolStripMenuItem,
  86. this.authorToolStripMenuItem});
  87. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  88. this.menuStrip1.Name = "menuStrip1";
  89. this.menuStrip1.Size = new System.Drawing.Size(940, 24);
  90. this.menuStrip1.TabIndex = 0;
  91. this.menuStrip1.Text = "menuStrip1";
  92. //
  93. // fileToolStripMenuItem
  94. //
  95. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  96. this.exitToolStripMenuItem,
  97. this.settingsToolStripMenuItem});
  98. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  99. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  100. this.fileToolStripMenuItem.Text = "File";
  101. //
  102. // exitToolStripMenuItem
  103. //
  104. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  105. this.exitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  106. this.exitToolStripMenuItem.Text = "Exit";
  107. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click_1);
  108. //
  109. // settingsToolStripMenuItem
  110. //
  111. this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  112. this.authorToolStripMenuItem1,
  113. this.reversePathToolStripMenuItem});
  114. this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
  115. this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  116. this.settingsToolStripMenuItem.Text = "Settings";
  117. //
  118. // authorToolStripMenuItem1
  119. //
  120. this.authorToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  121. this.toolStripTextBox_Author});
  122. this.authorToolStripMenuItem1.Name = "authorToolStripMenuItem1";
  123. this.authorToolStripMenuItem1.Size = new System.Drawing.Size(141, 22);
  124. this.authorToolStripMenuItem1.Text = "Author";
  125. this.authorToolStripMenuItem1.MouseEnter += new System.EventHandler(this.authorToolStripMenuItem_MouseEnter);
  126. //
  127. // toolStripTextBox_Author
  128. //
  129. this.toolStripTextBox_Author.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  130. this.toolStripTextBox_Author.Name = "toolStripTextBox_Author";
  131. this.toolStripTextBox_Author.Size = new System.Drawing.Size(100, 23);
  132. this.toolStripTextBox_Author.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBoxAuthor_KeyDown);
  133. //
  134. // reversePathToolStripMenuItem
  135. //
  136. this.reversePathToolStripMenuItem.Name = "reversePathToolStripMenuItem";
  137. this.reversePathToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
  138. this.reversePathToolStripMenuItem.Text = "Reverse Path";
  139. //
  140. // howToUseToolStripMenuItem
  141. //
  142. this.howToUseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  143. this.collectWaypointsToolStripMenuItem,
  144. this.loadingLogsToolStripMenuItem,
  145. this.useGeneratorToolStripMenuItem});
  146. this.howToUseToolStripMenuItem.Name = "howToUseToolStripMenuItem";
  147. this.howToUseToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
  148. this.howToUseToolStripMenuItem.Text = "How To";
  149. //
  150. // collectWaypointsToolStripMenuItem
  151. //
  152. this.collectWaypointsToolStripMenuItem.Name = "collectWaypointsToolStripMenuItem";
  153. this.collectWaypointsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  154. this.collectWaypointsToolStripMenuItem.Text = "Collecting locations";
  155. this.collectWaypointsToolStripMenuItem.Click += new System.EventHandler(this.collectWaypointsToolStripMenuItem_Click);
  156. //
  157. // loadingLogsToolStripMenuItem
  158. //
  159. this.loadingLogsToolStripMenuItem.Name = "loadingLogsToolStripMenuItem";
  160. this.loadingLogsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  161. this.loadingLogsToolStripMenuItem.Text = "Loading logs";
  162. this.loadingLogsToolStripMenuItem.Click += new System.EventHandler(this.loadingLogsToolStripMenuItem_Click);
  163. //
  164. // useGeneratorToolStripMenuItem
  165. //
  166. this.useGeneratorToolStripMenuItem.Name = "useGeneratorToolStripMenuItem";
  167. this.useGeneratorToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
  168. this.useGeneratorToolStripMenuItem.Text = "Editing locations";
  169. this.useGeneratorToolStripMenuItem.Click += new System.EventHandler(this.editinglogsToolStripMenuItem_Click);
  170. //
  171. // aboutToolStripMenuItem
  172. //
  173. this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
  174. this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
  175. this.aboutToolStripMenuItem.Text = "About";
  176. //
  177. // userToolStripMenuItem
  178. //
  179. this.userToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
  180. this.userToolStripMenuItem.Name = "userToolStripMenuItem";
  181. this.userToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
  182. this.userToolStripMenuItem.Text = "user";
  183. //
  184. // authorToolStripMenuItem
  185. //
  186. this.authorToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
  187. this.authorToolStripMenuItem.Name = "authorToolStripMenuItem";
  188. this.authorToolStripMenuItem.Size = new System.Drawing.Size(62, 20);
  189. this.authorToolStripMenuItem.Text = "Author :";
  190. //
  191. // textBox_LogFile
  192. //
  193. this.textBox_LogFile.AllowDrop = true;
  194. this.textBox_LogFile.Location = new System.Drawing.Point(92, 29);
  195. this.textBox_LogFile.Name = "textBox_LogFile";
  196. this.textBox_LogFile.Size = new System.Drawing.Size(348, 20);
  197. this.textBox_LogFile.TabIndex = 1;
  198. this.textBox_LogFile.DoubleClick += new System.EventHandler(this.textBox_LogFile_DoubleClick);
  199. //
  200. // label1
  201. //
  202. this.label1.AutoSize = true;
  203. this.label1.Location = new System.Drawing.Point(12, 32);
  204. this.label1.Name = "label1";
  205. this.label1.Size = new System.Drawing.Size(74, 13);
  206. this.label1.TabIndex = 2;
  207. this.label1.Text = "Load Log File:";
  208. //
  209. // btn_Browse
  210. //
  211. this.btn_Browse.Location = new System.Drawing.Point(446, 27);
  212. this.btn_Browse.Name = "btn_Browse";
  213. this.btn_Browse.Size = new System.Drawing.Size(75, 23);
  214. this.btn_Browse.TabIndex = 3;
  215. this.btn_Browse.Text = "Browse";
  216. this.btn_Browse.UseVisualStyleBackColor = true;
  217. this.btn_Browse.Click += new System.EventHandler(this.btn_Browse_Click);
  218. //
  219. // listView_Loaded
  220. //
  221. this.listView_Loaded.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  222. this.column_blank,
  223. this.column_SpawnX,
  224. this.column_SpawnY,
  225. this.column_SpawnZ,
  226. this.column_SpawnSpeed,
  227. this.column_SpawnDelay,
  228. this.column_SpawnFunction});
  229. this.listView_Loaded.FullRowSelect = true;
  230. this.listView_Loaded.GridLines = true;
  231. this.listView_Loaded.HideSelection = false;
  232. this.listView_Loaded.Location = new System.Drawing.Point(141, 55);
  233. this.listView_Loaded.MultiSelect = false;
  234. this.listView_Loaded.Name = "listView_Loaded";
  235. this.listView_Loaded.Size = new System.Drawing.Size(509, 374);
  236. this.listView_Loaded.TabIndex = 1;
  237. this.listView_Loaded.TabStop = false;
  238. this.listView_Loaded.UseCompatibleStateImageBehavior = false;
  239. this.listView_Loaded.View = System.Windows.Forms.View.Details;
  240. this.listView_Loaded.SelectedIndexChanged += new System.EventHandler(this.listView_Loaded_SelectedIndexChanged);
  241. //
  242. // column_blank
  243. //
  244. this.column_blank.Text = "";
  245. this.column_blank.Width = 0;
  246. //
  247. // column_SpawnX
  248. //
  249. this.column_SpawnX.Text = "X";
  250. this.column_SpawnX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  251. this.column_SpawnX.Width = 70;
  252. //
  253. // column_SpawnY
  254. //
  255. this.column_SpawnY.Text = "Y";
  256. this.column_SpawnY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  257. this.column_SpawnY.Width = 70;
  258. //
  259. // column_SpawnZ
  260. //
  261. this.column_SpawnZ.Text = "Z";
  262. this.column_SpawnZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  263. this.column_SpawnZ.Width = 70;
  264. //
  265. // column_SpawnSpeed
  266. //
  267. this.column_SpawnSpeed.Text = "Speed";
  268. this.column_SpawnSpeed.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  269. this.column_SpawnSpeed.Width = 70;
  270. //
  271. // column_SpawnDelay
  272. //
  273. this.column_SpawnDelay.Text = "Delay";
  274. this.column_SpawnDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  275. this.column_SpawnDelay.Width = 70;
  276. //
  277. // column_SpawnFunction
  278. //
  279. this.column_SpawnFunction.Text = "Function";
  280. this.column_SpawnFunction.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  281. this.column_SpawnFunction.Width = 150;
  282. //
  283. // richTextBox_OutputView
  284. //
  285. this.richTextBox_OutputView.BackColor = System.Drawing.Color.Gainsboro;
  286. this.richTextBox_OutputView.Enabled = false;
  287. this.richTextBox_OutputView.Location = new System.Drawing.Point(656, 353);
  288. this.richTextBox_OutputView.Name = "richTextBox_OutputView";
  289. this.richTextBox_OutputView.Size = new System.Drawing.Size(277, 174);
  290. this.richTextBox_OutputView.TabIndex = 0;
  291. this.richTextBox_OutputView.Text = "";
  292. //
  293. // groupBox_Edit
  294. //
  295. this.groupBox_Edit.Location = new System.Drawing.Point(656, 55);
  296. this.groupBox_Edit.Name = "groupBox_Edit";
  297. this.groupBox_Edit.Size = new System.Drawing.Size(277, 292);
  298. this.groupBox_Edit.TabIndex = 4;
  299. this.groupBox_Edit.TabStop = false;
  300. //
  301. // checkBox_ReversePath
  302. //
  303. this.checkBox_ReversePath.AutoSize = true;
  304. this.checkBox_ReversePath.Location = new System.Drawing.Point(569, 463);
  305. this.checkBox_ReversePath.Name = "checkBox_ReversePath";
  306. this.checkBox_ReversePath.Size = new System.Drawing.Size(75, 17);
  307. this.checkBox_ReversePath.TabIndex = 16;
  308. this.checkBox_ReversePath.Text = "Loop Path";
  309. this.checkBox_ReversePath.UseVisualStyleBackColor = true;
  310. this.checkBox_ReversePath.Visible = false;
  311. this.checkBox_ReversePath.CheckedChanged += new System.EventHandler(this.checkBox_ReversePath_CheckedChanged);
  312. //
  313. // button_Remove
  314. //
  315. this.button_Remove.Enabled = false;
  316. this.button_Remove.Location = new System.Drawing.Point(405, 487);
  317. this.button_Remove.Name = "button_Remove";
  318. this.button_Remove.Size = new System.Drawing.Size(75, 23);
  319. this.button_Remove.TabIndex = 5;
  320. this.button_Remove.Text = "Remove";
  321. this.button_Remove.UseVisualStyleBackColor = true;
  322. this.button_Remove.Click += new System.EventHandler(this.button_Remove_Click);
  323. //
  324. // button_Update
  325. //
  326. this.button_Update.Enabled = false;
  327. this.button_Update.Location = new System.Drawing.Point(324, 487);
  328. this.button_Update.Name = "button_Update";
  329. this.button_Update.Size = new System.Drawing.Size(75, 23);
  330. this.button_Update.TabIndex = 5;
  331. this.button_Update.Text = "Update";
  332. this.button_Update.UseVisualStyleBackColor = true;
  333. this.button_Update.Click += new System.EventHandler(this.button_Update_Click);
  334. //
  335. // button_Reset
  336. //
  337. this.button_Reset.Enabled = false;
  338. this.button_Reset.Location = new System.Drawing.Point(486, 487);
  339. this.button_Reset.Name = "button_Reset";
  340. this.button_Reset.Size = new System.Drawing.Size(75, 23);
  341. this.button_Reset.TabIndex = 5;
  342. this.button_Reset.Text = "Reset";
  343. this.button_Reset.UseVisualStyleBackColor = true;
  344. this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
  345. //
  346. // button_InsertBelow
  347. //
  348. this.button_InsertBelow.Enabled = false;
  349. this.button_InsertBelow.Location = new System.Drawing.Point(243, 487);
  350. this.button_InsertBelow.Name = "button_InsertBelow";
  351. this.button_InsertBelow.Size = new System.Drawing.Size(75, 23);
  352. this.button_InsertBelow.TabIndex = 8;
  353. this.button_InsertBelow.Text = "Insert Below";
  354. this.button_InsertBelow.UseVisualStyleBackColor = true;
  355. this.button_InsertBelow.Click += new System.EventHandler(this.button_InsertBelow_Click);
  356. //
  357. // textBox_Function
  358. //
  359. this.textBox_Function.Location = new System.Drawing.Point(525, 435);
  360. this.textBox_Function.Name = "textBox_Function";
  361. this.textBox_Function.Size = new System.Drawing.Size(117, 20);
  362. this.textBox_Function.TabIndex = 15;
  363. //
  364. // textBox_Delay
  365. //
  366. this.textBox_Delay.Location = new System.Drawing.Point(348, 435);
  367. this.textBox_Delay.Name = "textBox_Delay";
  368. this.textBox_Delay.Size = new System.Drawing.Size(117, 20);
  369. this.textBox_Delay.TabIndex = 14;
  370. //
  371. // textBox_Speed
  372. //
  373. this.textBox_Speed.Location = new System.Drawing.Point(185, 435);
  374. this.textBox_Speed.Name = "textBox_Speed";
  375. this.textBox_Speed.Size = new System.Drawing.Size(117, 20);
  376. this.textBox_Speed.TabIndex = 13;
  377. //
  378. // label9
  379. //
  380. this.label9.AutoSize = true;
  381. this.label9.Location = new System.Drawing.Point(471, 438);
  382. this.label9.Name = "label9";
  383. this.label9.Size = new System.Drawing.Size(48, 13);
  384. this.label9.TabIndex = 12;
  385. this.label9.Text = "Function";
  386. //
  387. // label8
  388. //
  389. this.label8.AutoSize = true;
  390. this.label8.Location = new System.Drawing.Point(141, 438);
  391. this.label8.Name = "label8";
  392. this.label8.Size = new System.Drawing.Size(38, 13);
  393. this.label8.TabIndex = 11;
  394. this.label8.Text = "Speed";
  395. //
  396. // label7
  397. //
  398. this.label7.AutoSize = true;
  399. this.label7.Location = new System.Drawing.Point(308, 438);
  400. this.label7.Name = "label7";
  401. this.label7.Size = new System.Drawing.Size(34, 13);
  402. this.label7.TabIndex = 10;
  403. this.label7.Text = "Delay";
  404. //
  405. // label6
  406. //
  407. this.label6.AutoSize = true;
  408. this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  409. this.label6.Location = new System.Drawing.Point(429, 464);
  410. this.label6.Name = "label6";
  411. this.label6.Size = new System.Drawing.Size(15, 13);
  412. this.label6.TabIndex = 9;
  413. this.label6.Text = "Z";
  414. //
  415. // textBox_ZLOC
  416. //
  417. this.textBox_ZLOC.Location = new System.Drawing.Point(446, 461);
  418. this.textBox_ZLOC.Name = "textBox_ZLOC";
  419. this.textBox_ZLOC.Size = new System.Drawing.Size(117, 20);
  420. this.textBox_ZLOC.TabIndex = 8;
  421. //
  422. // textBox_YLOC
  423. //
  424. this.textBox_YLOC.Location = new System.Drawing.Point(306, 461);
  425. this.textBox_YLOC.Name = "textBox_YLOC";
  426. this.textBox_YLOC.Size = new System.Drawing.Size(117, 20);
  427. this.textBox_YLOC.TabIndex = 7;
  428. //
  429. // textBox_XLOC
  430. //
  431. this.textBox_XLOC.Location = new System.Drawing.Point(162, 461);
  432. this.textBox_XLOC.Name = "textBox_XLOC";
  433. this.textBox_XLOC.Size = new System.Drawing.Size(117, 20);
  434. this.textBox_XLOC.TabIndex = 6;
  435. //
  436. // label5
  437. //
  438. this.label5.AutoSize = true;
  439. this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  440. this.label5.Location = new System.Drawing.Point(285, 464);
  441. this.label5.Name = "label5";
  442. this.label5.Size = new System.Drawing.Size(15, 13);
  443. this.label5.TabIndex = 5;
  444. this.label5.Text = "Y";
  445. //
  446. // label3
  447. //
  448. this.label3.AutoSize = true;
  449. this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  450. this.label3.Location = new System.Drawing.Point(141, 464);
  451. this.label3.Name = "label3";
  452. this.label3.Size = new System.Drawing.Size(15, 13);
  453. this.label3.TabIndex = 2;
  454. this.label3.Text = "X";
  455. //
  456. // button_Save
  457. //
  458. this.button_Save.Location = new System.Drawing.Point(679, 26);
  459. this.button_Save.Name = "button_Save";
  460. this.button_Save.Size = new System.Drawing.Size(75, 23);
  461. this.button_Save.TabIndex = 5;
  462. this.button_Save.Text = "Save";
  463. this.button_Save.UseVisualStyleBackColor = true;
  464. this.button_Save.Click += new System.EventHandler(this.button_Save_Click);
  465. //
  466. // button_ParseDetalis
  467. //
  468. this.button_ParseDetalis.Location = new System.Drawing.Point(575, 26);
  469. this.button_ParseDetalis.Name = "button_ParseDetalis";
  470. this.button_ParseDetalis.Size = new System.Drawing.Size(75, 23);
  471. this.button_ParseDetalis.TabIndex = 6;
  472. this.button_ParseDetalis.Text = "Parse";
  473. this.button_ParseDetalis.UseVisualStyleBackColor = true;
  474. this.button_ParseDetalis.Click += new System.EventHandler(this.button_ParseDetalis_Click);
  475. //
  476. // listBox_NPCs
  477. //
  478. this.listBox_NPCs.FormattingEnabled = true;
  479. this.listBox_NPCs.Location = new System.Drawing.Point(9, 55);
  480. this.listBox_NPCs.Name = "listBox_NPCs";
  481. this.listBox_NPCs.Size = new System.Drawing.Size(126, 472);
  482. this.listBox_NPCs.TabIndex = 7;
  483. this.listBox_NPCs.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listBox_NPCs_MouseDoubleClick);
  484. //
  485. // button_InsertAbove
  486. //
  487. this.button_InsertAbove.Enabled = false;
  488. this.button_InsertAbove.Location = new System.Drawing.Point(162, 487);
  489. this.button_InsertAbove.Name = "button_InsertAbove";
  490. this.button_InsertAbove.Size = new System.Drawing.Size(75, 23);
  491. this.button_InsertAbove.TabIndex = 16;
  492. this.button_InsertAbove.Text = "Insert Above";
  493. this.button_InsertAbove.UseVisualStyleBackColor = true;
  494. this.button_InsertAbove.Click += new System.EventHandler(this.button_InsertAbove_Click);
  495. //
  496. // Form1
  497. //
  498. this.AllowDrop = true;
  499. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  500. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  501. this.ClientSize = new System.Drawing.Size(940, 537);
  502. this.Controls.Add(this.button_Reset);
  503. this.Controls.Add(this.checkBox_ReversePath);
  504. this.Controls.Add(this.button_InsertAbove);
  505. this.Controls.Add(this.button_Remove);
  506. this.Controls.Add(this.listBox_NPCs);
  507. this.Controls.Add(this.button_Update);
  508. this.Controls.Add(this.richTextBox_OutputView);
  509. this.Controls.Add(this.listView_Loaded);
  510. this.Controls.Add(this.button_ParseDetalis);
  511. this.Controls.Add(this.textBox_Function);
  512. this.Controls.Add(this.button_InsertBelow);
  513. this.Controls.Add(this.label9);
  514. this.Controls.Add(this.textBox_Delay);
  515. this.Controls.Add(this.button_Save);
  516. this.Controls.Add(this.textBox_Speed);
  517. this.Controls.Add(this.label7);
  518. this.Controls.Add(this.groupBox_Edit);
  519. this.Controls.Add(this.btn_Browse);
  520. this.Controls.Add(this.label8);
  521. this.Controls.Add(this.label1);
  522. this.Controls.Add(this.textBox_LogFile);
  523. this.Controls.Add(this.menuStrip1);
  524. this.Controls.Add(this.textBox_XLOC);
  525. this.Controls.Add(this.textBox_ZLOC);
  526. this.Controls.Add(this.label6);
  527. this.Controls.Add(this.label3);
  528. this.Controls.Add(this.label5);
  529. this.Controls.Add(this.textBox_YLOC);
  530. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  531. this.Name = "Form1";
  532. this.Text = "Form1";
  533. this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Form1_DragDrop);
  534. this.DragEnter += new System.Windows.Forms.DragEventHandler(this.Form1_DragEnter);
  535. this.menuStrip1.ResumeLayout(false);
  536. this.menuStrip1.PerformLayout();
  537. this.ResumeLayout(false);
  538. this.PerformLayout();
  539. }
  540. #endregion
  541. private System.Windows.Forms.MenuStrip menuStrip1;
  542. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  543. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  544. private System.Windows.Forms.TextBox textBox_LogFile;
  545. private System.Windows.Forms.Label label1;
  546. private System.Windows.Forms.Button btn_Browse;
  547. private System.Windows.Forms.ListView listView_Loaded;
  548. private System.Windows.Forms.ColumnHeader column_SpawnX;
  549. private System.Windows.Forms.ColumnHeader column_SpawnY;
  550. private System.Windows.Forms.ColumnHeader column_SpawnZ;
  551. private System.Windows.Forms.ColumnHeader column_SpawnSpeed;
  552. private System.Windows.Forms.ColumnHeader column_SpawnDelay;
  553. private System.Windows.Forms.ColumnHeader column_SpawnFunction;
  554. private System.Windows.Forms.ColumnHeader column_blank;
  555. private System.Windows.Forms.RichTextBox richTextBox_OutputView;
  556. private System.Windows.Forms.GroupBox groupBox_Edit;
  557. private System.Windows.Forms.TextBox textBox_Function;
  558. private System.Windows.Forms.TextBox textBox_Delay;
  559. private System.Windows.Forms.TextBox textBox_Speed;
  560. private System.Windows.Forms.Label label9;
  561. private System.Windows.Forms.Label label8;
  562. private System.Windows.Forms.Label label7;
  563. private System.Windows.Forms.Label label6;
  564. private System.Windows.Forms.TextBox textBox_ZLOC;
  565. private System.Windows.Forms.TextBox textBox_YLOC;
  566. private System.Windows.Forms.TextBox textBox_XLOC;
  567. private System.Windows.Forms.Label label5;
  568. private System.Windows.Forms.Label label3;
  569. private System.Windows.Forms.Button button_Reset;
  570. private System.Windows.Forms.Button button_InsertBelow;
  571. private System.Windows.Forms.Button button_Update;
  572. private System.Windows.Forms.Button button_Remove;
  573. private System.Windows.Forms.Button button_Save;
  574. private System.Windows.Forms.Button button_ParseDetalis;
  575. private System.Windows.Forms.ToolStripMenuItem howToUseToolStripMenuItem;
  576. private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
  577. private System.Windows.Forms.ToolStripMenuItem collectWaypointsToolStripMenuItem;
  578. private System.Windows.Forms.ToolStripMenuItem useGeneratorToolStripMenuItem;
  579. private System.Windows.Forms.ToolStripMenuItem loadingLogsToolStripMenuItem;
  580. private System.Windows.Forms.CheckBox checkBox_ReversePath;
  581. private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem;
  582. private System.Windows.Forms.ToolStripMenuItem authorToolStripMenuItem;
  583. private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
  584. private System.Windows.Forms.ToolStripMenuItem authorToolStripMenuItem1;
  585. private System.Windows.Forms.ToolStripTextBox toolStripTextBox_Author;
  586. private System.Windows.Forms.ToolStripMenuItem reversePathToolStripMenuItem;
  587. private System.Windows.Forms.ListBox listBox_NPCs;
  588. private System.Windows.Forms.Button button_InsertAbove;
  589. }
  590. }