IDE.OptionsForm.dfm 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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 = 156
  73. Width = 265
  74. Height = 17
  75. Caption = 'Display &full path in title bar'
  76. TabOrder = 7
  77. end
  78. object PauseOnDebuggerExceptionsCheck: TCheckBox
  79. Left = 8
  80. Top = 176
  81. Width = 265
  82. Height = 17
  83. Caption = '&Pause on exceptions'
  84. TabOrder = 8
  85. end
  86. object RunAsDifferentUserCheck: TCheckBox
  87. Left = 8
  88. Top = 196
  89. Width = 265
  90. Height = 17
  91. Caption = 'Always &launch Setup/Uninstall as administrator'
  92. TabOrder = 9
  93. end
  94. object ColorizeCompilerOutputCheck: TCheckBox
  95. Left = 8
  96. Top = 216
  97. Width = 265
  98. Height = 17
  99. Caption = 'Colori&ze "Compiler Output" view'
  100. TabOrder = 10
  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 = 243
  121. Width = 56
  122. Height = 14
  123. Caption = 'Menu &keys:'
  124. FocusControl = KeyMappingComboBox
  125. TabOrder = 11
  126. end
  127. object KeyMappingComboBox: TComboBox
  128. Left = 72
  129. Top = 239
  130. Width = 201
  131. Height = 21
  132. Style = csDropDownList
  133. TabOrder = 12
  134. end
  135. end
  136. object GroupBox2: TGroupBox
  137. Left = 8
  138. Top = 323
  139. Width = 281
  140. Height = 57
  141. Anchors = [akLeft, akBottom]
  142. Caption = ' File Associations '
  143. TabOrder = 1
  144. DesignSize = (
  145. 281
  146. 57)
  147. object AssocButton: TButton
  148. Left = 40
  149. Top = 20
  150. Width = 201
  151. Height = 23
  152. Anchors = [akLeft, akBottom]
  153. Caption = '&Associate .iss files with this compiler'
  154. TabOrder = 0
  155. OnClick = AssocButtonClick
  156. end
  157. end
  158. object GroupBox3: TGroupBox
  159. Left = 300
  160. Top = 8
  161. Width = 281
  162. Height = 372
  163. Anchors = [akLeft, akTop, akBottom]
  164. Caption = ' Editor '
  165. TabOrder = 2
  166. object AutoAutoCompleteCheck: TCheckBox
  167. Left = 8
  168. Top = 16
  169. Width = 265
  170. Height = 17
  171. Caption = 'Invoke autoco&mplete automatically'
  172. TabOrder = 0
  173. end
  174. object UseSynHighCheck: TCheckBox
  175. Left = 8
  176. Top = 36
  177. Width = 265
  178. Height = 17
  179. Caption = 'Use syntax &highlighting'
  180. TabOrder = 1
  181. end
  182. object UnderlineErrorsCheck: TCheckBox
  183. Left = 8
  184. Top = 56
  185. Width = 265
  186. Height = 17
  187. Caption = 'U&nderline syntax errors'
  188. TabOrder = 2
  189. end
  190. object CursorPastEOLCheck: TCheckBox
  191. Left = 8
  192. Top = 76
  193. Width = 265
  194. Height = 17
  195. Caption = 'Allow cursor to move beyond &end of lines'
  196. TabOrder = 3
  197. end
  198. object UseFoldingCheck: TCheckBox
  199. Left = 8
  200. Top = 96
  201. Width = 265
  202. Height = 17
  203. Caption = 'Enable section f&olding'
  204. TabOrder = 4
  205. end
  206. object UseTabCharacterCheck: TCheckBox
  207. Left = 8
  208. Top = 116
  209. Width = 265
  210. Height = 17
  211. Caption = 'Use tab cha&racter'
  212. TabOrder = 5
  213. end
  214. object AutoIndentCheck: TCheckBox
  215. Left = 8
  216. Top = 136
  217. Width = 265
  218. Height = 17
  219. Caption = 'Auto &indent mode'
  220. TabOrder = 6
  221. end
  222. object IndentationGuidesCheck: TCheckBox
  223. Left = 8
  224. Top = 156
  225. Width = 265
  226. Height = 17
  227. Caption = 'Show indentation &guides'
  228. TabOrder = 7
  229. end
  230. object Label1: TNewStaticText
  231. Left = 8
  232. Top = 306
  233. Width = 25
  234. Height = 14
  235. Caption = 'Font:'
  236. TabOrder = 15
  237. end
  238. object FontPanel: TPanel
  239. Left = 72
  240. Top = 297
  241. Width = 121
  242. Height = 32
  243. BevelKind = bkFlat
  244. BevelOuter = bvNone
  245. Caption = 'AaBbXxZz'
  246. TabOrder = 16
  247. end
  248. object ChangeFontButton: TButton
  249. Left = 200
  250. Top = 302
  251. Width = 73
  252. Height = 23
  253. Caption = '&Change...'
  254. TabOrder = 17
  255. OnClick = ChangeFontButtonClick
  256. end
  257. object Label2: TNewStaticText
  258. Left = 8
  259. Top = 340
  260. Width = 54
  261. Height = 14
  262. Caption = '&Tab Width:'
  263. FocusControl = TabWidthEdit
  264. TabOrder = 18
  265. end
  266. object TabWidthEdit: TEdit
  267. Left = 72
  268. Top = 337
  269. Width = 41
  270. Height = 21
  271. TabOrder = 19
  272. OnChange = TabWidthEditChange
  273. end
  274. object GutterLineNumbersCheck: TCheckBox
  275. Left = 8
  276. Top = 176
  277. Width = 265
  278. Height = 17
  279. Caption = 'Show &line numbers in gutter'
  280. TabOrder = 8
  281. end
  282. object Label4: TNewStaticText
  283. Left = 8
  284. Top = 272
  285. Width = 37
  286. Height = 14
  287. Caption = 'T&heme:'
  288. FocusControl = ThemeComboBox
  289. TabOrder = 13
  290. end
  291. object ThemeComboBox: TComboBox
  292. Left = 72
  293. Top = 268
  294. Width = 201
  295. Height = 21
  296. Style = csDropDownList
  297. TabOrder = 14
  298. end
  299. object HighlightSelTextOccurrencesCheck: TCheckBox
  300. Left = 8
  301. Top = 196
  302. Width = 265
  303. Height = 17
  304. Caption = 'Highlight occurrences of current selection'
  305. TabOrder = 9
  306. end
  307. object HighlightWordAtCursorOccurrencesCheck: TCheckBox
  308. Left = 8
  309. Top = 216
  310. Width = 265
  311. Height = 17
  312. Caption = 'Highlight occurrences of current wor&d'
  313. TabOrder = 10
  314. end
  315. object Label5: TNewStaticText
  316. Left = 8
  317. Top = 243
  318. Width = 27
  319. Height = 14
  320. Caption = 'Ke&ys:'
  321. FocusControl = MemoKeyMappingComboBox
  322. TabOrder = 11
  323. end
  324. object MemoKeyMappingComboBox: TComboBox
  325. Left = 72
  326. Top = 239
  327. Width = 201
  328. Height = 21
  329. Style = csDropDownList
  330. TabOrder = 12
  331. end
  332. object ShowWhiteSpaceCheck: TCheckBox
  333. Left = 120
  334. Top = 338
  335. Width = 120
  336. Height = 17
  337. Caption = 'Show whitespace'
  338. TabOrder = 20
  339. end
  340. end
  341. object OKButton: TButton
  342. Left = 428
  343. Top = 392
  344. Width = 73
  345. Height = 23
  346. Anchors = [akLeft, akBottom]
  347. Caption = 'OK'
  348. Default = True
  349. ModalResult = 1
  350. TabOrder = 3
  351. end
  352. object CancelButton: TButton
  353. Left = 508
  354. Top = 392
  355. Width = 73
  356. Height = 23
  357. Anchors = [akLeft, akBottom]
  358. Cancel = True
  359. Caption = 'Cancel'
  360. ModalResult = 2
  361. TabOrder = 4
  362. end
  363. object FontDialog: TFontDialog
  364. Font.Charset = DEFAULT_CHARSET
  365. Font.Color = clWindowText
  366. Font.Height = -11
  367. Font.Name = 'MS Sans Serif'
  368. Font.Style = []
  369. Options = [fdForceFontExist]
  370. Left = 8
  371. Top = 284
  372. end
  373. end