IDE.OptionsForm.dfm 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. object OptionsForm: TOptionsForm
  2. Left = 207
  3. Top = 173
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Options'
  7. ClientHeight = 424
  8. ClientWidth = 589
  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. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. OnShow = FormShow
  18. DesignSize = (
  19. 589
  20. 424)
  21. TextHeight = 13
  22. object GroupBox1: TGroupBox
  23. Left = 8
  24. Top = 8
  25. Width = 281
  26. Height = 314
  27. Anchors = [akLeft, akTop, akBottom]
  28. Caption = ' Miscellaneous '
  29. TabOrder = 0
  30. object StartupCheck: TCheckBox
  31. Left = 8
  32. Top = 16
  33. Width = 265
  34. Height = 17
  35. Caption = 'Show &Welcome dialog at startup'
  36. TabOrder = 0
  37. end
  38. object WizardCheck: TCheckBox
  39. Left = 8
  40. Top = 36
  41. Width = 265
  42. Height = 17
  43. Caption = 'Use the Inno Setup &Script Wizard'
  44. TabOrder = 1
  45. end
  46. object AutosaveCheck: TCheckBox
  47. Left = 8
  48. Top = 96
  49. Width = 265
  50. Height = 17
  51. Caption = 'Automatically sa&ve before compiling'
  52. TabOrder = 4
  53. end
  54. object BackupCheck: TCheckBox
  55. Left = 8
  56. Top = 116
  57. Width = 265
  58. Height = 17
  59. Caption = 'Create &backups when saving'
  60. TabOrder = 5
  61. end
  62. object UndoAfterSaveCheck: TCheckBox
  63. Left = 8
  64. Top = 136
  65. Width = 265
  66. Height = 17
  67. Caption = 'Allow &Undo after save'
  68. TabOrder = 6
  69. end
  70. object FullPathCheck: TCheckBox
  71. Left = 8
  72. Top = 194
  73. Width = 265
  74. Height = 17
  75. Caption = 'Display &full path in title bar'
  76. TabOrder = 9
  77. end
  78. object PauseOnDebuggerExceptionsCheck: TCheckBox
  79. Left = 8
  80. Top = 214
  81. Width = 265
  82. Height = 17
  83. Caption = '&Pause on exceptions'
  84. TabOrder = 10
  85. end
  86. object RunAsDifferentUserCheck: TCheckBox
  87. Left = 8
  88. Top = 234
  89. Width = 265
  90. Height = 17
  91. Caption = 'Always &launch Setup/Uninstall as administrator'
  92. TabOrder = 11
  93. end
  94. object ColorizeCompilerOutputCheck: TCheckBox
  95. Left = 8
  96. Top = 254
  97. Width = 265
  98. Height = 17
  99. Caption = 'Colori&ze "Compiler Output" view'
  100. TabOrder = 12
  101. end
  102. object OpenIncludedFilesCheck: TCheckBox
  103. Left = 8
  104. Top = 76
  105. Width = 265
  106. Height = 17
  107. Caption = 'Automatically open #include files'
  108. TabOrder = 3
  109. end
  110. object ShowPreprocessorOutputCheck: TCheckBox
  111. Left = 8
  112. Top = 56
  113. Width = 265
  114. Height = 17
  115. Caption = 'Automatically show preprocessor output'
  116. TabOrder = 2
  117. end
  118. object Label3: TNewStaticText
  119. Left = 8
  120. Top = 281
  121. Width = 56
  122. Height = 14
  123. Caption = 'Menu &keys:'
  124. FocusControl = KeyMappingComboBox
  125. TabOrder = 13
  126. end
  127. object KeyMappingComboBox: TComboBox
  128. Left = 72
  129. Top = 277
  130. Width = 201
  131. Height = 21
  132. Style = csDropDownList
  133. TabOrder = 14
  134. end
  135. object AutoreloadCheck: TCheckBox
  136. Left = 8
  137. Top = 156
  138. Width = 265
  139. Height = 17
  140. Caption = 'Automatically reload files'
  141. TabOrder = 7
  142. end
  143. object UndoAfterReloadCheck: TCheckBox
  144. Left = 8
  145. Top = 176
  146. Width = 265
  147. Height = 17
  148. Caption = 'Allow Undo after reload'
  149. TabOrder = 8
  150. end
  151. end
  152. object GroupBox2: TGroupBox
  153. Left = 8
  154. Top = 323
  155. Width = 281
  156. Height = 57
  157. Anchors = [akLeft, akBottom]
  158. Caption = ' File Associations '
  159. TabOrder = 1
  160. DesignSize = (
  161. 281
  162. 57)
  163. object AssocButton: TButton
  164. Left = 40
  165. Top = 20
  166. Width = 201
  167. Height = 23
  168. Anchors = [akLeft, akBottom]
  169. Caption = '&Associate .iss files with this compiler'
  170. TabOrder = 0
  171. OnClick = AssocButtonClick
  172. end
  173. end
  174. object GroupBox3: TGroupBox
  175. Left = 300
  176. Top = 8
  177. Width = 281
  178. Height = 372
  179. Anchors = [akLeft, akTop, akBottom]
  180. Caption = ' Editor '
  181. TabOrder = 2
  182. object AutoAutoCompleteCheck: TCheckBox
  183. Left = 8
  184. Top = 16
  185. Width = 265
  186. Height = 17
  187. Caption = 'Invoke autoco&mplete automatically'
  188. TabOrder = 0
  189. end
  190. object UseSynHighCheck: TCheckBox
  191. Left = 8
  192. Top = 36
  193. Width = 265
  194. Height = 17
  195. Caption = 'Use syntax &highlighting'
  196. TabOrder = 1
  197. end
  198. object UnderlineErrorsCheck: TCheckBox
  199. Left = 8
  200. Top = 56
  201. Width = 265
  202. Height = 17
  203. Caption = 'U&nderline syntax errors'
  204. TabOrder = 2
  205. end
  206. object CursorPastEOLCheck: TCheckBox
  207. Left = 8
  208. Top = 76
  209. Width = 265
  210. Height = 17
  211. Caption = 'Allow cursor to move beyond &end of lines'
  212. TabOrder = 3
  213. end
  214. object UseFoldingCheck: TCheckBox
  215. Left = 8
  216. Top = 96
  217. Width = 265
  218. Height = 17
  219. Caption = 'Enable section f&olding'
  220. TabOrder = 4
  221. end
  222. object UseTabCharacterCheck: TCheckBox
  223. Left = 8
  224. Top = 116
  225. Width = 265
  226. Height = 17
  227. Caption = 'Use tab cha&racter'
  228. TabOrder = 5
  229. end
  230. object AutoIndentCheck: TCheckBox
  231. Left = 8
  232. Top = 136
  233. Width = 265
  234. Height = 17
  235. Caption = 'Auto &indent mode'
  236. TabOrder = 6
  237. end
  238. object IndentationGuidesCheck: TCheckBox
  239. Left = 8
  240. Top = 156
  241. Width = 265
  242. Height = 17
  243. Caption = 'Show indentation &guides'
  244. TabOrder = 7
  245. end
  246. object Label1: TNewStaticText
  247. Left = 8
  248. Top = 306
  249. Width = 25
  250. Height = 14
  251. Caption = 'Font:'
  252. TabOrder = 15
  253. end
  254. object FontPanel: TPanel
  255. Left = 72
  256. Top = 297
  257. Width = 121
  258. Height = 32
  259. BevelKind = bkFlat
  260. BevelOuter = bvNone
  261. Caption = 'AaBbXxZz'
  262. TabOrder = 16
  263. end
  264. object ChangeFontButton: TButton
  265. Left = 200
  266. Top = 302
  267. Width = 73
  268. Height = 23
  269. Caption = '&Change...'
  270. TabOrder = 17
  271. OnClick = ChangeFontButtonClick
  272. end
  273. object Label2: TNewStaticText
  274. Left = 8
  275. Top = 340
  276. Width = 54
  277. Height = 14
  278. Caption = '&Tab Width:'
  279. FocusControl = TabWidthEdit
  280. TabOrder = 18
  281. end
  282. object TabWidthEdit: TEdit
  283. Left = 72
  284. Top = 337
  285. Width = 41
  286. Height = 21
  287. TabOrder = 19
  288. OnChange = TabWidthEditChange
  289. end
  290. object GutterLineNumbersCheck: TCheckBox
  291. Left = 8
  292. Top = 176
  293. Width = 265
  294. Height = 17
  295. Caption = 'Show &line numbers in gutter'
  296. TabOrder = 8
  297. end
  298. object Label4: TNewStaticText
  299. Left = 8
  300. Top = 272
  301. Width = 37
  302. Height = 14
  303. Caption = 'T&heme:'
  304. FocusControl = ThemeComboBox
  305. TabOrder = 13
  306. end
  307. object ThemeComboBox: TComboBox
  308. Left = 72
  309. Top = 268
  310. Width = 201
  311. Height = 21
  312. Style = csDropDownList
  313. TabOrder = 14
  314. end
  315. object HighlightSelTextOccurrencesCheck: TCheckBox
  316. Left = 8
  317. Top = 196
  318. Width = 265
  319. Height = 17
  320. Caption = 'Highlight occurrences of current selection'
  321. TabOrder = 9
  322. end
  323. object HighlightWordAtCursorOccurrencesCheck: TCheckBox
  324. Left = 8
  325. Top = 216
  326. Width = 265
  327. Height = 17
  328. Caption = 'Highlight occurrences of current wor&d'
  329. TabOrder = 10
  330. end
  331. object Label5: TNewStaticText
  332. Left = 8
  333. Top = 243
  334. Width = 27
  335. Height = 14
  336. Caption = 'Ke&ys:'
  337. FocusControl = MemoKeyMappingComboBox
  338. TabOrder = 11
  339. end
  340. object MemoKeyMappingComboBox: TComboBox
  341. Left = 72
  342. Top = 239
  343. Width = 201
  344. Height = 21
  345. Style = csDropDownList
  346. TabOrder = 12
  347. end
  348. object ShowWhiteSpaceCheck: TCheckBox
  349. Left = 120
  350. Top = 338
  351. Width = 120
  352. Height = 17
  353. Caption = 'Show whitespace'
  354. TabOrder = 20
  355. end
  356. end
  357. object OKButton: TButton
  358. Left = 428
  359. Top = 392
  360. Width = 73
  361. Height = 23
  362. Anchors = [akLeft, akBottom]
  363. Caption = 'OK'
  364. Default = True
  365. ModalResult = 1
  366. TabOrder = 3
  367. end
  368. object CancelButton: TButton
  369. Left = 508
  370. Top = 392
  371. Width = 73
  372. Height = 23
  373. Anchors = [akLeft, akBottom]
  374. Cancel = True
  375. Caption = 'Cancel'
  376. ModalResult = 2
  377. TabOrder = 4
  378. end
  379. object FontDialog: TFontDialog
  380. Font.Charset = DEFAULT_CHARSET
  381. Font.Color = clWindowText
  382. Font.Height = -11
  383. Font.Name = 'MS Sans Serif'
  384. Font.Style = []
  385. Options = [fdForceFontExist]
  386. Left = 8
  387. Top = 284
  388. end
  389. end