| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 | object ImportSessionsDialog: TImportSessionsDialog  Left = 362  Top = 186  HelpType = htKeyword  HelpKeyword = 'ui_import'  BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]  BorderStyle = bsDialog  Caption = 'Import sitesX'  ClientHeight = 273  ClientWidth = 375  Color = clBtnFace  ParentFont = True  OldCreateOrder = True  Position = poOwnerFormCenter  OnShow = FormShow  DesignSize = (    375    273)  PixelsPerInch = 96  TextHeight = 13  object Label: TLabel    Left = 8    Top = 13    Width = 61    Height = 13    Caption = '&Import from:'    FocusControl = SourceComboBox  end  object OKButton: TButton    Left = 135    Top = 242    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = 'OK'    Default = True    ModalResult = 1    TabOrder = 4  end  object CancelButton: TButton    Left = 215    Top = 242    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Cancel = True    Caption = 'Cancel'    ModalResult = 2    TabOrder = 5  end  object SessionListView2: TListView    Left = 8    Top = 39    Width = 361    Height = 197    Anchors = [akLeft, akTop, akRight, akBottom]    Checkboxes = True    Columns = <      item        Width = 240      end>    ColumnClick = False    DoubleBuffered = True    HideSelection = False    ReadOnly = True    ParentDoubleBuffered = False    ParentShowHint = False    ShowColumnHeaders = False    ShowHint = True    TabOrder = 2    ViewStyle = vsReport    OnInfoTip = SessionListView2InfoTip    OnKeyUp = SessionListView2KeyUp    OnMouseDown = SessionListView2MouseDown  end  object CheckAllButton: TButton    Left = 8    Top = 242    Width = 108    Height = 25    Anchors = [akLeft, akBottom]    Caption = 'Un/check &all'    TabOrder = 3    OnClick = CheckAllButtonClick  end  object HelpButton: TButton    Left = 294    Top = 242    Width = 75    Height = 25    Anchors = [akRight, akBottom]    Caption = '&Help'    TabOrder = 6    OnClick = HelpButtonClick  end  object SourceComboBox: TComboBox    Left = 106    Top = 10    Width = 120    Height = 21    Style = csDropDownList    TabOrder = 0    OnSelect = SourceComboBoxSelect    Items.Strings = (      'PuTTY'      'FileZilla'      'known_hosts')  end  object ErrorPanel: TPanel    Left = 48    Top = 92    Width = 281    Height = 97    BevelOuter = bvNone    Color = clWindow    ParentBackground = False    TabOrder = 7    object ErrorLabel: TLabel      Left = 0      Top = 0      Width = 281      Height = 97      Align = alClient      Alignment = taCenter      Caption = 'ErrorLabel'      ShowAccelChar = False      Layout = tlCenter      WordWrap = True    end  end  object PasteButton: TButton    Left = 232    Top = 8    Width = 75    Height = 25    Caption = '&Paste'    TabOrder = 1    OnClick = PasteButtonClick  endend
 |