ImportSessions.dfm 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 sitesX'
  9. ClientHeight = 273
  10. ClientWidth = 375
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. OnShow = FormShow
  16. DesignSize = (
  17. 375
  18. 273)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Label: TLabel
  22. Left = 8
  23. Top = 13
  24. Width = 61
  25. Height = 13
  26. Caption = '&Import from:'
  27. FocusControl = SourceComboBox
  28. end
  29. object OKButton: TButton
  30. Left = 135
  31. Top = 242
  32. Width = 75
  33. Height = 25
  34. Anchors = [akRight, akBottom]
  35. Caption = 'OK'
  36. Default = True
  37. ModalResult = 1
  38. TabOrder = 4
  39. end
  40. object CancelButton: TButton
  41. Left = 215
  42. Top = 242
  43. Width = 75
  44. Height = 25
  45. Anchors = [akRight, akBottom]
  46. Cancel = True
  47. Caption = 'Cancel'
  48. ModalResult = 2
  49. TabOrder = 5
  50. end
  51. object SessionListView2: TListView
  52. Left = 8
  53. Top = 39
  54. Width = 361
  55. Height = 197
  56. Anchors = [akLeft, akTop, akRight, akBottom]
  57. Checkboxes = True
  58. Columns = <
  59. item
  60. Width = 240
  61. end>
  62. ColumnClick = False
  63. DoubleBuffered = True
  64. HideSelection = False
  65. ReadOnly = True
  66. ParentDoubleBuffered = False
  67. ParentShowHint = False
  68. ShowColumnHeaders = False
  69. ShowHint = True
  70. TabOrder = 2
  71. ViewStyle = vsReport
  72. OnInfoTip = SessionListView2InfoTip
  73. OnKeyUp = SessionListView2KeyUp
  74. OnMouseDown = SessionListView2MouseDown
  75. end
  76. object CheckAllButton: TButton
  77. Left = 8
  78. Top = 242
  79. Width = 108
  80. Height = 25
  81. Anchors = [akLeft, akBottom]
  82. Caption = 'Un/check &all'
  83. TabOrder = 3
  84. OnClick = CheckAllButtonClick
  85. end
  86. object HelpButton: TButton
  87. Left = 294
  88. Top = 242
  89. Width = 75
  90. Height = 25
  91. Anchors = [akRight, akBottom]
  92. Caption = '&Help'
  93. TabOrder = 6
  94. OnClick = HelpButtonClick
  95. end
  96. object SourceComboBox: TComboBox
  97. Left = 106
  98. Top = 10
  99. Width = 120
  100. Height = 21
  101. Style = csDropDownList
  102. TabOrder = 0
  103. OnSelect = SourceComboBoxSelect
  104. Items.Strings = (
  105. 'PuTTY'
  106. 'FileZilla'
  107. 'known_hosts')
  108. end
  109. object ErrorPanel: TPanel
  110. Left = 48
  111. Top = 92
  112. Width = 281
  113. Height = 97
  114. BevelOuter = bvNone
  115. Color = clWindow
  116. ParentBackground = False
  117. TabOrder = 7
  118. object ErrorLabel: TLabel
  119. Left = 0
  120. Top = 0
  121. Width = 281
  122. Height = 97
  123. Align = alClient
  124. Alignment = taCenter
  125. Caption = 'ErrorLabel'
  126. ShowAccelChar = False
  127. Layout = tlCenter
  128. WordWrap = True
  129. end
  130. end
  131. object PasteButton: TButton
  132. Left = 232
  133. Top = 8
  134. Width = 75
  135. Height = 25
  136. Caption = '&Paste'
  137. TabOrder = 1
  138. OnClick = PasteButtonClick
  139. end
  140. end