ImportSessions.dfm 3.0 KB

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