GenerateUrl.dfm 5.5 KB

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