ImportSessions.dfm 3.2 KB

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