ProjectOptionsUnit.dfm 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. object ProjectOptionsForm: TProjectOptionsForm
  2. Left = 587
  3. Top = 357
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Project Options'
  7. ClientHeight = 289
  8. ClientWidth = 361
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. OldCreateOrder = False
  16. Position = poScreenCenter
  17. OnDestroy = FormDestroy
  18. OnShow = FormShow
  19. DesignSize = (
  20. 361
  21. 289)
  22. PixelsPerInch = 96
  23. TextHeight = 13
  24. object OKButton: TButton
  25. Left = 184
  26. Top = 256
  27. Width = 81
  28. Height = 25
  29. Anchors = [akRight, akBottom]
  30. Caption = '&OK'
  31. Default = True
  32. ModalResult = 1
  33. TabOrder = 0
  34. end
  35. object CancelButton: TButton
  36. Left = 272
  37. Top = 256
  38. Width = 81
  39. Height = 25
  40. Anchors = [akRight, akBottom]
  41. Cancel = True
  42. Caption = '&Cancel'
  43. ModalResult = 2
  44. TabOrder = 1
  45. end
  46. object PageController: TPageControl
  47. Left = 8
  48. Top = 8
  49. Width = 345
  50. Height = 241
  51. ActivePage = GeneralSheet
  52. Anchors = [akLeft, akTop, akRight, akBottom]
  53. TabOrder = 2
  54. object GeneralSheet: TTabSheet
  55. Caption = 'Ge&neral'
  56. DesignSize = (
  57. 337
  58. 213)
  59. object TargetGroupBox: TGroupBox
  60. Left = 16
  61. Top = 4
  62. Width = 305
  63. Height = 197
  64. Anchors = [akLeft, akTop, akRight]
  65. Caption = '&Target'
  66. TabOrder = 0
  67. DesignSize = (
  68. 305
  69. 197)
  70. object PackVarEditLabel: TLabel
  71. Left = 50
  72. Top = 116
  73. Width = 109
  74. Height = 13
  75. Caption = 'On-calc &variable name:'
  76. Enabled = False
  77. FocusControl = PackVarEdit
  78. end
  79. object DataVarEditLabel: TLabel
  80. Left = 50
  81. Top = 60
  82. Width = 109
  83. Height = 13
  84. Caption = 'On-calc var&iable name:'
  85. Enabled = False
  86. FocusControl = DataVarEdit
  87. end
  88. object DataVarCopyLabel: TLabel
  89. Left = 50
  90. Top = 80
  91. Width = 60
  92. Height = 13
  93. Caption = 'Create copy:'
  94. Enabled = False
  95. end
  96. object ExecutableRadioButton: TRadioButton
  97. Left = 16
  98. Top = 20
  99. Width = 137
  100. Height = 17
  101. Caption = '&Regular Program (*.??z)'
  102. Checked = True
  103. TabOrder = 0
  104. TabStop = True
  105. OnClick = TargetRadioButtonClick
  106. end
  107. object ArchiveRadioButton: TRadioButton
  108. Left = 16
  109. Top = 172
  110. Width = 129
  111. Height = 17
  112. Caption = '&Function Archive (*.a)'
  113. TabOrder = 8
  114. OnClick = TargetRadioButtonClick
  115. end
  116. object PackCheckBox: TCheckBox
  117. Left = 32
  118. Top = 96
  119. Width = 145
  120. Height = 17
  121. Caption = 'Compre&ss program (*.??y)'
  122. TabOrder = 4
  123. OnClick = PackCheckBoxClick
  124. end
  125. object PackVarEdit: TEdit
  126. Left = 168
  127. Top = 112
  128. Width = 121
  129. Height = 21
  130. Anchors = [akLeft, akTop, akRight]
  131. Enabled = False
  132. TabOrder = 5
  133. OnChange = VarEditChange
  134. end
  135. object DataVarCheckBox: TCheckBox
  136. Left = 32
  137. Top = 40
  138. Width = 185
  139. Height = 17
  140. Caption = 'External &data variable (*-data.??y)'
  141. TabOrder = 1
  142. OnClick = DataVarCheckBoxClick
  143. end
  144. object DataVarEdit: TEdit
  145. Left = 168
  146. Top = 56
  147. Width = 121
  148. Height = 21
  149. Anchors = [akLeft, akTop, akRight]
  150. Enabled = False
  151. TabOrder = 2
  152. OnChange = VarEditChange
  153. end
  154. object DataVarCopyPanel: TPanel
  155. Left = 112
  156. Top = 81
  157. Width = 178
  158. Height = 15
  159. BevelOuter = bvNone
  160. Enabled = False
  161. FullRepaint = False
  162. TabOrder = 3
  163. object DataVarCopyNeverRadioButton: TRadioButton
  164. Left = 2
  165. Top = 0
  166. Width = 46
  167. Height = 15
  168. Caption = 'n&ever'
  169. Enabled = False
  170. TabOrder = 0
  171. end
  172. object DataVarCopyIfArchivedRadioButton: TRadioButton
  173. Left = 53
  174. Top = 0
  175. Width = 68
  176. Height = 15
  177. Caption = 'if arc&hived'
  178. Checked = True
  179. Enabled = False
  180. TabOrder = 1
  181. TabStop = True
  182. end
  183. object DataVarCopyAlwaysRadioButton: TRadioButton
  184. Left = 127
  185. Top = 0
  186. Width = 51
  187. Height = 15
  188. Caption = '&always'
  189. Enabled = False
  190. TabOrder = 2
  191. end
  192. end
  193. object FargoRadioButton: TRadioButton
  194. Left = 16
  195. Top = 154
  196. Width = 201
  197. Height = 17
  198. Caption = 'Far&go Program (*.92p) (experimental)'
  199. TabOrder = 7
  200. Visible = False
  201. OnClick = TargetRadioButtonClick
  202. end
  203. object FlashOSRadioButton: TRadioButton
  204. Left = 16
  205. Top = 136
  206. Width = 209
  207. Height = 17
  208. Caption = 'Flash Operating S&ystem (experimental)'
  209. TabOrder = 6
  210. Visible = False
  211. OnClick = TargetRadioButtonClick
  212. end
  213. end
  214. end
  215. object CompilationSheet: TTabSheet
  216. Caption = 'Co&mpilation'
  217. ImageIndex = 1
  218. DesignSize = (
  219. 337
  220. 213)
  221. object DebugInfoCheckBox: TCheckBox
  222. Left = 16
  223. Top = 149
  224. Width = 153
  225. Height = 17
  226. Caption = 'Generate &debug information'
  227. TabOrder = 0
  228. end
  229. object SwitchesGroupBox: TGroupBox
  230. Left = 16
  231. Top = 16
  232. Width = 305
  233. Height = 121
  234. Anchors = [akLeft, akTop, akRight]
  235. Caption = 'S&witches'
  236. TabOrder = 1
  237. DesignSize = (
  238. 305
  239. 121)
  240. object GCCSwitchesEditLabel: TLabel
  241. Left = 16
  242. Top = 28
  243. Width = 71
  244. Height = 13
  245. Caption = '&GCC Switches:'
  246. FocusControl = GCCSwitchesEdit
  247. end
  248. object AsSwitchesEditLabel: TLabel
  249. Left = 16
  250. Top = 57
  251. Width = 61
  252. Height = 13
  253. Caption = 'A&s Switches:'
  254. FocusControl = AsSwitchesEdit
  255. end
  256. object AsmSwitchesEditLabel: TLabel
  257. Left = 16
  258. Top = 86
  259. Width = 74
  260. Height = 13
  261. Caption = '&A68k Switches:'
  262. FocusControl = AsmSwitchesEdit
  263. end
  264. object GCCSwitchesEdit: TEdit
  265. Left = 104
  266. Top = 24
  267. Width = 185
  268. Height = 21
  269. Anchors = [akLeft, akTop, akRight]
  270. TabOrder = 0
  271. end
  272. object AsSwitchesEdit: TEdit
  273. Left = 104
  274. Top = 53
  275. Width = 185
  276. Height = 21
  277. Anchors = [akLeft, akTop, akRight]
  278. TabOrder = 1
  279. end
  280. object AsmSwitchesEdit: TEdit
  281. Left = 104
  282. Top = 82
  283. Width = 185
  284. Height = 21
  285. Anchors = [akLeft, akTop, akRight]
  286. TabOrder = 2
  287. end
  288. end
  289. object ProgramOptionsButton: TButton
  290. Left = 216
  291. Top = 176
  292. Width = 105
  293. Height = 25
  294. Anchors = [akRight, akBottom]
  295. Caption = 'P&rogram Options...'
  296. TabOrder = 2
  297. OnClick = ProgramOptionsButtonClick
  298. end
  299. end
  300. object LinkingSheet: TTabSheet
  301. Caption = '&Linking'
  302. ImageIndex = 2
  303. DesignSize = (
  304. 337
  305. 213)
  306. object StdLibCheckBox: TCheckBox
  307. Left = 16
  308. Top = 151
  309. Width = 193
  310. Height = 17
  311. Caption = 'Lin&k against standard library (tigcc.a)'
  312. Checked = True
  313. State = cbChecked
  314. TabOrder = 1
  315. end
  316. object OptimizationGroupBox: TGroupBox
  317. Left = 16
  318. Top = 10
  319. Width = 305
  320. Height = 133
  321. Anchors = [akLeft, akTop, akRight]
  322. Caption = '&Optimization'
  323. TabOrder = 0
  324. object OptimizeNOPsCheckBox: TCheckBox
  325. Left = 13
  326. Top = 20
  327. Width = 49
  328. Height = 17
  329. Caption = 'NOP&s'
  330. Checked = True
  331. State = cbChecked
  332. TabOrder = 0
  333. end
  334. object OptimizeReturnsCheckBox: TCheckBox
  335. Left = 13
  336. Top = 40
  337. Width = 113
  338. Height = 17
  339. Caption = '&Return Sequences'
  340. Checked = True
  341. State = cbChecked
  342. TabOrder = 1
  343. end
  344. object OptimizeBranchesCheckBox: TCheckBox
  345. Left = 13
  346. Top = 60
  347. Width = 65
  348. Height = 17
  349. Caption = '&Branches'
  350. Checked = True
  351. State = cbChecked
  352. TabOrder = 2
  353. end
  354. object OptimizeMovesCheckBox: TCheckBox
  355. Left = 133
  356. Top = 20
  357. Width = 161
  358. Height = 17
  359. Caption = 'Move/Load/Pus&h Instructions'
  360. Checked = True
  361. State = cbChecked
  362. TabOrder = 3
  363. end
  364. object OptimizeTestsCheckBox: TCheckBox
  365. Left = 133
  366. Top = 40
  367. Width = 145
  368. Height = 17
  369. Caption = '&Test/Compare Instructions'
  370. Checked = True
  371. State = cbChecked
  372. TabOrder = 4
  373. end
  374. object OptimizeCalculationsCheckBox: TCheckBox
  375. Left = 133
  376. Top = 60
  377. Width = 129
  378. Height = 17
  379. Caption = 'C&alculation Instructions'
  380. Checked = True
  381. State = cbChecked
  382. TabOrder = 5
  383. end
  384. object RemoveUnusedSectionsCheckBox: TCheckBox
  385. Left = 21
  386. Top = 86
  387. Width = 145
  388. Height = 17
  389. Caption = 'Remove &unused sections'
  390. Checked = True
  391. State = cbChecked
  392. TabOrder = 6
  393. end
  394. object CutUnusedRangesCheckBox: TCheckBox
  395. Left = 173
  396. Top = 86
  397. Width = 113
  398. Height = 17
  399. Caption = 'Cut unuse&d ranges'
  400. Checked = True
  401. State = cbChecked
  402. TabOrder = 8
  403. end
  404. object ReorderSectionsCheckBox: TCheckBox
  405. Left = 21
  406. Top = 106
  407. Width = 105
  408. Height = 17
  409. Caption = 'R&eorder sections'
  410. Checked = True
  411. State = cbChecked
  412. TabOrder = 7
  413. end
  414. object MergeConstantsCheckBox: TCheckBox
  415. Left = 173
  416. Top = 106
  417. Width = 105
  418. Height = 17
  419. Caption = 'Mer&ge Constants'
  420. Checked = True
  421. State = cbChecked
  422. TabOrder = 9
  423. end
  424. end
  425. object OutputBinCheckBox: TCheckBox
  426. Left = 16
  427. Top = 185
  428. Width = 273
  429. Height = 17
  430. Caption = 'Output &variable image without wrapper (binary mode)'
  431. TabOrder = 3
  432. end
  433. object InitBSSCheckBox: TCheckBox
  434. Left = 16
  435. Top = 168
  436. Width = 121
  437. Height = 17
  438. Caption = '&Initialize BSS section'
  439. Checked = True
  440. State = cbChecked
  441. TabOrder = 2
  442. end
  443. end
  444. object PostBuildSheet: TTabSheet
  445. Caption = '&Post-Build'
  446. ImageIndex = 3
  447. DesignSize = (
  448. 337
  449. 213)
  450. object ProcessFileGroupBox: TGroupBox
  451. Left = 16
  452. Top = 16
  453. Width = 305
  454. Height = 73
  455. Anchors = [akLeft, akTop, akRight]
  456. Caption = 'Po&st-Build Processing'
  457. TabOrder = 0
  458. DesignSize = (
  459. 305
  460. 73)
  461. object ProcessFileEditLabel: TLabel
  462. Left = 16
  463. Top = 25
  464. Width = 83
  465. Height = 13
  466. Caption = 'Call &after building:'
  467. FocusControl = ProcessFileEdit
  468. end
  469. object ProcessFileEdit: TEdit
  470. Left = 16
  471. Top = 42
  472. Width = 273
  473. Height = 21
  474. Anchors = [akLeft, akTop, akRight]
  475. TabOrder = 0
  476. end
  477. object BrowseButton: TButton
  478. Left = 216
  479. Top = 17
  480. Width = 73
  481. Height = 23
  482. Anchors = [akTop, akRight]
  483. Caption = '&Browse...'
  484. TabOrder = 1
  485. OnClick = BrowseButtonClick
  486. end
  487. end
  488. object ExecutionGroupBox: TGroupBox
  489. Left = 16
  490. Top = 104
  491. Width = 305
  492. Height = 57
  493. Anchors = [akLeft, akTop, akRight]
  494. Caption = '&Execution'
  495. TabOrder = 1
  496. DesignSize = (
  497. 305
  498. 57)
  499. object CommandLineEditLabel: TLabel
  500. Left = 16
  501. Top = 24
  502. Width = 56
  503. Height = 13
  504. Caption = 'Pa&rameters:'
  505. FocusControl = CommandLineEdit
  506. end
  507. object CommandLineEdit: TEdit
  508. Left = 80
  509. Top = 20
  510. Width = 209
  511. Height = 21
  512. Anchors = [akLeft, akTop, akRight]
  513. TabOrder = 0
  514. end
  515. end
  516. end
  517. end
  518. object BrowseDialog: TOpenDialog
  519. Filter =
  520. 'Executables (*.exe;*.com)|*.exe;*.com|Batch Files (*.bat)|*.bat|' +
  521. 'All Executables (*.exe;*.com;*.bat)|*.exe;*.com;*.bat|All Files ' +
  522. '(*.*)|*.*'
  523. FilterIndex = 3
  524. Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  525. Title = 'Browse'
  526. end
  527. end