MainForm.Designer.cs 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. namespace Analyser
  2. {
  3. partial class MainForm
  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.label1 = new System.Windows.Forms.Label();
  29. this.dlgOpen = new System.Windows.Forms.OpenFileDialog();
  30. this.btnBrowse = new System.Windows.Forms.Button();
  31. this.txtList1 = new System.Windows.Forms.TextBox();
  32. this.txtList2 = new System.Windows.Forms.TextBox();
  33. this.txtList3 = new System.Windows.Forms.TextBox();
  34. this.btnTry1 = new System.Windows.Forms.Button();
  35. this.btnTry2 = new System.Windows.Forms.Button();
  36. this.btnTry3 = new System.Windows.Forms.Button();
  37. this.txtStatus = new System.Windows.Forms.TextBox();
  38. this.tabControl = new System.Windows.Forms.TabControl();
  39. this.tabCheck = new System.Windows.Forms.TabPage();
  40. this.btnCancel = new System.Windows.Forms.Button();
  41. this.btnTry4 = new System.Windows.Forms.Button();
  42. this.btnReload = new System.Windows.Forms.Button();
  43. this.tabOptions = new System.Windows.Forms.TabPage();
  44. this.chkCurlyParse = new System.Windows.Forms.CheckBox();
  45. this.chkActions = new System.Windows.Forms.CheckBox();
  46. this.txtSystemAeroVars = new System.Windows.Forms.TextBox();
  47. this.chkAero = new System.Windows.Forms.CheckBox();
  48. this.lblSystemVariables = new System.Windows.Forms.Label();
  49. this.lblSortHeader = new System.Windows.Forms.Label();
  50. this.btnReset = new System.Windows.Forms.Button();
  51. this.txtSystemVariables = new System.Windows.Forms.TextBox();
  52. this.chkSortObjects = new System.Windows.Forms.CheckBox();
  53. this.chkSortVariables = new System.Windows.Forms.CheckBox();
  54. this.chkSortLocations = new System.Windows.Forms.CheckBox();
  55. this.txtVariableNames = new System.Windows.Forms.TextBox();
  56. this.chkVariableCalls = new System.Windows.Forms.CheckBox();
  57. this.tabTranslate = new System.Windows.Forms.TabPage();
  58. this.btnBeautify = new System.Windows.Forms.Button();
  59. this.grpTranslateCsv = new System.Windows.Forms.GroupBox();
  60. this.grpCsvDelimiter = new System.Windows.Forms.GroupBox();
  61. this.radComma = new System.Windows.Forms.RadioButton();
  62. this.radSemicolon = new System.Windows.Forms.RadioButton();
  63. this.btnTranslateFromCsv = new System.Windows.Forms.Button();
  64. this.chkIgnoreEmptyTranslationsCsv = new System.Windows.Forms.CheckBox();
  65. this.lblSuffixCsv = new System.Windows.Forms.Label();
  66. this.btnExportCsv = new System.Windows.Forms.Button();
  67. this.edtSuffixCsv = new System.Windows.Forms.TextBox();
  68. this.edtFile = new System.Windows.Forms.TextBox();
  69. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  70. this.tabControl.SuspendLayout();
  71. this.tabCheck.SuspendLayout();
  72. this.tabOptions.SuspendLayout();
  73. this.tabTranslate.SuspendLayout();
  74. this.grpTranslateCsv.SuspendLayout();
  75. this.grpCsvDelimiter.SuspendLayout();
  76. this.SuspendLayout();
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Location = new System.Drawing.Point(15, 13);
  82. this.label1.Name = "label1";
  83. this.label1.Size = new System.Drawing.Size(287, 13);
  84. this.label1.TabIndex = 0;
  85. this.label1.Text = "This utility analyzes the QSP game code in form TXT2GAM.";
  86. //
  87. // btnBrowse
  88. //
  89. this.btnBrowse.Location = new System.Drawing.Point(591, 8);
  90. this.btnBrowse.Name = "btnBrowse";
  91. this.btnBrowse.Size = new System.Drawing.Size(29, 23);
  92. this.btnBrowse.TabIndex = 2;
  93. this.btnBrowse.Text = "...";
  94. this.btnBrowse.UseVisualStyleBackColor = true;
  95. this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
  96. //
  97. // txtList1
  98. //
  99. this.txtList1.BackColor = System.Drawing.SystemColors.Window;
  100. this.txtList1.Location = new System.Drawing.Point(3, 59);
  101. this.txtList1.Multiline = true;
  102. this.txtList1.Name = "txtList1";
  103. this.txtList1.ReadOnly = true;
  104. this.txtList1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  105. this.txtList1.Size = new System.Drawing.Size(205, 348);
  106. this.txtList1.TabIndex = 3;
  107. //
  108. // txtList2
  109. //
  110. this.txtList2.BackColor = System.Drawing.SystemColors.Window;
  111. this.txtList2.Location = new System.Drawing.Point(214, 59);
  112. this.txtList2.Multiline = true;
  113. this.txtList2.Name = "txtList2";
  114. this.txtList2.ReadOnly = true;
  115. this.txtList2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  116. this.txtList2.Size = new System.Drawing.Size(210, 348);
  117. this.txtList2.TabIndex = 4;
  118. //
  119. // txtList3
  120. //
  121. this.txtList3.BackColor = System.Drawing.SystemColors.Window;
  122. this.txtList3.Location = new System.Drawing.Point(430, 59);
  123. this.txtList3.Multiline = true;
  124. this.txtList3.Name = "txtList3";
  125. this.txtList3.ReadOnly = true;
  126. this.txtList3.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  127. this.txtList3.Size = new System.Drawing.Size(229, 348);
  128. this.txtList3.TabIndex = 5;
  129. //
  130. // btnTry1
  131. //
  132. this.btnTry1.Location = new System.Drawing.Point(12, 6);
  133. this.btnTry1.Name = "btnTry1";
  134. this.btnTry1.Size = new System.Drawing.Size(77, 28);
  135. this.btnTry1.TabIndex = 6;
  136. this.btnTry1.Text = "Locations";
  137. this.btnTry1.UseVisualStyleBackColor = true;
  138. this.btnTry1.Click += new System.EventHandler(this.btnTry1_Click);
  139. //
  140. // btnTry2
  141. //
  142. this.btnTry2.Location = new System.Drawing.Point(95, 6);
  143. this.btnTry2.Name = "btnTry2";
  144. this.btnTry2.Size = new System.Drawing.Size(91, 28);
  145. this.btnTry2.TabIndex = 7;
  146. this.btnTry2.Text = "Variables";
  147. this.btnTry2.UseVisualStyleBackColor = true;
  148. this.btnTry2.Click += new System.EventHandler(this.btnTry2_Click);
  149. //
  150. // btnTry3
  151. //
  152. this.btnTry3.Location = new System.Drawing.Point(192, 6);
  153. this.btnTry3.Name = "btnTry3";
  154. this.btnTry3.Size = new System.Drawing.Size(80, 28);
  155. this.btnTry3.TabIndex = 8;
  156. this.btnTry3.Text = "Items";
  157. this.btnTry3.UseVisualStyleBackColor = true;
  158. this.btnTry3.Click += new System.EventHandler(this.btnTry3_Click);
  159. //
  160. // txtStatus
  161. //
  162. this.txtStatus.BackColor = System.Drawing.SystemColors.Window;
  163. this.txtStatus.Location = new System.Drawing.Point(3, 413);
  164. this.txtStatus.Multiline = true;
  165. this.txtStatus.Name = "txtStatus";
  166. this.txtStatus.ReadOnly = true;
  167. this.txtStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  168. this.txtStatus.Size = new System.Drawing.Size(656, 148);
  169. this.txtStatus.TabIndex = 9;
  170. //
  171. // tabControl
  172. //
  173. this.tabControl.Controls.Add(this.tabCheck);
  174. this.tabControl.Controls.Add(this.tabOptions);
  175. this.tabControl.Controls.Add(this.tabTranslate);
  176. this.tabControl.Location = new System.Drawing.Point(1, 37);
  177. this.tabControl.Name = "tabControl";
  178. this.tabControl.SelectedIndex = 0;
  179. this.tabControl.Size = new System.Drawing.Size(670, 590);
  180. this.tabControl.TabIndex = 12;
  181. //
  182. // tabCheck
  183. //
  184. this.tabCheck.Controls.Add(this.btnCancel);
  185. this.tabCheck.Controls.Add(this.btnTry4);
  186. this.tabCheck.Controls.Add(this.btnReload);
  187. this.tabCheck.Controls.Add(this.btnTry1);
  188. this.tabCheck.Controls.Add(this.txtStatus);
  189. this.tabCheck.Controls.Add(this.txtList3);
  190. this.tabCheck.Controls.Add(this.btnTry2);
  191. this.tabCheck.Controls.Add(this.txtList2);
  192. this.tabCheck.Controls.Add(this.btnTry3);
  193. this.tabCheck.Controls.Add(this.txtList1);
  194. this.tabCheck.Location = new System.Drawing.Point(4, 22);
  195. this.tabCheck.Name = "tabCheck";
  196. this.tabCheck.Padding = new System.Windows.Forms.Padding(3);
  197. this.tabCheck.Size = new System.Drawing.Size(662, 564);
  198. this.tabCheck.TabIndex = 0;
  199. this.tabCheck.Text = "Analysis";
  200. this.tabCheck.UseVisualStyleBackColor = true;
  201. //
  202. // btnCancel
  203. //
  204. this.btnCancel.Location = new System.Drawing.Point(455, 6);
  205. this.btnCancel.Name = "btnCancel";
  206. this.btnCancel.Size = new System.Drawing.Size(77, 28);
  207. this.btnCancel.TabIndex = 14;
  208. this.btnCancel.Text = "Cancel";
  209. this.btnCancel.UseVisualStyleBackColor = true;
  210. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  211. //
  212. // btnTry4
  213. //
  214. this.btnTry4.Location = new System.Drawing.Point(278, 6);
  215. this.btnTry4.Name = "btnTry4";
  216. this.btnTry4.Size = new System.Drawing.Size(75, 28);
  217. this.btnTry4.TabIndex = 13;
  218. this.btnTry4.Text = "Events";
  219. this.btnTry4.UseVisualStyleBackColor = true;
  220. this.btnTry4.Click += new System.EventHandler(this.btnTry4_Click);
  221. //
  222. // btnReload
  223. //
  224. this.btnReload.Location = new System.Drawing.Point(538, 6);
  225. this.btnReload.Name = "btnReload";
  226. this.btnReload.Size = new System.Drawing.Size(77, 28);
  227. this.btnReload.TabIndex = 12;
  228. this.btnReload.Text = "Reload";
  229. this.btnReload.UseVisualStyleBackColor = true;
  230. this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
  231. //
  232. // tabOptions
  233. //
  234. this.tabOptions.Controls.Add(this.chkCurlyParse);
  235. this.tabOptions.Controls.Add(this.chkActions);
  236. this.tabOptions.Controls.Add(this.txtSystemAeroVars);
  237. this.tabOptions.Controls.Add(this.chkAero);
  238. this.tabOptions.Controls.Add(this.lblSystemVariables);
  239. this.tabOptions.Controls.Add(this.lblSortHeader);
  240. this.tabOptions.Controls.Add(this.btnReset);
  241. this.tabOptions.Controls.Add(this.txtSystemVariables);
  242. this.tabOptions.Controls.Add(this.chkSortObjects);
  243. this.tabOptions.Controls.Add(this.chkSortVariables);
  244. this.tabOptions.Controls.Add(this.chkSortLocations);
  245. this.tabOptions.Controls.Add(this.txtVariableNames);
  246. this.tabOptions.Controls.Add(this.chkVariableCalls);
  247. this.tabOptions.Location = new System.Drawing.Point(4, 22);
  248. this.tabOptions.Name = "tabOptions";
  249. this.tabOptions.Padding = new System.Windows.Forms.Padding(3);
  250. this.tabOptions.Size = new System.Drawing.Size(662, 564);
  251. this.tabOptions.TabIndex = 1;
  252. this.tabOptions.Text = "Settings";
  253. this.tabOptions.UseVisualStyleBackColor = true;
  254. //
  255. // chkCurlyParse
  256. //
  257. this.chkCurlyParse.AutoSize = true;
  258. this.chkCurlyParse.Checked = global::Analyser.Properties.Settings.Default.EnableCurlyParsing;
  259. this.chkCurlyParse.CheckState = System.Windows.Forms.CheckState.Checked;
  260. this.chkCurlyParse.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableCurlyParsing", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  261. this.chkCurlyParse.Location = new System.Drawing.Point(250, 290);
  262. this.chkCurlyParse.Name = "chkCurlyParse";
  263. this.chkCurlyParse.Size = new System.Drawing.Size(250, 17);
  264. this.chkCurlyParse.TabIndex = 23;
  265. this.chkCurlyParse.Text = "Content between curly brackets take as a code";
  266. this.chkCurlyParse.UseVisualStyleBackColor = true;
  267. //
  268. // chkActions
  269. //
  270. this.chkActions.AutoSize = true;
  271. this.chkActions.Checked = global::Analyser.Properties.Settings.Default.EnableSortingActions;
  272. this.chkActions.CheckState = System.Windows.Forms.CheckState.Checked;
  273. this.chkActions.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableSortingActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  274. this.chkActions.Location = new System.Drawing.Point(260, 112);
  275. this.chkActions.Name = "chkActions";
  276. this.chkActions.Size = new System.Drawing.Size(61, 17);
  277. this.chkActions.TabIndex = 22;
  278. this.chkActions.Text = "Actions";
  279. this.chkActions.UseVisualStyleBackColor = true;
  280. //
  281. // txtSystemAeroVars
  282. //
  283. this.txtSystemAeroVars.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::Analyser.Properties.Settings.Default, "EnableAero", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  284. this.txtSystemAeroVars.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Analyser.Properties.Settings.Default, "AeroSystemVars", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  285. this.txtSystemAeroVars.Enabled = global::Analyser.Properties.Settings.Default.EnableAero;
  286. this.txtSystemAeroVars.Location = new System.Drawing.Point(423, 42);
  287. this.txtSystemAeroVars.Multiline = true;
  288. this.txtSystemAeroVars.Name = "txtSystemAeroVars";
  289. this.txtSystemAeroVars.ReadOnly = true;
  290. this.txtSystemAeroVars.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  291. this.txtSystemAeroVars.Size = new System.Drawing.Size(157, 190);
  292. this.txtSystemAeroVars.TabIndex = 21;
  293. this.txtSystemAeroVars.Text = global::Analyser.Properties.Settings.Default.AeroSystemVars;
  294. //
  295. // chkAero
  296. //
  297. this.chkAero.AutoSize = true;
  298. this.chkAero.Checked = global::Analyser.Properties.Settings.Default.EnableAero;
  299. this.chkAero.CheckState = System.Windows.Forms.CheckState.Checked;
  300. this.chkAero.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableAero", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  301. this.chkAero.Location = new System.Drawing.Point(423, 13);
  302. this.chkAero.Name = "chkAero";
  303. this.chkAero.Size = new System.Drawing.Size(70, 17);
  304. this.chkAero.TabIndex = 20;
  305. this.chkAero.Text = "AeroQSP";
  306. this.chkAero.UseVisualStyleBackColor = true;
  307. //
  308. // lblSystemVariables
  309. //
  310. this.lblSystemVariables.AutoSize = true;
  311. this.lblSystemVariables.Location = new System.Drawing.Point(0, 255);
  312. this.lblSystemVariables.Name = "lblSystemVariables";
  313. this.lblSystemVariables.Size = new System.Drawing.Size(292, 13);
  314. this.lblSystemVariables.TabIndex = 19;
  315. this.lblSystemVariables.Text = "System variables (exception from the list of unused variables)";
  316. //
  317. // lblSortHeader
  318. //
  319. this.lblSortHeader.AutoSize = true;
  320. this.lblSortHeader.Location = new System.Drawing.Point(245, 14);
  321. this.lblSortHeader.Name = "lblSortHeader";
  322. this.lblSortHeader.Size = new System.Drawing.Size(76, 13);
  323. this.lblSortHeader.TabIndex = 15;
  324. this.lblSortHeader.Text = "Sort by output:";
  325. //
  326. // btnReset
  327. //
  328. this.btnReset.Location = new System.Drawing.Point(13, 519);
  329. this.btnReset.Name = "btnReset";
  330. this.btnReset.Size = new System.Drawing.Size(147, 23);
  331. this.btnReset.TabIndex = 13;
  332. this.btnReset.Text = "Reset settings";
  333. this.btnReset.UseVisualStyleBackColor = true;
  334. this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
  335. //
  336. // txtSystemVariables
  337. //
  338. this.txtSystemVariables.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Analyser.Properties.Settings.Default, "SystemVariables", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  339. this.txtSystemVariables.Location = new System.Drawing.Point(0, 274);
  340. this.txtSystemVariables.Multiline = true;
  341. this.txtSystemVariables.Name = "txtSystemVariables";
  342. this.txtSystemVariables.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  343. this.txtSystemVariables.Size = new System.Drawing.Size(213, 220);
  344. this.txtSystemVariables.TabIndex = 18;
  345. this.txtSystemVariables.Text = global::Analyser.Properties.Settings.Default.SystemVariables;
  346. //
  347. // chkSortObjects
  348. //
  349. this.chkSortObjects.AutoSize = true;
  350. this.chkSortObjects.Checked = global::Analyser.Properties.Settings.Default.EnableSortingObjects;
  351. this.chkSortObjects.CheckState = System.Windows.Forms.CheckState.Checked;
  352. this.chkSortObjects.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableSortingObjects", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  353. this.chkSortObjects.Location = new System.Drawing.Point(260, 88);
  354. this.chkSortObjects.Name = "chkSortObjects";
  355. this.chkSortObjects.Size = new System.Drawing.Size(51, 17);
  356. this.chkSortObjects.TabIndex = 17;
  357. this.chkSortObjects.Text = "Items";
  358. this.chkSortObjects.UseVisualStyleBackColor = true;
  359. //
  360. // chkSortVariables
  361. //
  362. this.chkSortVariables.AutoSize = true;
  363. this.chkSortVariables.Checked = global::Analyser.Properties.Settings.Default.EnableSortingVariables;
  364. this.chkSortVariables.CheckState = System.Windows.Forms.CheckState.Checked;
  365. this.chkSortVariables.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableSortingVariables", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  366. this.chkSortVariables.Location = new System.Drawing.Point(260, 65);
  367. this.chkSortVariables.Name = "chkSortVariables";
  368. this.chkSortVariables.Size = new System.Drawing.Size(69, 17);
  369. this.chkSortVariables.TabIndex = 16;
  370. this.chkSortVariables.Text = "Variables";
  371. this.chkSortVariables.UseVisualStyleBackColor = true;
  372. //
  373. // chkSortLocations
  374. //
  375. this.chkSortLocations.AutoSize = true;
  376. this.chkSortLocations.Checked = global::Analyser.Properties.Settings.Default.EnableSortingLocations;
  377. this.chkSortLocations.CheckState = System.Windows.Forms.CheckState.Checked;
  378. this.chkSortLocations.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableSortingLocations", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  379. this.chkSortLocations.Location = new System.Drawing.Point(260, 42);
  380. this.chkSortLocations.Name = "chkSortLocations";
  381. this.chkSortLocations.Size = new System.Drawing.Size(72, 17);
  382. this.chkSortLocations.TabIndex = 14;
  383. this.chkSortLocations.Text = "Locations";
  384. this.chkSortLocations.UseVisualStyleBackColor = true;
  385. //
  386. // txtVariableNames
  387. //
  388. this.txtVariableNames.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Analyser.Properties.Settings.Default, "VariableNames", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  389. this.txtVariableNames.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::Analyser.Properties.Settings.Default, "EnableVariableCalls", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  390. this.txtVariableNames.Enabled = global::Analyser.Properties.Settings.Default.EnableVariableCalls;
  391. this.txtVariableNames.Location = new System.Drawing.Point(0, 42);
  392. this.txtVariableNames.Multiline = true;
  393. this.txtVariableNames.Name = "txtVariableNames";
  394. this.txtVariableNames.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  395. this.txtVariableNames.Size = new System.Drawing.Size(213, 190);
  396. this.txtVariableNames.TabIndex = 12;
  397. this.txtVariableNames.Text = global::Analyser.Properties.Settings.Default.VariableNames;
  398. //
  399. // chkVariableCalls
  400. //
  401. this.chkVariableCalls.AutoSize = true;
  402. this.chkVariableCalls.Checked = global::Analyser.Properties.Settings.Default.EnableVariableCalls;
  403. this.chkVariableCalls.CheckState = System.Windows.Forms.CheckState.Checked;
  404. this.chkVariableCalls.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "EnableVariableCalls", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  405. this.chkVariableCalls.Location = new System.Drawing.Point(3, 6);
  406. this.chkVariableCalls.Name = "chkVariableCalls";
  407. this.chkVariableCalls.Size = new System.Drawing.Size(166, 30);
  408. this.chkVariableCalls.TabIndex = 11;
  409. this.chkVariableCalls.Text = "Consider variable assignment \r\nby link to location:";
  410. this.chkVariableCalls.UseVisualStyleBackColor = true;
  411. //
  412. // tabTranslate
  413. //
  414. this.tabTranslate.Controls.Add(this.btnBeautify);
  415. this.tabTranslate.Controls.Add(this.grpTranslateCsv);
  416. this.tabTranslate.Location = new System.Drawing.Point(4, 22);
  417. this.tabTranslate.Name = "tabTranslate";
  418. this.tabTranslate.Size = new System.Drawing.Size(662, 564);
  419. this.tabTranslate.TabIndex = 2;
  420. this.tabTranslate.Text = "Conversion";
  421. this.tabTranslate.UseVisualStyleBackColor = true;
  422. //
  423. // btnBeautify
  424. //
  425. this.btnBeautify.Location = new System.Drawing.Point(56, 279);
  426. this.btnBeautify.Name = "btnBeautify";
  427. this.btnBeautify.Size = new System.Drawing.Size(129, 23);
  428. this.btnBeautify.TabIndex = 9;
  429. this.btnBeautify.Text = "Format the code";
  430. this.btnBeautify.UseVisualStyleBackColor = true;
  431. this.btnBeautify.Click += new System.EventHandler(this.btnBeautify_Click);
  432. //
  433. // grpTranslateCsv
  434. //
  435. this.grpTranslateCsv.Controls.Add(this.grpCsvDelimiter);
  436. this.grpTranslateCsv.Controls.Add(this.btnTranslateFromCsv);
  437. this.grpTranslateCsv.Controls.Add(this.chkIgnoreEmptyTranslationsCsv);
  438. this.grpTranslateCsv.Controls.Add(this.lblSuffixCsv);
  439. this.grpTranslateCsv.Controls.Add(this.btnExportCsv);
  440. this.grpTranslateCsv.Controls.Add(this.edtSuffixCsv);
  441. this.grpTranslateCsv.Location = new System.Drawing.Point(7, 3);
  442. this.grpTranslateCsv.Name = "grpTranslateCsv";
  443. this.grpTranslateCsv.Size = new System.Drawing.Size(642, 168);
  444. this.grpTranslateCsv.TabIndex = 8;
  445. this.grpTranslateCsv.TabStop = false;
  446. this.grpTranslateCsv.Text = "Conversion";
  447. //
  448. // grpCsvDelimiter
  449. //
  450. this.grpCsvDelimiter.Controls.Add(this.radComma);
  451. this.grpCsvDelimiter.Controls.Add(this.radSemicolon);
  452. this.grpCsvDelimiter.Location = new System.Drawing.Point(24, 29);
  453. this.grpCsvDelimiter.Name = "grpCsvDelimiter";
  454. this.grpCsvDelimiter.Size = new System.Drawing.Size(138, 72);
  455. this.grpCsvDelimiter.TabIndex = 3;
  456. this.grpCsvDelimiter.TabStop = false;
  457. this.grpCsvDelimiter.Text = "Split CSV";
  458. //
  459. // radComma
  460. //
  461. this.radComma.AutoSize = true;
  462. this.radComma.Checked = true;
  463. this.radComma.Location = new System.Drawing.Point(6, 19);
  464. this.radComma.Name = "radComma";
  465. this.radComma.Size = new System.Drawing.Size(72, 17);
  466. this.radComma.TabIndex = 1;
  467. this.radComma.TabStop = true;
  468. this.radComma.Text = "Comma - ,";
  469. this.radComma.UseVisualStyleBackColor = true;
  470. //
  471. // radSemicolon
  472. //
  473. this.radSemicolon.AutoSize = true;
  474. this.radSemicolon.Location = new System.Drawing.Point(6, 42);
  475. this.radSemicolon.Name = "radSemicolon";
  476. this.radSemicolon.Size = new System.Drawing.Size(86, 17);
  477. this.radSemicolon.TabIndex = 2;
  478. this.radSemicolon.Text = "Semicolon - ;";
  479. this.radSemicolon.UseVisualStyleBackColor = true;
  480. //
  481. // btnTranslateFromCsv
  482. //
  483. this.btnTranslateFromCsv.Location = new System.Drawing.Point(303, 126);
  484. this.btnTranslateFromCsv.Name = "btnTranslateFromCsv";
  485. this.btnTranslateFromCsv.Size = new System.Drawing.Size(198, 23);
  486. this.btnTranslateFromCsv.TabIndex = 4;
  487. this.btnTranslateFromCsv.Text = "Make conversion, use CSV";
  488. this.btnTranslateFromCsv.UseVisualStyleBackColor = true;
  489. this.btnTranslateFromCsv.Click += new System.EventHandler(this.btnTranslateFromCsv_Click);
  490. //
  491. // chkIgnoreEmptyTranslationsCsv
  492. //
  493. this.chkIgnoreEmptyTranslationsCsv.AutoSize = true;
  494. this.chkIgnoreEmptyTranslationsCsv.Checked = global::Analyser.Properties.Settings.Default.IgnoreEmptyTranslationsCsv;
  495. this.chkIgnoreEmptyTranslationsCsv.CheckState = System.Windows.Forms.CheckState.Checked;
  496. this.chkIgnoreEmptyTranslationsCsv.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Analyser.Properties.Settings.Default, "IgnoreEmptyTranslationsCsv", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  497. this.chkIgnoreEmptyTranslationsCsv.Location = new System.Drawing.Point(235, 55);
  498. this.chkIgnoreEmptyTranslationsCsv.Name = "chkIgnoreEmptyTranslationsCsv";
  499. this.chkIgnoreEmptyTranslationsCsv.Size = new System.Drawing.Size(295, 30);
  500. this.chkIgnoreEmptyTranslationsCsv.TabIndex = 7;
  501. this.chkIgnoreEmptyTranslationsCsv.Text = "Ignore unconverted strings\r\n(for \"empty\" value of conversion will be used origina" +
  502. "l text)";
  503. this.chkIgnoreEmptyTranslationsCsv.UseVisualStyleBackColor = true;
  504. //
  505. // lblSuffixCsv
  506. //
  507. this.lblSuffixCsv.AutoSize = true;
  508. this.lblSuffixCsv.Location = new System.Drawing.Point(232, 32);
  509. this.lblSuffixCsv.Name = "lblSuffixCsv";
  510. this.lblSuffixCsv.Size = new System.Drawing.Size(142, 13);
  511. this.lblSuffixCsv.TabIndex = 6;
  512. this.lblSuffixCsv.Text = "Extension for conversion file:";
  513. //
  514. // btnExportCsv
  515. //
  516. this.btnExportCsv.Location = new System.Drawing.Point(41, 126);
  517. this.btnExportCsv.Name = "btnExportCsv";
  518. this.btnExportCsv.Size = new System.Drawing.Size(97, 23);
  519. this.btnExportCsv.TabIndex = 0;
  520. this.btnExportCsv.Text = "Export to CSV";
  521. this.btnExportCsv.UseVisualStyleBackColor = true;
  522. this.btnExportCsv.Click += new System.EventHandler(this.btnExportCsv_Click);
  523. //
  524. // edtSuffixCsv
  525. //
  526. this.edtSuffixCsv.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Analyser.Properties.Settings.Default, "CsvTranslationSuffix", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  527. this.edtSuffixCsv.Location = new System.Drawing.Point(401, 29);
  528. this.edtSuffixCsv.Name = "edtSuffixCsv";
  529. this.edtSuffixCsv.Size = new System.Drawing.Size(100, 20);
  530. this.edtSuffixCsv.TabIndex = 5;
  531. this.edtSuffixCsv.Text = global::Analyser.Properties.Settings.Default.CsvTranslationSuffix;
  532. //
  533. // edtFile
  534. //
  535. this.edtFile.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Analyser.Properties.Settings.Default, "filepath", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
  536. this.edtFile.Location = new System.Drawing.Point(409, 10);
  537. this.edtFile.Name = "edtFile";
  538. this.edtFile.Size = new System.Drawing.Size(176, 20);
  539. this.edtFile.TabIndex = 1;
  540. this.edtFile.Text = global::Analyser.Properties.Settings.Default.filepath;
  541. //
  542. // progressBar1
  543. //
  544. this.progressBar1.Location = new System.Drawing.Point(5, 626);
  545. this.progressBar1.Name = "progressBar1";
  546. this.progressBar1.Size = new System.Drawing.Size(659, 23);
  547. this.progressBar1.TabIndex = 13;
  548. //
  549. // MainForm
  550. //
  551. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  552. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  553. this.ClientSize = new System.Drawing.Size(668, 653);
  554. this.Controls.Add(this.progressBar1);
  555. this.Controls.Add(this.tabControl);
  556. this.Controls.Add(this.btnBrowse);
  557. this.Controls.Add(this.edtFile);
  558. this.Controls.Add(this.label1);
  559. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  560. this.MaximizeBox = false;
  561. this.Name = "MainForm";
  562. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  563. this.Text = "QSP Code Analyzer";
  564. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
  565. this.Load += new System.EventHandler(this.MainForm_Load);
  566. this.Shown += new System.EventHandler(this.MainForm_Shown);
  567. this.tabControl.ResumeLayout(false);
  568. this.tabCheck.ResumeLayout(false);
  569. this.tabCheck.PerformLayout();
  570. this.tabOptions.ResumeLayout(false);
  571. this.tabOptions.PerformLayout();
  572. this.tabTranslate.ResumeLayout(false);
  573. this.grpTranslateCsv.ResumeLayout(false);
  574. this.grpTranslateCsv.PerformLayout();
  575. this.grpCsvDelimiter.ResumeLayout(false);
  576. this.grpCsvDelimiter.PerformLayout();
  577. this.ResumeLayout(false);
  578. this.PerformLayout();
  579. }
  580. #endregion
  581. private System.Windows.Forms.Label label1;
  582. private System.Windows.Forms.TextBox edtFile;
  583. private System.Windows.Forms.OpenFileDialog dlgOpen;
  584. private System.Windows.Forms.Button btnBrowse;
  585. private System.Windows.Forms.TextBox txtList1;
  586. private System.Windows.Forms.TextBox txtList2;
  587. private System.Windows.Forms.TextBox txtList3;
  588. private System.Windows.Forms.Button btnTry1;
  589. private System.Windows.Forms.Button btnTry2;
  590. private System.Windows.Forms.Button btnTry3;
  591. private System.Windows.Forms.TextBox txtStatus;
  592. private System.Windows.Forms.TabControl tabControl;
  593. private System.Windows.Forms.TabPage tabCheck;
  594. private System.Windows.Forms.TabPage tabOptions;
  595. private System.Windows.Forms.CheckBox chkVariableCalls;
  596. private System.Windows.Forms.TextBox txtVariableNames;
  597. private System.Windows.Forms.Button btnReset;
  598. private System.Windows.Forms.Label lblSortHeader;
  599. private System.Windows.Forms.CheckBox chkSortLocations;
  600. private System.Windows.Forms.CheckBox chkSortObjects;
  601. private System.Windows.Forms.CheckBox chkSortVariables;
  602. private System.Windows.Forms.Button btnReload;
  603. private System.Windows.Forms.Label lblSystemVariables;
  604. private System.Windows.Forms.TextBox txtSystemVariables;
  605. private System.Windows.Forms.CheckBox chkAero;
  606. private System.Windows.Forms.TextBox txtSystemAeroVars;
  607. private System.Windows.Forms.Button btnTry4;
  608. private System.Windows.Forms.CheckBox chkActions;
  609. private System.Windows.Forms.TabPage tabTranslate;
  610. private System.Windows.Forms.GroupBox grpCsvDelimiter;
  611. private System.Windows.Forms.RadioButton radComma;
  612. private System.Windows.Forms.RadioButton radSemicolon;
  613. private System.Windows.Forms.Button btnExportCsv;
  614. private System.Windows.Forms.TextBox edtSuffixCsv;
  615. private System.Windows.Forms.Button btnTranslateFromCsv;
  616. private System.Windows.Forms.Label lblSuffixCsv;
  617. private System.Windows.Forms.CheckBox chkIgnoreEmptyTranslationsCsv;
  618. private System.Windows.Forms.CheckBox chkCurlyParse;
  619. private System.Windows.Forms.GroupBox grpTranslateCsv;
  620. private System.Windows.Forms.Button btnBeautify;
  621. private System.Windows.Forms.ProgressBar progressBar1;
  622. private System.Windows.Forms.Button btnCancel;
  623. }
  624. }