ImportSessions.dfm 3.3 KB

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