EditorPreferences.dfm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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 = poOwnerFormCenter
  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. TabOrder = 2
  87. Text = 'ExternalEditorEdit'
  88. OnChange = ControlChange
  89. OnExit = ExternalEditorEditExit
  90. end
  91. object ExternalEditorBrowseButton: TButton
  92. Left = 305
  93. Top = 67
  94. Width = 75
  95. Height = 25
  96. Caption = 'B&rowse...'
  97. TabOrder = 3
  98. OnClick = ExternalEditorBrowseButtonClick
  99. end
  100. object EditorOpenButton: TRadioButton
  101. Left = 16
  102. Top = 97
  103. Width = 145
  104. Height = 17
  105. Caption = '&Associated application'
  106. TabOrder = 4
  107. OnClick = ControlChange
  108. end
  109. end
  110. object MaskGroup: TGroupBox
  111. Left = 7
  112. Top = 140
  113. Width = 388
  114. Height = 73
  115. Anchors = [akLeft, akTop, akRight]
  116. Caption = 'Editor autoselection'
  117. TabOrder = 1
  118. DesignSize = (
  119. 388
  120. 73)
  121. object MaskLabel: TLabel
  122. Left = 11
  123. Top = 20
  124. Width = 150
  125. Height = 13
  126. Caption = 'Use this editor for &following files:'
  127. FocusControl = MaskEdit
  128. end
  129. object MaskEdit: THistoryComboBox
  130. Left = 11
  131. Top = 39
  132. Width = 367
  133. Height = 21
  134. AutoComplete = False
  135. Anchors = [akLeft, akTop, akRight]
  136. MaxLength = 1000
  137. TabOrder = 0
  138. Text = '*.*'
  139. OnExit = MaskEditExit
  140. end
  141. end
  142. object OkButton: TButton
  143. Left = 151
  144. Top = 326
  145. Width = 75
  146. Height = 25
  147. Anchors = [akRight, akBottom]
  148. Caption = 'OK'
  149. Default = True
  150. ModalResult = 1
  151. TabOrder = 4
  152. end
  153. object CancelButton: TButton
  154. Left = 235
  155. Top = 326
  156. Width = 75
  157. Height = 25
  158. Anchors = [akRight, akBottom]
  159. Cancel = True
  160. Caption = 'Cancel'
  161. ModalResult = 2
  162. TabOrder = 5
  163. end
  164. object HelpButton: TButton
  165. Left = 319
  166. Top = 326
  167. Width = 75
  168. Height = 25
  169. Anchors = [akRight, akBottom]
  170. Caption = '&Help'
  171. TabOrder = 6
  172. OnClick = HelpButtonClick
  173. end
  174. object RememberCheck: TCheckBox
  175. Left = 24
  176. Top = 302
  177. Width = 337
  178. Height = 17
  179. Anchors = [akLeft, akBottom]
  180. Caption = '&Remember this editor'
  181. TabOrder = 3
  182. end
  183. end