EditorPreferences.dfm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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 = 310
  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. 310)
  23. PixelsPerInch = 96
  24. TextHeight = 13
  25. object ExternalEditorGroup: TXPGroupBox
  26. Left = 8
  27. Top = 196
  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 MDIExternalEditorCheck: TCheckBox
  42. Left = 16
  43. Top = 21
  44. Width = 337
  45. Height = 17
  46. Caption = 'E&xternal editor opens multiple files in one window (process)'
  47. TabOrder = 0
  48. end
  49. end
  50. object EditorGroup: TXPGroupBox
  51. Left = 8
  52. Top = 8
  53. Width = 388
  54. Height = 101
  55. Anchors = [akLeft, akTop, akRight]
  56. Caption = 'Editor type'
  57. TabOrder = 0
  58. DesignSize = (
  59. 388
  60. 101)
  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. Anchors = [akLeft, akTop, akRight]
  85. ItemHeight = 13
  86. TabOrder = 2
  87. Text = 'ExternalEditorEdit'
  88. OnChange = ExternalEditorEditChange
  89. OnExit = ExternalEditorEditExit
  90. end
  91. object ExternalEditorBrowseButton: TButton
  92. Left = 305
  93. Top = 67
  94. Width = 75
  95. Height = 25
  96. Anchors = [akTop, akRight]
  97. Caption = 'B&rowse...'
  98. TabOrder = 3
  99. OnClick = ExternalEditorBrowseButtonClick
  100. end
  101. end
  102. object MaskGroup: TXPGroupBox
  103. Left = 7
  104. Top = 116
  105. Width = 388
  106. Height = 73
  107. Anchors = [akLeft, akTop, akRight]
  108. Caption = 'Editor autoselection'
  109. TabOrder = 1
  110. DesignSize = (
  111. 388
  112. 73)
  113. object Label1: TLabel
  114. Left = 11
  115. Top = 20
  116. Width = 150
  117. Height = 13
  118. Caption = 'Use this editor for &following files:'
  119. FocusControl = MaskEdit
  120. end
  121. object MaskEdit: THistoryComboBox
  122. Left = 11
  123. Top = 39
  124. Width = 367
  125. Height = 21
  126. Anchors = [akLeft, akTop, akRight]
  127. ItemHeight = 13
  128. MaxLength = 1000
  129. TabOrder = 0
  130. Text = '*.*'
  131. OnExit = MaskEditExit
  132. end
  133. end
  134. object OkButton: TButton
  135. Left = 151
  136. Top = 277
  137. Width = 75
  138. Height = 25
  139. Anchors = [akRight, akBottom]
  140. Caption = 'OK'
  141. Default = True
  142. ModalResult = 1
  143. TabOrder = 3
  144. end
  145. object CancelButton: TButton
  146. Left = 235
  147. Top = 277
  148. Width = 75
  149. Height = 25
  150. Anchors = [akRight, akBottom]
  151. Cancel = True
  152. Caption = 'Cancel'
  153. ModalResult = 2
  154. TabOrder = 4
  155. end
  156. object HelpButton: TButton
  157. Left = 319
  158. Top = 277
  159. Width = 75
  160. Height = 25
  161. Anchors = [akRight, akBottom]
  162. Caption = '&Help'
  163. TabOrder = 5
  164. OnClick = HelpButtonClick
  165. end
  166. end