ImportSessions.dfm 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. object ImportSessionsDialog: TImportSessionsDialog
  2. Left = 362
  3. Top = 186
  4. BorderStyle = bsDialog
  5. Caption = 'Import sessions from PuTTY'
  6. ClientHeight = 275
  7. ClientWidth = 351
  8. Color = clBtnFace
  9. ParentFont = True
  10. OldCreateOrder = True
  11. Position = poOwnerFormCenter
  12. OnClose = FormClose
  13. OnShow = FormShow
  14. DesignSize = (
  15. 351
  16. 275)
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Label1: TLabel
  20. Left = 8
  21. Top = 8
  22. Width = 337
  23. Height = 45
  24. Anchors = [akLeft, akTop, akRight]
  25. AutoSize = False
  26. Caption =
  27. 'Following list contains sessions stored in PuTTY SSH client. Che' +
  28. 'ck sessions you want to import and press OK button.'
  29. WordWrap = True
  30. end
  31. object Label2: TLabel
  32. Left = 8
  33. Top = 52
  34. Width = 290
  35. Height = 13
  36. Anchors = [akLeft, akTop, akRight]
  37. Caption = 'Notice: This application always connects using SSH protocol.'
  38. WordWrap = True
  39. end
  40. object OKButton: TButton
  41. Left = 191
  42. Top = 244
  43. Width = 75
  44. Height = 25
  45. Anchors = [akRight, akBottom]
  46. Caption = 'OK'
  47. Default = True
  48. ModalResult = 1
  49. TabOrder = 1
  50. end
  51. object CancelButton: TButton
  52. Left = 271
  53. Top = 244
  54. Width = 75
  55. Height = 25
  56. Anchors = [akRight, akBottom]
  57. Cancel = True
  58. Caption = 'Cancel'
  59. ModalResult = 2
  60. TabOrder = 2
  61. end
  62. object SessionListView: TListView
  63. Left = 8
  64. Top = 72
  65. Width = 337
  66. Height = 164
  67. Anchors = [akLeft, akTop, akRight, akBottom]
  68. Checkboxes = True
  69. Columns = <
  70. item
  71. Caption = 'Session'
  72. Width = 240
  73. end
  74. item
  75. Caption = 'Protocol'
  76. Width = 60
  77. end>
  78. ColumnClick = False
  79. HideSelection = False
  80. ReadOnly = True
  81. ParentShowHint = False
  82. ShowHint = True
  83. TabOrder = 0
  84. ViewStyle = vsReport
  85. OnInfoTip = SessionListViewInfoTip
  86. OnKeyUp = SessionListViewKeyUp
  87. OnMouseDown = SessionListViewMouseDown
  88. end
  89. end