CopyParamPreset.dfm 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. object CopyParamPresetDialog: TCopyParamPresetDialog
  2. Left = 264
  3. Top = 122
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_transfer_preset'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyParamPresetDialog'
  9. ClientHeight = 556
  10. ClientWidth = 744
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnCloseQuery = FormCloseQuery
  15. OnShow = FormShow
  16. DesignSize = (
  17. 744
  18. 556)
  19. TextHeight = 15
  20. object Label1: TLabel
  21. Left = 8
  22. Top = 8
  23. Width = 97
  24. Height = 15
  25. Caption = 'Preset &description:'
  26. FocusControl = DescriptionEdit
  27. end
  28. object OkButton: TButton
  29. Left = 484
  30. Top = 523
  31. Width = 80
  32. Height = 25
  33. Anchors = [akRight, akBottom]
  34. Caption = 'OK'
  35. Default = True
  36. ModalResult = 1
  37. TabOrder = 4
  38. end
  39. object CancelButton: TButton
  40. Left = 570
  41. Top = 523
  42. Width = 80
  43. Height = 25
  44. Anchors = [akRight, akBottom]
  45. Cancel = True
  46. Caption = 'Cancel'
  47. ModalResult = 2
  48. TabOrder = 5
  49. end
  50. object DescriptionEdit: TEdit
  51. Left = 8
  52. Top = 24
  53. Width = 450
  54. Height = 23
  55. MaxLength = 250
  56. TabOrder = 0
  57. OnChange = ControlChange
  58. end
  59. inline CopyParamsFrame: TCopyParamsFrame
  60. Left = 5
  61. Top = 50
  62. Width = 456
  63. Height = 471
  64. HelpType = htKeyword
  65. TabOrder = 1
  66. end
  67. object RuleGroup: TGroupBox
  68. Left = 472
  69. Top = 89
  70. Width = 264
  71. Height = 428
  72. Anchors = [akLeft, akTop, akRight, akBottom]
  73. Caption = 'Autoselection rule'
  74. TabOrder = 3
  75. DesignSize = (
  76. 264
  77. 428)
  78. object Label2: TLabel
  79. Left = 9
  80. Top = 22
  81. Width = 89
  82. Height = 15
  83. Caption = 'Hostna&me mask:'
  84. FocusControl = HostNameEdit
  85. end
  86. object Label3: TLabel
  87. Left = 9
  88. Top = 69
  89. Width = 87
  90. Height = 15
  91. Caption = 'Us&ername mask:'
  92. FocusControl = UserNameEdit
  93. end
  94. object Label4: TLabel
  95. Left = 9
  96. Top = 116
  97. Width = 125
  98. Height = 15
  99. Caption = 'Remote director&y mask:'
  100. FocusControl = RemoteDirectoryEdit
  101. end
  102. object Label5: TLabel
  103. Left = 10
  104. Top = 163
  105. Width = 112
  106. Height = 15
  107. Caption = '&Local directory mask:'
  108. FocusControl = LocalDirectoryEdit
  109. end
  110. object HostNameEdit: TEdit
  111. Left = 9
  112. Top = 40
  113. Width = 246
  114. Height = 23
  115. Anchors = [akLeft, akTop, akRight]
  116. MaxLength = 250
  117. TabOrder = 0
  118. OnChange = ControlChange
  119. OnExit = MaskEditExit
  120. end
  121. object UserNameEdit: TEdit
  122. Left = 9
  123. Top = 87
  124. Width = 246
  125. Height = 23
  126. Anchors = [akLeft, akTop, akRight]
  127. MaxLength = 250
  128. TabOrder = 1
  129. OnChange = ControlChange
  130. OnExit = MaskEditExit
  131. end
  132. object RemoteDirectoryEdit: TEdit
  133. Left = 9
  134. Top = 134
  135. Width = 246
  136. Height = 23
  137. Anchors = [akLeft, akTop, akRight]
  138. MaxLength = 250
  139. TabOrder = 2
  140. OnChange = ControlChange
  141. OnExit = MaskEditExit
  142. end
  143. object LocalDirectoryEdit: TEdit
  144. Left = 9
  145. Top = 181
  146. Width = 246
  147. Height = 23
  148. Anchors = [akLeft, akTop, akRight]
  149. MaxLength = 250
  150. TabOrder = 3
  151. OnChange = ControlChange
  152. OnExit = MaskEditExit
  153. end
  154. object CurrentRuleButton: TButton
  155. Left = 9
  156. Top = 214
  157. Width = 80
  158. Height = 25
  159. Caption = 'Current'
  160. TabOrder = 5
  161. OnClick = CurrentRuleButtonClick
  162. end
  163. object RuleMaskHintText: TStaticText
  164. Left = 126
  165. Top = 204
  166. Width = 129
  167. Height = 17
  168. Alignment = taRightJustify
  169. Anchors = [akTop, akRight]
  170. AutoSize = False
  171. Caption = 'mask hints'
  172. TabOrder = 4
  173. TabStop = True
  174. end
  175. end
  176. object HasRuleCheck: TCheckBox
  177. Left = 474
  178. Top = 66
  179. Width = 262
  180. Height = 17
  181. Anchors = [akLeft, akTop, akRight]
  182. Caption = 'Automatically select this preset when'
  183. TabOrder = 2
  184. OnClick = ControlChange
  185. end
  186. object HelpButton: TButton
  187. Left = 656
  188. Top = 523
  189. Width = 80
  190. Height = 25
  191. Anchors = [akRight, akBottom]
  192. Caption = 'Help'
  193. TabOrder = 6
  194. OnClick = HelpButtonClick
  195. end
  196. end