EditorPreferences.dfm 4.4 KB

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