FileSystemInfo.dfm 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. object FileSystemInfoDialog: TFileSystemInfoDialog
  2. Left = 345
  3. Top = 178
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_fsinfo'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Server and protocol information'
  9. ClientHeight = 430
  10. ClientWidth = 367
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poMainFormCenter
  15. DesignSize = (
  16. 367
  17. 430)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object CloseButton: TButton
  21. Left = 200
  22. Top = 396
  23. Width = 75
  24. Height = 25
  25. Anchors = [akRight, akBottom]
  26. Cancel = True
  27. Caption = 'Close'
  28. Default = True
  29. ModalResult = 1
  30. TabOrder = 0
  31. end
  32. object ServerGroup: TXPGroupBox
  33. Left = 8
  34. Top = 8
  35. Width = 351
  36. Height = 105
  37. Anchors = [akLeft, akTop, akRight]
  38. Caption = 'Server information'
  39. TabOrder = 1
  40. DesignSize = (
  41. 351
  42. 105)
  43. object Label1: TLabel
  44. Left = 10
  45. Top = 18
  46. Width = 103
  47. Height = 13
  48. Caption = 'SSH protocol version:'
  49. end
  50. object Label2: TLabel
  51. Left = 10
  52. Top = 50
  53. Width = 98
  54. Height = 13
  55. Caption = 'Encryption algorithm:'
  56. end
  57. object Label3: TLabel
  58. Left = 10
  59. Top = 66
  60. Width = 63
  61. Height = 13
  62. Caption = 'Compression:'
  63. end
  64. object Label7: TLabel
  65. Left = 10
  66. Top = 82
  67. Width = 98
  68. Height = 13
  69. Caption = 'File transfer protocol:'
  70. end
  71. object Label11: TLabel
  72. Left = 10
  73. Top = 34
  74. Width = 98
  75. Height = 13
  76. Caption = 'SSH implementation:'
  77. end
  78. object SshVersionEdit: TEdit
  79. Left = 214
  80. Top = 18
  81. Width = 129
  82. Height = 17
  83. TabStop = False
  84. Anchors = [akLeft, akTop, akRight]
  85. BorderStyle = bsNone
  86. Color = clBtnFace
  87. ReadOnly = True
  88. TabOrder = 0
  89. Text = 'SshVersionEdit'
  90. end
  91. object CipherEdit: TEdit
  92. Left = 214
  93. Top = 50
  94. Width = 129
  95. Height = 17
  96. TabStop = False
  97. Anchors = [akLeft, akTop, akRight]
  98. BorderStyle = bsNone
  99. Color = clBtnFace
  100. ReadOnly = True
  101. TabOrder = 2
  102. Text = 'CipherEdit'
  103. end
  104. object CompressionEdit: TEdit
  105. Left = 214
  106. Top = 66
  107. Width = 129
  108. Height = 17
  109. TabStop = False
  110. Anchors = [akLeft, akTop, akRight]
  111. BorderStyle = bsNone
  112. Color = clBtnFace
  113. ReadOnly = True
  114. TabOrder = 3
  115. Text = 'CompressionEdit'
  116. end
  117. object FSProtocolEdit: TEdit
  118. Left = 214
  119. Top = 82
  120. Width = 129
  121. Height = 17
  122. TabStop = False
  123. Anchors = [akLeft, akTop, akRight]
  124. BorderStyle = bsNone
  125. Color = clBtnFace
  126. ReadOnly = True
  127. TabOrder = 4
  128. Text = 'FSProtocolEdit'
  129. end
  130. object SshImplementationEdit: TEdit
  131. Left = 214
  132. Top = 34
  133. Width = 129
  134. Height = 17
  135. TabStop = False
  136. Anchors = [akLeft, akTop, akRight]
  137. BorderStyle = bsNone
  138. Color = clBtnFace
  139. ReadOnly = True
  140. TabOrder = 1
  141. Text = 'SshImplementationEdit'
  142. end
  143. end
  144. object ProtocolGroup: TXPGroupBox
  145. Left = 8
  146. Top = 156
  147. Width = 351
  148. Height = 233
  149. Anchors = [akLeft, akTop, akRight]
  150. Caption = 'Protocol capabilities/information'
  151. TabOrder = 2
  152. DesignSize = (
  153. 351
  154. 233)
  155. object Label4: TLabel
  156. Left = 10
  157. Top = 18
  158. Width = 118
  159. Height = 13
  160. Caption = 'Can change permissions:'
  161. end
  162. object Label5: TLabel
  163. Left = 10
  164. Top = 34
  165. Width = 125
  166. Height = 13
  167. Caption = 'Can change owner/group:'
  168. end
  169. object Label6: TLabel
  170. Left = 10
  171. Top = 50
  172. Width = 152
  173. Height = 13
  174. Caption = 'Can execute arbitrary command:'
  175. end
  176. object Label8: TLabel
  177. Left = 10
  178. Top = 66
  179. Width = 134
  180. Height = 13
  181. Caption = 'Can create symlink/hardlink:'
  182. end
  183. object Label9: TLabel
  184. Left = 10
  185. Top = 114
  186. Width = 162
  187. Height = 13
  188. Caption = 'Native text (ASCII) mode transfers:'
  189. end
  190. object Label10: TLabel
  191. Left = 10
  192. Top = 82
  193. Width = 115
  194. Height = 13
  195. Caption = 'Can lookup user groups:'
  196. end
  197. object Label12: TLabel
  198. Left = 10
  199. Top = 98
  200. Width = 124
  201. Height = 13
  202. Caption = 'Can duplicate remote files:'
  203. end
  204. object ModeChangingEdit: TEdit
  205. Left = 214
  206. Top = 18
  207. Width = 129
  208. Height = 17
  209. TabStop = False
  210. Anchors = [akLeft, akTop, akRight]
  211. BorderStyle = bsNone
  212. Color = clBtnFace
  213. ReadOnly = True
  214. TabOrder = 0
  215. Text = 'ModeChangingEdit'
  216. end
  217. object OwnerGroupChangingEdit: TEdit
  218. Left = 214
  219. Top = 34
  220. Width = 129
  221. Height = 17
  222. TabStop = False
  223. Anchors = [akLeft, akTop, akRight]
  224. BorderStyle = bsNone
  225. Color = clBtnFace
  226. ReadOnly = True
  227. TabOrder = 1
  228. Text = 'OwnerGroupChangingEdit'
  229. end
  230. object AnyCommandEdit: TEdit
  231. Left = 214
  232. Top = 50
  233. Width = 129
  234. Height = 17
  235. TabStop = False
  236. Anchors = [akLeft, akTop, akRight]
  237. BorderStyle = bsNone
  238. Color = clBtnFace
  239. ReadOnly = True
  240. TabOrder = 2
  241. Text = 'AnyCommandEdit'
  242. end
  243. object SymbolicHardLinkEdit: TEdit
  244. Left = 214
  245. Top = 66
  246. Width = 129
  247. Height = 17
  248. TabStop = False
  249. Anchors = [akLeft, akTop, akRight]
  250. BorderStyle = bsNone
  251. Color = clBtnFace
  252. ReadOnly = True
  253. TabOrder = 3
  254. Text = 'SymbolicHardLinkEdit'
  255. end
  256. object NativeTextModeEdit: TEdit
  257. Left = 214
  258. Top = 114
  259. Width = 129
  260. Height = 17
  261. TabStop = False
  262. Anchors = [akLeft, akTop, akRight]
  263. BorderStyle = bsNone
  264. Color = clBtnFace
  265. ReadOnly = True
  266. TabOrder = 6
  267. Text = 'NativeTextModeEdit'
  268. end
  269. object UserGroupListingEdit: TEdit
  270. Left = 214
  271. Top = 82
  272. Width = 129
  273. Height = 17
  274. TabStop = False
  275. Anchors = [akLeft, akTop, akRight]
  276. BorderStyle = bsNone
  277. Color = clBtnFace
  278. ReadOnly = True
  279. TabOrder = 4
  280. Text = 'UserGroupListingEdit'
  281. end
  282. object InfoMemo: TMemo
  283. Left = 8
  284. Top = 136
  285. Width = 335
  286. Height = 89
  287. TabStop = False
  288. Anchors = [akLeft, akTop, akRight, akBottom]
  289. Color = clBtnFace
  290. Lines.Strings = (
  291. 'InfoMemo')
  292. ReadOnly = True
  293. ScrollBars = ssBoth
  294. TabOrder = 7
  295. WantReturns = False
  296. WordWrap = False
  297. end
  298. object RemoteCopyEdit: TEdit
  299. Left = 214
  300. Top = 98
  301. Width = 129
  302. Height = 17
  303. TabStop = False
  304. Anchors = [akLeft, akTop, akRight]
  305. BorderStyle = bsNone
  306. Color = clBtnFace
  307. ReadOnly = True
  308. TabOrder = 5
  309. Text = 'RemoteCopyEdit'
  310. end
  311. end
  312. object HostKeyGroup: TXPGroupBox
  313. Left = 8
  314. Top = 116
  315. Width = 351
  316. Height = 37
  317. Anchors = [akLeft, akTop, akRight]
  318. Caption = 'Server host key fingerprint'
  319. TabOrder = 3
  320. DesignSize = (
  321. 351
  322. 37)
  323. object HostKeyFingerprintEdit: TEdit
  324. Left = 10
  325. Top = 16
  326. Width = 334
  327. Height = 17
  328. TabStop = False
  329. Anchors = [akLeft, akTop, akRight]
  330. BorderStyle = bsNone
  331. Color = clBtnFace
  332. ReadOnly = True
  333. TabOrder = 0
  334. Text = 'HostKeyFingerprintEdit'
  335. end
  336. end
  337. object HelpButton: TButton
  338. Left = 283
  339. Top = 396
  340. Width = 75
  341. Height = 25
  342. Anchors = [akRight, akBottom]
  343. Caption = '&Help'
  344. TabOrder = 4
  345. OnClick = HelpButtonClick
  346. end
  347. end