GenerateUrl.dfm 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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'
  9. ClientHeight = 251
  10. ClientWidth = 484
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. DesignSize = (
  16. 484
  17. 251)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object OptionsGroup: TGroupBox
  21. Left = 8
  22. Top = 6
  23. Width = 468
  24. Height = 95
  25. Anchors = [akLeft, akTop, akRight]
  26. Caption = 'URL options'
  27. TabOrder = 0
  28. object UserNameCheck: TCheckBox
  29. Tag = 1
  30. Left = 11
  31. Top = 20
  32. Width = 216
  33. Height = 17
  34. Caption = '&User name'
  35. TabOrder = 0
  36. OnClick = ControlChange
  37. end
  38. object PasswordCheck: TCheckBox
  39. Tag = 2
  40. Left = 235
  41. Top = 20
  42. Width = 216
  43. Height = 17
  44. HelpType = htKeyword
  45. HelpKeyword = 'ui_generate_url'
  46. Caption = '&Password'
  47. TabOrder = 1
  48. OnClick = ControlChange
  49. end
  50. object HostKeyCheck: TCheckBox
  51. Tag = 4
  52. Left = 11
  53. Top = 43
  54. Width = 216
  55. Height = 17
  56. Caption = 'SSH &host Key'
  57. TabOrder = 2
  58. OnClick = ControlChange
  59. end
  60. object RemoteDirectoryCheck: TCheckBox
  61. Tag = 8
  62. Left = 235
  63. Top = 43
  64. Width = 216
  65. Height = 17
  66. Caption = 'Initial &directory'
  67. TabOrder = 3
  68. OnClick = ControlChange
  69. end
  70. object WinSCPSpecificCheck: TCheckBox
  71. Tag = 16
  72. Left = 11
  73. Top = 66
  74. Width = 216
  75. Height = 17
  76. Caption = '&WinSCP-specific'
  77. TabOrder = 4
  78. OnClick = ControlChange
  79. end
  80. object SaveExtensionCheck: TCheckBox
  81. Tag = 32
  82. Left = 235
  83. Top = 66
  84. Width = 216
  85. Height = 17
  86. Caption = '&Save extension'
  87. TabOrder = 5
  88. OnClick = ControlChange
  89. end
  90. end
  91. object UrlGroup: TGroupBox
  92. Left = 8
  93. Top = 107
  94. Width = 468
  95. Height = 105
  96. Anchors = [akLeft, akTop, akRight, akBottom]
  97. Caption = 'URL'
  98. TabOrder = 1
  99. DesignSize = (
  100. 468
  101. 105)
  102. object UrlMemo: TMemo
  103. Left = 7
  104. Top = 15
  105. Width = 454
  106. Height = 81
  107. TabStop = False
  108. Anchors = [akLeft, akTop, akRight, akBottom]
  109. BevelInner = bvNone
  110. BevelOuter = bvNone
  111. BorderStyle = bsNone
  112. Lines.Strings = (
  113. 'UrlMemo')
  114. ScrollBars = ssVertical
  115. TabOrder = 0
  116. end
  117. end
  118. object CancelBtn: TButton
  119. Left = 318
  120. Top = 218
  121. Width = 75
  122. Height = 25
  123. Anchors = [akRight, akBottom]
  124. Cancel = True
  125. Caption = 'Close'
  126. ModalResult = 2
  127. TabOrder = 3
  128. end
  129. object HelpButton: TButton
  130. Left = 401
  131. Top = 218
  132. Width = 75
  133. Height = 25
  134. Anchors = [akRight, akBottom]
  135. Caption = '&Help'
  136. TabOrder = 4
  137. OnClick = HelpButtonClick
  138. end
  139. object ClipboardButton: TButton
  140. Left = 8
  141. Top = 218
  142. Width = 145
  143. Height = 25
  144. Anchors = [akLeft, akBottom]
  145. Caption = '&Copy to Clipboard'
  146. TabOrder = 2
  147. OnClick = ClipboardButtonClick
  148. end
  149. end