mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:38:04 +02:00
118 lines
3.0 KiB
Plaintext
118 lines
3.0 KiB
Plaintext
object SearchResultsView: TSearchResultsView
|
|
Left = 159
|
|
Height = 229
|
|
Top = 405
|
|
Width = 799
|
|
HorzScrollBar.Page = 798
|
|
VertScrollBar.Page = 228
|
|
ActiveControl = btnSearchAgain
|
|
Caption = 'SearchResultsView'
|
|
ClientHeight = 229
|
|
ClientWidth = 799
|
|
OnCreate = Form1Create
|
|
OnDestroy = SearchResultsViewDestroy
|
|
OnKeyDown = ListBoxKeyDown
|
|
Position = poScreenCenter
|
|
object ResultsNoteBook: TNotebook
|
|
AnchorSideTop.Control = gbSearchPhraseInList
|
|
AnchorSideTop.Side = asrBottom
|
|
Height = 181
|
|
Top = 48
|
|
Width = 799
|
|
Align = alBottom
|
|
Anchors = [akTop, akLeft]
|
|
OnCloseTabClicked = ResultsNoteBookClosetabclicked
|
|
OnPageChanged = ResultsNoteBookPageChanged
|
|
Options = [nboShowCloseButtons, nboMultiLine]
|
|
TabOrder = 0
|
|
end
|
|
object btnSearchAgain: TButton
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
Left = 6
|
|
Height = 29
|
|
Top = 6
|
|
Width = 97
|
|
AutoSize = True
|
|
BorderSpacing.Around = 6
|
|
Caption = 'Search Again'
|
|
OnClick = btnSearchAgainClick
|
|
OnKeyDown = ListBoxKeyDown
|
|
TabOrder = 1
|
|
end
|
|
object gbSearchPhraseInList: TGroupBox
|
|
AnchorSideLeft.Control = ClosePageButton
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 236
|
|
Height = 48
|
|
Width = 563
|
|
Anchors = [akTop, akLeft, akRight]
|
|
AutoSize = True
|
|
BorderSpacing.Left = 6
|
|
Caption = 'Search or Filter Phrases In List'
|
|
ClientHeight = 29
|
|
ClientWidth = 559
|
|
TabOrder = 2
|
|
object edSearchInList: TEdit
|
|
Height = 29
|
|
Hint = 'Enter one or more phrases that you want'#10'to Search or Filter in the list,'#10'seperated by space ( '' '' ), or comma ( , )'
|
|
Width = 291
|
|
Align = alClient
|
|
OnChange = edSearchInListChange
|
|
OnKeyDown = edSearchInListKeyDown
|
|
ParentShowHint = False
|
|
ShowHint = True
|
|
TabOrder = 0
|
|
end
|
|
object bnForwardSearch: TButton
|
|
Left = 333
|
|
Height = 29
|
|
Width = 110
|
|
Align = alRight
|
|
AutoSize = True
|
|
Caption = 'Forward Search'
|
|
OnClick = bnForwardSearchClick
|
|
TabOrder = 1
|
|
end
|
|
object bnResetResults: TButton
|
|
Left = 443
|
|
Height = 29
|
|
Width = 116
|
|
Align = alRight
|
|
AutoSize = True
|
|
Caption = 'Reset Result List'
|
|
OnClick = bnResetResultsClick
|
|
TabOrder = 2
|
|
end
|
|
object bnFilter: TButton
|
|
Left = 291
|
|
Height = 29
|
|
Width = 42
|
|
Align = alRight
|
|
AutoSize = True
|
|
Caption = 'Filter'
|
|
OnClick = bnFilterClick
|
|
TabOrder = 3
|
|
end
|
|
end
|
|
object ClosePageButton: TButton
|
|
AnchorSideLeft.Control = btnSearchAgain
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = btnSearchAgain
|
|
AnchorSideBottom.Control = btnSearchAgain
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 109
|
|
Height = 29
|
|
Top = 6
|
|
Width = 121
|
|
Anchors = [akTop, akLeft, akBottom]
|
|
AutoSize = True
|
|
BorderSpacing.Left = 6
|
|
Caption = 'ClosePageButton'
|
|
OnClick = ClosePageButtonClick
|
|
TabOrder = 3
|
|
end
|
|
end
|