ImportSessions.dfm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. object ImportSessionsDialog: TImportSessionsDialog
  2. Left = 362
  3. Top = 186
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_import'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Import sessions from PuTTY'
  9. ClientHeight = 293
  10. ClientWidth = 375
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. OnClose = FormClose
  16. OnShow = FormShow
  17. DesignSize = (
  18. 375
  19. 293)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Label1: TLabel
  23. Left = 8
  24. Top = 8
  25. Width = 361
  26. Height = 45
  27. Anchors = [akLeft, akTop, akRight]
  28. AutoSize = False
  29. Caption =
  30. 'Following list contains sessions stored in PuTTY SSH client. Che' +
  31. 'ck sessions you want to import and press OK button.'
  32. WordWrap = True
  33. end
  34. object Label2: TLabel
  35. Left = 8
  36. Top = 52
  37. Width = 314
  38. Height = 13
  39. Anchors = [akLeft, akTop, akRight]
  40. Caption = 'Notice: This application always connects using SSH protocol.'
  41. WordWrap = True
  42. end
  43. object OKButton: TButton
  44. Left = 135
  45. Top = 262
  46. Width = 75
  47. Height = 25
  48. Anchors = [akRight, akBottom]
  49. Caption = 'OK'
  50. Default = True
  51. ModalResult = 1
  52. TabOrder = 3
  53. end
  54. object CancelButton: TButton
  55. Left = 215
  56. Top = 262
  57. Width = 75
  58. Height = 25
  59. Anchors = [akRight, akBottom]
  60. Cancel = True
  61. Caption = 'Cancel'
  62. ModalResult = 2
  63. TabOrder = 4
  64. end
  65. object SessionListView: TListView
  66. Left = 8
  67. Top = 72
  68. Width = 361
  69. Height = 160
  70. Anchors = [akLeft, akTop, akRight, akBottom]
  71. Checkboxes = True
  72. Columns = <
  73. item
  74. Caption = 'Session'
  75. Width = 240
  76. end
  77. item
  78. Caption = 'Protocol'
  79. Width = 60
  80. end>
  81. ColumnClick = False
  82. HideSelection = False
  83. ReadOnly = True
  84. ParentShowHint = False
  85. ShowHint = True
  86. TabOrder = 0
  87. ViewStyle = vsReport
  88. OnInfoTip = SessionListViewInfoTip
  89. OnKeyUp = SessionListViewKeyUp
  90. OnMouseDown = SessionListViewMouseDown
  91. end
  92. object CheckAllButton: TButton
  93. Left = 8
  94. Top = 262
  95. Width = 89
  96. Height = 25
  97. Anchors = [akLeft, akBottom]
  98. Caption = 'Un/check &all'
  99. TabOrder = 2
  100. OnClick = CheckAllButtonClick
  101. end
  102. object ImportKeysCheck: TCheckBox
  103. Left = 16
  104. Top = 238
  105. Width = 345
  106. Height = 17
  107. Caption = 'Import cached host &keys for checked sessions'
  108. TabOrder = 1
  109. end
  110. object HelpButton: TButton
  111. Left = 294
  112. Top = 262
  113. Width = 75
  114. Height = 25
  115. Anchors = [akRight, akBottom]
  116. Caption = '&Help'
  117. TabOrder = 5
  118. OnClick = HelpButtonClick
  119. end
  120. end