ImportSessions.dfm 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 = 11
  24. Width = 61
  25. Height = 13
  26. Anchors = [akLeft, akTop, akRight]
  27. Caption = '&Import from:'
  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 = 35
  54. Width = 361
  55. Height = 177
  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 = 1
  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 ImportKeysCheck: TCheckBox
  87. Left = 16
  88. Top = 218
  89. Width = 345
  90. Height = 17
  91. Anchors = [akLeft, akBottom]
  92. Caption = 'Import cached host &keys for checked sites'
  93. TabOrder = 2
  94. end
  95. object HelpButton: TButton
  96. Left = 294
  97. Top = 242
  98. Width = 75
  99. Height = 25
  100. Anchors = [akRight, akBottom]
  101. Caption = '&Help'
  102. TabOrder = 6
  103. OnClick = HelpButtonClick
  104. end
  105. object SourceComboBox: TComboBox
  106. Left = 106
  107. Top = 8
  108. Width = 120
  109. Height = 21
  110. Style = csDropDownList
  111. TabOrder = 0
  112. OnSelect = SourceComboBoxSelect
  113. Items.Strings = (
  114. 'PuTTY'
  115. 'FileZilla')
  116. end
  117. object ErrorPanel: TPanel
  118. Left = 48
  119. Top = 80
  120. Width = 281
  121. Height = 97
  122. BevelOuter = bvNone
  123. Color = clWindow
  124. ParentBackground = False
  125. TabOrder = 7
  126. object ErrorLabel: TLabel
  127. Left = 0
  128. Top = 0
  129. Width = 281
  130. Height = 97
  131. Align = alClient
  132. Alignment = taCenter
  133. Caption = 'ErrorLabel'
  134. Layout = tlCenter
  135. WordWrap = True
  136. end
  137. end
  138. end