EditorPreferences.dfm 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. object EditorPreferencesDialog: TEditorPreferencesDialog
  2. Left = 303
  3. Top = 145
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_editor_preferences'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'EditorPreferencesDialog'
  9. ClientHeight = 382
  10. ClientWidth = 447
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -12
  15. Font.Name = 'Segoe UI'
  16. Font.Style = []
  17. Position = poOwnerFormCenter
  18. OnCloseQuery = FormCloseQuery
  19. OnShow = FormShow
  20. DesignSize = (
  21. 447
  22. 382)
  23. TextHeight = 15
  24. object ExternalEditorGroup: TGroupBox
  25. Left = 8
  26. Top = 247
  27. Width = 431
  28. Height = 73
  29. Anchors = [akLeft, akTop, akRight]
  30. Caption = 'External editor options (affects editing remote files only)'
  31. TabOrder = 2
  32. DesignSize = (
  33. 431
  34. 73)
  35. object ExternalEditorTextCheck: TCheckBox
  36. Left = 11
  37. Top = 45
  38. Width = 411
  39. Height = 17
  40. Anchors = [akLeft, akTop, akRight]
  41. Caption = 'Force &text transfer mode for files edited in external editor'
  42. TabOrder = 1
  43. end
  44. object SDIExternalEditorCheck: TCheckBox
  45. Left = 11
  46. Top = 22
  47. Width = 411
  48. Height = 17
  49. Anchors = [akLeft, akTop, akRight]
  50. Caption = 'E&xternal editor opens each file in separate window (process)'
  51. TabOrder = 0
  52. end
  53. end
  54. object EditorGroup2: TGroupBox
  55. Left = 8
  56. Top = 8
  57. Width = 431
  58. Height = 154
  59. Anchors = [akLeft, akTop, akRight]
  60. Caption = 'Editor'
  61. TabOrder = 0
  62. DesignSize = (
  63. 431
  64. 154)
  65. object EditorInternalButton: TRadioButton
  66. Left = 11
  67. Top = 22
  68. Width = 212
  69. Height = 17
  70. Caption = '&Internal editor'
  71. TabOrder = 0
  72. OnClick = ControlChange
  73. end
  74. object EditorExternalButton: TRadioButton
  75. Left = 11
  76. Top = 45
  77. Width = 212
  78. Height = 17
  79. Caption = '&External editor:'
  80. TabOrder = 1
  81. OnClick = ControlChange
  82. end
  83. object ExternalEditorEdit: THistoryComboBox
  84. Left = 26
  85. Top = 68
  86. Width = 310
  87. Height = 23
  88. AutoComplete = False
  89. Anchors = [akLeft, akTop, akRight]
  90. TabOrder = 2
  91. Text = 'ExternalEditorEdit'
  92. OnChange = ControlChange
  93. OnExit = ExternalEditorEditExit
  94. end
  95. object ExternalEditorBrowseButton: TButton
  96. Left = 342
  97. Top = 67
  98. Width = 80
  99. Height = 25
  100. Anchors = [akTop, akRight]
  101. Caption = 'B&rowse...'
  102. TabOrder = 3
  103. OnClick = ExternalEditorBrowseButtonClick
  104. end
  105. object EditorOpenButton: TRadioButton
  106. Left = 11
  107. Top = 97
  108. Width = 212
  109. Height = 17
  110. Caption = '&Associated application'
  111. TabOrder = 4
  112. OnClick = ControlChange
  113. end
  114. object DefaultButton: TButton
  115. Left = 9
  116. Top = 120
  117. Width = 214
  118. Height = 25
  119. Caption = 'Use default system editor'
  120. TabOrder = 5
  121. OnClick = DefaultButtonClick
  122. end
  123. end
  124. object MaskGroup: TGroupBox
  125. Left = 8
  126. Top = 168
  127. Width = 431
  128. Height = 73
  129. Anchors = [akLeft, akTop, akRight]
  130. Caption = 'Editor autoselection'
  131. TabOrder = 1
  132. DesignSize = (
  133. 431
  134. 73)
  135. object MaskLabel: TLabel
  136. Left = 9
  137. Top = 22
  138. Width = 173
  139. Height = 15
  140. Caption = 'Use this editor for &following files:'
  141. FocusControl = MaskEdit
  142. end
  143. object MaskEdit: THistoryComboBox
  144. Left = 9
  145. Top = 40
  146. Width = 413
  147. Height = 23
  148. AutoComplete = False
  149. Anchors = [akLeft, akTop, akRight]
  150. MaxLength = 1000
  151. TabOrder = 0
  152. Text = '*.*'
  153. OnExit = MaskEditExit
  154. end
  155. end
  156. object OkButton: TButton
  157. Left = 187
  158. Top = 349
  159. Width = 80
  160. Height = 25
  161. Anchors = [akRight, akBottom]
  162. Caption = 'OK'
  163. Default = True
  164. ModalResult = 1
  165. TabOrder = 4
  166. end
  167. object CancelButton: TButton
  168. Left = 273
  169. Top = 349
  170. Width = 80
  171. Height = 25
  172. Anchors = [akRight, akBottom]
  173. Cancel = True
  174. Caption = 'Cancel'
  175. ModalResult = 2
  176. TabOrder = 5
  177. end
  178. object HelpButton: TButton
  179. Left = 359
  180. Top = 349
  181. Width = 80
  182. Height = 25
  183. Anchors = [akRight, akBottom]
  184. Caption = '&Help'
  185. TabOrder = 6
  186. OnClick = HelpButtonClick
  187. end
  188. object RememberCheck: TCheckBox
  189. Left = 19
  190. Top = 326
  191. Width = 420
  192. Height = 17
  193. Anchors = [akLeft, akRight, akBottom]
  194. Caption = '&Remember this editor'
  195. TabOrder = 3
  196. end
  197. end