1
0

CopyParamPreset.dfm 4.4 KB

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