1object FileBrowserForm: TFileBrowserForm 2 Left = 284 3 Height = 467 4 Top = 288 5 Width = 345 6 ActiveControl = Panel1 7 Caption = 'File Browser' 8 ClientHeight = 467 9 ClientWidth = 345 10 OnActivate = FormActivate 11 OnClose = FormClose 12 OnCreate = FormCreate 13 OnShow = FormShow 14 LCLVersion = '0.9.31' 15 object FileListBox: TFileListBox 16 Left = 0 17 Height = 207 18 Top = 260 19 Width = 345 20 Align = alClient 21 Directory = '/home/graemeg' 22 FileType = [ftArchive, ftNormal] 23 ItemHeight = 22 24 OnDblClick = FileListBoxDblClick 25 OnKeyPress = FileListBoxKeyPress 26 TabOrder = 0 27 end 28 object TV: TTreeView 29 Left = 0 30 Height = 185 31 Top = 42 32 Width = 345 33 Align = alTop 34 DefaultItemHeight = 18 35 ReadOnly = True 36 ScrollBars = ssAutoBoth 37 TabOrder = 1 38 OnExpanded = TVExpanded 39 OnSelectionChanged = TVSelectionChanged 40 Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips] 41 end 42 object Panel1: TPanel 43 Left = 0 44 Height = 42 45 Top = 0 46 Width = 345 47 Align = alTop 48 BevelOuter = bvNone 49 ClientHeight = 42 50 ClientWidth = 345 51 TabOrder = 2 52 object cbHidden: TCheckBox 53 Left = 208 54 Height = 24 55 Top = 18 56 Width = 132 57 Caption = 'Show hidden files' 58 OnChange = cbHiddenChange 59 TabOrder = 0 60 end 61 object btnConfigure: TButton 62 Left = 8 63 Height = 28 64 Top = 7 65 Width = 90 66 Caption = 'Configure' 67 OnClick = btnConfigureClick 68 TabOrder = 1 69 end 70 object btnReload: TButton 71 Left = 104 72 Height = 28 73 Top = 7 74 Width = 90 75 Caption = 'Reload' 76 OnClick = btnReloadClick 77 TabOrder = 2 78 end 79 end 80 object Splitter1: TSplitter 81 Cursor = crVSplit 82 Left = 0 83 Height = 5 84 Top = 227 85 Width = 345 86 Align = alTop 87 ResizeAnchor = akTop 88 end 89 object FilterComboBox: TFilterComboBox 90 Left = 0 91 Height = 28 92 Top = 232 93 Width = 345 94 Align = alTop 95 TabOrder = 4 96 OnChange = FilterComboBoxChange 97 OnSelect = FilterComboBoxSelect 98 end 99end 100