ImportSessions.dfm 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 = 113
  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. 'KiTTY'
  107. 'FileZilla'
  108. 'OpenSSH'
  109. 'known_hosts')
  110. end
  111. object ErrorPanel: TPanel
  112. Left = 48
  113. Top = 92
  114. Width = 281
  115. Height = 97
  116. BevelOuter = bvNone
  117. Color = clWindow
  118. ParentBackground = False
  119. TabOrder = 7
  120. object ErrorLabel: TLabel
  121. Left = 0
  122. Top = 0
  123. Width = 281
  124. Height = 97
  125. Align = alClient
  126. Alignment = taCenter
  127. Caption = 'ErrorLabel'
  128. ShowAccelChar = False
  129. Layout = tlCenter
  130. WordWrap = True
  131. end
  132. end
  133. object PasteButton: TButton
  134. Left = 232
  135. Top = 8
  136. Width = 75
  137. Height = 25
  138. Caption = '&Paste'
  139. TabOrder = 1
  140. OnClick = PasteButtonClick
  141. end
  142. end