GenerateUrl.dfm 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. object GenerateUrlDialog: TGenerateUrlDialog
  2. Left = 369
  3. Top = 257
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_generateurl'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Generate URL X'
  9. ClientHeight = 338
  10. ClientWidth = 484
  11. Color = clBtnFace
  12. Constraints.MinHeight = 300
  13. Constraints.MinWidth = 484
  14. ParentFont = True
  15. OldCreateOrder = True
  16. Position = poOwnerFormCenter
  17. DesignSize = (
  18. 484
  19. 338)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object OptionsPageControl: TPageControl
  23. Left = 5
  24. Top = 5
  25. Width = 475
  26. Height = 111
  27. ActivePage = UrlSheet
  28. Anchors = [akLeft, akTop, akRight]
  29. TabOrder = 0
  30. OnChange = ControlChange
  31. object UrlSheet: TTabSheet
  32. Caption = 'URL'
  33. object UserNameCheck: TCheckBox
  34. Tag = 1
  35. Left = 11
  36. Top = 8
  37. Width = 216
  38. Height = 17
  39. Caption = '&User name'
  40. TabOrder = 0
  41. OnClick = ControlChange
  42. end
  43. object HostKeyCheck: TCheckBox
  44. Tag = 4
  45. Left = 11
  46. Top = 31
  47. Width = 216
  48. Height = 17
  49. Caption = 'SSH &host Key'
  50. TabOrder = 1
  51. OnClick = ControlChange
  52. end
  53. object WinSCPSpecificCheck: TCheckBox
  54. Tag = 16
  55. Left = 11
  56. Top = 54
  57. Width = 216
  58. Height = 17
  59. Caption = '&WinSCP-specific'
  60. TabOrder = 2
  61. OnClick = ControlChange
  62. end
  63. object SaveExtensionCheck: TCheckBox
  64. Tag = 32
  65. Left = 235
  66. Top = 54
  67. Width = 216
  68. Height = 17
  69. Caption = '&Save extension'
  70. TabOrder = 3
  71. OnClick = ControlChange
  72. end
  73. object RemoteDirectoryCheck: TCheckBox
  74. Tag = 8
  75. Left = 235
  76. Top = 31
  77. Width = 216
  78. Height = 17
  79. Caption = 'Initial &directory'
  80. TabOrder = 4
  81. OnClick = ControlChange
  82. end
  83. object PasswordCheck: TCheckBox
  84. Tag = 2
  85. Left = 235
  86. Top = 8
  87. Width = 216
  88. Height = 17
  89. HelpType = htKeyword
  90. Caption = '&Password'
  91. TabOrder = 5
  92. OnClick = ControlChange
  93. end
  94. end
  95. object ScriptSheet: TTabSheet
  96. Caption = 'Script'
  97. ImageIndex = 1
  98. object Label2: TLabel
  99. Left = 11
  100. Top = 8
  101. Width = 38
  102. Height = 13
  103. Caption = '&Format:'
  104. FocusControl = ScriptFormatCombo
  105. end
  106. object ScriptDescriptionLabel: TLabel
  107. Left = 11
  108. Top = 32
  109. Width = 446
  110. Height = 42
  111. AutoSize = False
  112. Caption = 'ScriptDescriptionLabel'
  113. WordWrap = True
  114. end
  115. object ScriptFormatCombo: TComboBox
  116. Left = 112
  117. Top = 5
  118. Width = 103
  119. Height = 21
  120. Style = csDropDownList
  121. TabOrder = 0
  122. OnChange = ControlChange
  123. Items.Strings = (
  124. 'Script file'
  125. 'Batch file'
  126. 'Command-line')
  127. end
  128. end
  129. object AssemblySheet: TTabSheet
  130. Caption = '.NET assembly code'
  131. ImageIndex = 2
  132. object Label1: TLabel
  133. Left = 11
  134. Top = 8
  135. Width = 51
  136. Height = 13
  137. Caption = '&Language:'
  138. FocusControl = AssemblyLanguageCombo
  139. end
  140. object AssemblyDescriptionLabel: TLabel
  141. Left = 11
  142. Top = 32
  143. Width = 446
  144. Height = 42
  145. AutoSize = False
  146. Caption = 'AssemblyDescriptionLabel'
  147. WordWrap = True
  148. end
  149. object AssemblyLanguageCombo: TComboBox
  150. Left = 112
  151. Top = 5
  152. Width = 103
  153. Height = 21
  154. Style = csDropDownList
  155. TabOrder = 0
  156. OnChange = ControlChange
  157. Items.Strings = (
  158. 'C#'
  159. 'VB.NET'
  160. 'PowerShell')
  161. end
  162. end
  163. end
  164. object ResultGroup: TGroupBox
  165. Left = 8
  166. Top = 122
  167. Width = 468
  168. Height = 176
  169. Anchors = [akLeft, akTop, akRight, akBottom]
  170. Caption = 'ResultX'
  171. TabOrder = 1
  172. DesignSize = (
  173. 468
  174. 176)
  175. object ResultMemo: TMemo
  176. Left = 7
  177. Top = 15
  178. Width = 454
  179. Height = 152
  180. TabStop = False
  181. Anchors = [akLeft, akTop, akRight, akBottom]
  182. BevelInner = bvNone
  183. BevelOuter = bvNone
  184. BorderStyle = bsNone
  185. Lines.Strings = (
  186. 'ResultMemo')
  187. ScrollBars = ssVertical
  188. TabOrder = 0
  189. end
  190. end
  191. object CancelBtn: TButton
  192. Left = 318
  193. Top = 305
  194. Width = 75
  195. Height = 25
  196. Anchors = [akRight, akBottom]
  197. Cancel = True
  198. Caption = 'Close'
  199. ModalResult = 2
  200. TabOrder = 3
  201. end
  202. object HelpButton: TButton
  203. Left = 401
  204. Top = 305
  205. Width = 75
  206. Height = 25
  207. Anchors = [akRight, akBottom]
  208. Caption = '&Help'
  209. TabOrder = 4
  210. OnClick = HelpButtonClick
  211. end
  212. object ClipboardButton: TButton
  213. Left = 8
  214. Top = 305
  215. Width = 145
  216. Height = 25
  217. Anchors = [akLeft, akBottom]
  218. Caption = '&Copy to Clipboard'
  219. TabOrder = 2
  220. OnClick = ClipboardButtonClick
  221. end
  222. end