EditorPreferences.dfm 4.3 KB

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