1object SearchResultsView: TSearchResultsView
2  Left = 374
3  Height = 275
4  Top = 327
5  Width = 722
6  BorderIcons = [biSystemMenu]
7  Caption = 'SearchResultsView'
8  ClientHeight = 275
9  ClientWidth = 722
10  Constraints.MinHeight = 100
11  Constraints.MinWidth = 400
12  KeyPreview = True
13  OnClose = FormClose
14  OnCreate = Form1Create
15  OnKeyDown = FormKeyDown
16  object ControlBar1: TPanel
17    Left = 0
18    Height = 26
19    Top = 0
20    Width = 722
21    Align = alTop
22    BevelOuter = bvNone
23    ClientHeight = 26
24    ClientWidth = 722
25    TabOrder = 1
26    TabStop = True
27    object PageToolBar: TToolBar
28      AnchorSideLeft.Control = ControlBar1
29      Left = 1
30      Height = 22
31      Top = 2
32      Width = 70
33      Align = alNone
34      Anchors = [akTop, akLeft, akBottom]
35      AutoSize = True
36      EdgeInner = esNone
37      EdgeOuter = esNone
38      TabOrder = 0
39      object RefreshButton: TToolButton
40        Left = 1
41        Top = 0
42        AutoSize = True
43        Caption = 'RefreshButton'
44        ImageIndex = 2
45        OnClick = RefreshButtonClick
46        Visible = False
47      end
48      object SearchAgainButton: TToolButton
49        Left = 24
50        Top = 0
51        AutoSize = True
52        Caption = 'SearchAgainButton'
53        ImageIndex = 0
54        OnClick = SearchAgainButtonClick
55      end
56      object ClosePageButton: TToolButton
57        Left = 47
58        Top = 0
59        Caption = 'ClosePageButton'
60        ImageIndex = 1
61        OnClick = ClosePageButtonClick
62      end
63    end
64    object SearchInListEdit: TTreeFilterEdit
65      AnchorSideLeft.Control = PageToolBar
66      AnchorSideLeft.Side = asrBottom
67      AnchorSideRight.Control = CloseTabs
68      Left = 128
69      Height = 23
70      Top = 2
71      Width = 465
72      ButtonWidth = 23
73      Anchors = [akTop, akLeft, akRight, akBottom]
74      BorderSpacing.Left = 21
75      BorderSpacing.Right = 21
76      BorderSpacing.Bottom = 1
77      BorderSpacing.Around = 2
78      AutoSize = False
79      NumGlyphs = 1
80      MaxLength = 0
81      TabOrder = 1
82      OnChange = SearchInListChange
83    end
84    object CloseTabs: TToolBar
85      Left = 616
86      Height = 22
87      Top = 3
88      Width = 102
89      Align = alNone
90      Anchors = [akTop, akRight, akBottom]
91      BorderSpacing.Around = 2
92      EdgeBorders = []
93      EdgeInner = esNone
94      EdgeOuter = esNone
95      Indent = 2
96      TabOrder = 2
97      Wrapable = False
98      object tbbCloseLeft: TToolButton
99        Left = 2
100        Top = 0
101        Action = actCloseLeft
102      end
103      object tbbCloseOthers: TToolButton
104        Left = 25
105        Top = 0
106        Action = actCloseOthers
107      end
108      object tbbCloseRight: TToolButton
109        Left = 48
110        Top = 0
111        Action = actCloseRight
112      end
113      object ToolButton3: TToolButton
114        Left = 71
115        Height = 22
116        Top = 0
117        Style = tbsSeparator
118      end
119      object tbbCloseAll: TToolButton
120        Left = 79
121        Top = 0
122        Action = actCloseAll
123      end
124    end
125  end
126  object ResultsNoteBook: TExtendedNotebook
127    Left = 0
128    Height = 249
129    Top = 26
130    Width = 722
131    Align = alClient
132    MultiLine = True
133    TabOrder = 0
134    OnChange = ResultsNoteBookPageChanged
135    OnCloseTabClicked = ResultsNoteBookClosetabclicked
136    OnMouseDown = ResultsNoteBookMouseDown
137    OnResize = ResultsNoteBookResize
138    Options = [nboShowCloseButtons, nboMultiLine, nboDoChangeOnSetIndex]
139    TabDragMode = dmAutomatic
140    TabDragAcceptMode = dmAutomatic
141  end
142  object popList: TPopupMenu
143    Left = 129
144    Top = 48
145    object mniCopyItem: TMenuItem
146      Caption = 'Copy Item'
147      OnClick = mniCopyItemClick
148    end
149    object mniCopyAll: TMenuItem
150      Caption = 'Copy All'
151      OnClick = mniCopyAllClick
152    end
153    object mniCopySelected: TMenuItem
154      Caption = 'Copy Selected'
155      OnClick = mniCopySelectedClick
156    end
157    object MenuItem1: TMenuItem
158      Caption = '-'
159    end
160    object mniExpandAll: TMenuItem
161      Caption = 'Expand All'
162      OnClick = mniExpandAllClick
163    end
164    object mniCollapseAll: TMenuItem
165      Caption = 'Collapse All'
166      OnClick = mniCollapseAllClick
167    end
168  end
169  object ActionList: TActionList
170    Left = 32
171    Top = 48
172    object actClosePage: TAction
173      ImageIndex = 1
174      OnExecute = ClosePageButtonClick
175      ShortCut = 16499
176    end
177    object actNextPage: TAction
178      OnExecute = actNextPageExecute
179      ShortCut = 16393
180    end
181    object actPrevPage: TAction
182      OnExecute = actPrevPageExecute
183      ShortCut = 24585
184    end
185    object actCloseLeft: TAction
186      ImageIndex = 5
187      OnExecute = tbbCloseLeftClick
188    end
189    object actCloseOthers: TAction
190      ImageIndex = 6
191      OnExecute = tbbCloseOthersClick
192    end
193    object actCloseRight: TAction
194      ImageIndex = 7
195      OnExecute = tbbCloseRightClick
196    end
197    object actCloseAll: TAction
198      ImageIndex = 8
199      OnExecute = tbbCloseAllClick
200      ShortCut = 24691
201    end
202  end
203end
204