source: trunk/NewView/GlobalSearchForm.pas@ 380

Last change on this file since 380 was 313, checked in by RBRi, 17 years ago

fix for #38

  • Property svn:eol-style set to native
File size: 19.9 KB
Line 
1Unit GlobalSearchForm;
2
3// NewView - a new OS/2 Help Viewer
4// Copyright 2003 Aaron Lawrence (aaronl at consultant dot com)
5// This software is released under the Gnu Public License - see readme.txt
6
7Interface
8
9// Global search uses a thread to load helpfiles, search them, and
10// send the results to be displayed.
11
12Uses
13 PmWin,
14 Classes,
15 Forms,
16 Buttons,
17 StdCtrls,
18 ComCtrls,
19 Outline2,
20 GenericThread,
21 ACLLanguageUnit,
22 TextSearchQuery,
23 HelpFile,
24 ExtCtrls,
25 LED;
26
27const
28 // Custom window messages for this form
29 // NOTE! Sibyl uses WM_USER+1 and +2!
30 WM_OPENED = WM_USER + 10;
31
32Type
33 TViewTopicCallback = procedure( Filename: string;
34 TopicIndex: longint ) of object;
35
36 TSearchParameters = class
37 Query: TTextSearchQuery;
38 Directories: TStringList;
39 end;
40
41 // Returned by thread. (Note - helpfiles and topics are destroyed dynamically.)
42 TSearchResult = class
43 Filename: string;
44 FileTitle: string;
45 MatchingTopics: TList;
46 constructor Create;
47 destructor Destroy; override;
48 end;
49
50 TGlobalSearchForm = Class (TForm)
51 SearchTextEdit: TEdit;
52 SearchTextLabel: TLabel;
53 SelectDrivesButton: TButton;
54 SearchTextLabel1: TLabel;
55 ResultsLabel: TLabel;
56 Led: TLed;
57 LEDTimer: TTimer;
58 SearchLocationComboBox: TComboBox;
59 Bevel: TBevel;
60 HelpButton: TButton;
61 ResultsOutline: TOutline2;
62 SearchButton: TButton;
63 ViewTopicButton: TButton;
64 CancelButton: TButton;
65 ProgressBar: TProgressBar;
66 ProgressLabel: TLabel;
67 Procedure SearchLocationComboBoxOnItemSelect (Sender: TObject;
68 Index: LongInt);
69 Procedure LEDTimerOnTimer (Sender: TObject);
70 Procedure SearchInComboBoxOnChange (Sender: TObject);
71 Procedure ResultsOutlineOnEnter (Sender: TObject);
72 Procedure SearchTextEditOnEnter (Sender: TObject);
73 Procedure SelectDrivesButtonOnClick (Sender: TObject);
74 Procedure GlobalSearchFormOnSetupShow (Sender: TObject);
75 Procedure CancelButtonOnClick (Sender: TObject);
76 Procedure GlobalSearchFormOnClose (Sender: TObject;
77 Var Action: TCloseAction);
78 Procedure ResultsOutlineOnItemDblClick (Node: TNode);
79 Procedure ViewTopicButtonOnClick (Sender: TObject);
80 Procedure GlobalSearchFormOnCreate (Sender: TObject);
81 Procedure GlobalSearchFormOnCloseQuery (Sender: TObject;
82 Var CanClose: Boolean);
83 Procedure SearchButtonOnClick (Sender: TObject);
84 Procedure GlobalSearchFormOnShow (Sender: TObject);
85 Protected
86 Procedure OnSearchProgress ( n, outof: integer;
87 S: String );
88 Procedure OnMatchFound( SearchResult: TSearchResult );
89 Procedure OnThreadData( S: string; Data: TObject );
90 Procedure OnSearchFinished( Result: TObject );
91 Procedure SetProgressLabel( const S: String );
92
93 // Handle our own WM_OPENED message
94 Procedure WMOpened( Var Msg: TMessage ); Message WM_OPENED;
95 Procedure ClearResults;
96 Procedure ViewTopic;
97
98 ThreadManager: TGenericThreadManager;
99
100 Procedure UpdateButtons;
101
102
103 Procedure GetSelectedDirectories( List: TStringList );
104
105 // search thread context
106
107 Function Search( Parameters: TObject ): TObject;
108
109 protected
110 Procedure OnLanguageEvent( Language: TLanguageFile; const Apply: boolean );
111
112 SearchCaption: string;
113 StopCaption: string;
114 NoResultsMsg: string;
115 ScanDirectoriesMsg: string;
116 SearchingFileMsg: string;
117 OfMsg: string;
118 DoneMsg: string;
119 SearchErrorTitle: string;
120 SearchError: string;
121
122 StandardHelpPathsLocation: string;
123 FixedDrivesLocation: string;
124 SelectedHelpPathsLocation: string;
125 CustomPathsLocation: string;
126
127 public
128 // set by caller
129 ViewTopicCallback: TViewTopicCallback;
130 Procedure DoSearch;
131 End;
132
133Var
134 GlobalSearchForm: TGlobalSearchForm;
135
136procedure EnsureGlobalSearchFormLoaded;
137
138Implementation
139
140uses
141 SysUtils,
142 DebugUnit,
143 ACLDialogs,
144 ControlsUtility,
145 DriveInfoUnit,
146 IPFFileFormatUnit,
147 HelpTopic,
148 SearchUnit,
149 SearchDirectoriesFormUnit,
150 SettingsUnit,
151 InformationFormUnit,
152 StringUtilsUnit,
153 FileUtilsUnit;
154
155type
156 // Used to store filenames in outline
157 THelpFileInfo = class
158 FileName: string;
159 end;
160
161constructor TSearchResult.Create;
162begin
163 inherited Create;
164 MatchingTopics := TList.Create;
165end;
166
167destructor TSearchResult.Destroy;
168begin
169 MatchingTopics.Destroy;
170 inherited Destroy;
171end;
172
173Procedure TGlobalSearchForm.SearchLocationComboBoxOnItemSelect (Sender: TObject; Index: LongInt);
174Begin
175 Settings.GlobalSearchLocation := TGlobalSearchLocation( SearchLocationComboBox.ItemIndex );
176End;
177
178Procedure TGlobalSearchForm.LEDTimerOnTimer (Sender: TObject);
179Begin
180 LED.LedCondition := not LED.LedCondition;
181End;
182
183Procedure TGlobalSearchForm.SearchInComboBoxOnChange (Sender: TObject);
184Begin
185End;
186
187Procedure TGlobalSearchForm.ResultsOutlineOnEnter (Sender: TObject);
188Begin
189 ViewTopicButton.Default := true;
190End;
191
192Procedure TGlobalSearchForm.SearchTextEditOnEnter (Sender: TObject);
193Begin
194 SearchButton.Default := true;
195End;
196
197
198Procedure TGlobalSearchForm.GetSelectedDirectories(List: TStringList);
199Var
200 tmpDirectories : TStringList;
201
202 DriveNumber: longint;
203 DriveType: TDriveType;
204 DriveLetter: char;
205 i: longint;
206 Dir: string;
207 FoundIndex: longint;
208begin
209 List.Clear;
210 case SearchLocationComboBox.ItemIndex of
211 -1:
212 begin
213 // one custom dir...
214 List.Add( SearchLocationComboBox.Text );
215 end;
216
217 Ord( gsHelpPaths ),
218 Ord( gsSelectedHelpPaths ): // standard or selected help paths
219 Begin
220 tmpDirectories := TStringList.Create;
221 List.Sorted := true;
222 List.Duplicates := dupIgnore;
223
224 // GetDirsInPath clears the list tmpDirectories
225 GetDirsInPath(HelpPathEnvironmentVar, tmpDirectories);
226 List.AddStrings(tmpDirectories);
227
228 GetDirsInPath(BookshelfEnvironmentVar, tmpDirectories);
229 List.AddStrings(tmpDirectories);
230
231 tmpDirectories.Destroy;
232
233 // for selected paths we have to adjust the selection
234 if SearchLocationComboBox.ItemIndex = Ord( gsSelectedHelpPaths ) then
235 begin
236 // now mark some as non-selected...
237 for i := 0 to List.Count - 1 do
238 begin
239 Dir := List[i];
240 if not Settings.SearchDirectories.Find( Dir, FoundIndex ) then
241 List.Objects[i] := pointer(1);
242 end;
243 end;
244 end;
245
246
247 Ord( gsFixedDrives ):
248 begin
249 // drives
250 For DriveNumber := MinDriveNumber To MaxDriveNumber Do
251 Begin
252 DriveType := GetDriveType( DriveNumber );
253 DriveLetter := Chr( DriveNumber + Ord( 'A' ) - 1 );
254
255 if DriveType = dtHard then
256 begin
257 List.Add( DriveLetter + ':\...' );
258 end;
259 end;
260 end;
261
262 Ord( gsCustom ):
263 begin
264 // already custom...
265 List.Assign(Settings.SearchDirectories);
266 end;
267 end;
268end;
269
270Procedure TGlobalSearchForm.SelectDrivesButtonOnClick (Sender: TObject);
271begin
272 GetSelectedDirectories(SearchDirectoriesForm.SelectedFolders);
273
274 SearchDirectoriesForm.ShowModal;
275 if SearchDirectoriesForm.ModalResult <> mrOK then
276 exit;
277
278 // there was a selection, so we have to change the dropdown
279 if SearchLocationComboBox.ItemIndex = Ord( gsHelpPaths ) then
280 SearchLocationComboBox.ItemIndex := Ord( gsSelectedHelpPaths );
281
282 if SearchLocationComboBox.ItemIndex = Ord( gsFixedDrives ) then
283 SearchLocationComboBox.ItemIndex := Ord( gsCustom );
284
285 if SearchDirectoriesForm.CustomDirAdded then
286 SearchLocationComboBox.ItemIndex := Ord( gsCustom );
287
288 // update the settings
289 Settings.SearchDirectories.Assign( SearchDirectoriesForm.SelectedFolders );
290 SaveSettings;
291End;
292
293Procedure TGlobalSearchForm.UpdateButtons;
294Begin
295 // HelpPathsRadioButton.Checked := SearchType = stHelpPaths;
296 // EverywhereRadioButton.Checked := SearchType = stDrives;
297// FolderRadioButton.Checked := SearchType = stFolder;
298
299End;
300
301Procedure TGlobalSearchForm.GlobalSearchFormOnSetupShow (Sender: TObject);
302Begin
303 ScaleForm( self, 11, 16 );
304 SearchButton.Align := alFixedRightTop;
305
306 if SearchLocationComboBox.Items.Count = 0 then
307 begin
308 // must match teh global search location enum...
309 SearchLocationComboBox.Items.Add( StandardHelpPathsLocation );
310 SearchLocationComboBox.Items.Add( FixedDrivesLocation );
311 SearchLocationComboBox.Items.Add( SelectedHelpPathsLocation );
312 SearchLocationComboBox.Items.Add( CustomPathsLocation );
313
314 SearchLocationComboBox.ItemIndex := Ord( Settings.GlobalSearchLocation );
315 end;
316
317End;
318
319Procedure TGlobalSearchForm.OnLanguageEvent(Language: TLanguageFile; const Apply: boolean );
320begin
321 LogEvent(LogI18n, 'TGlobalSearchForm.OnLanguageEvent apply: "' + BoolToStr(Apply) + '"');
322
323 Language.LoadComponentLanguage(self, Apply);
324
325 Language.LL(Apply, SearchCaption, 'SearchCaption', '~Search');
326 Language.LL(Apply, StopCaption, 'StopCaption', '~Stop');
327 Language.LL(Apply, NoResultsMsg, 'NoResultsMsg', '(No results found)');
328 Language.LL(Apply, ScanDirectoriesMsg, 'ScanDirectoriesMsg', 'Finding help files...');
329 Language.LL(Apply, SearchingFileMsg, 'SearchingFileMsg', 'Searching ');
330 Language.LL(Apply, OfMsg, 'OfMsg', ' of ');
331 Language.LL(Apply, DoneMsg, 'DoneMsg', 'Done');
332 Language.LL(Apply, SearchErrorTitle, 'SearchErrorTitle', 'Search');
333 Language.LL(Apply, SearchError, 'SearchError', 'Error in search syntax: ');
334
335 Language.LL(Apply, StandardHelpPathsLocation, 'StandardHelpPathsLocation', 'Standard Help Paths');
336 Language.LL(Apply, FixedDrivesLocation, 'FixedDrivesLocation', 'All Hard Drives');
337 Language.LL(Apply, SelectedHelpPathsLocation, 'SelectedHelpPathsLocation', 'Selected Help Paths');
338 Language.LL(Apply, CustomPathsLocation, 'CustomPathsLocation', 'Directory List');
339end;
340
341
342Procedure TGlobalSearchForm.CancelButtonOnClick (Sender: TObject);
343Begin
344 Close;
345End;
346
347Procedure TGlobalSearchForm.GlobalSearchFormOnClose (Sender: TObject;
348 Var Action: TCloseAction);
349Begin
350 ClearResults;
351
352 if SearchLocationComboBox.ItemIndex = -1 then
353 begin
354 Settings.GlobalSearchLocation := gsCustom;
355 Settings.SearchDirectories.Clear;
356 Settings.SearchDirectories.Add( SearchLocationComboBox.Text );
357 end;
358
359 Action := caFreeHandle; // DON'T release the form! (Default action for non-modal forms)
360End;
361
362Procedure TGlobalSearchForm.ResultsOutlineOnItemDblClick (Node: TNode);
363Begin
364 ViewTopic;
365End;
366
367Procedure TGlobalSearchForm.ViewTopicButtonOnClick (Sender: TObject);
368begin
369 ViewTopic;
370end;
371
372Procedure TGlobalSearchForm.ViewTopic;
373var
374 Node: TNode;
375 HelpFileInfo: THelpFileInfo;
376 TopicIndex: longint;
377Begin
378 Node := ResultsOutline.SelectedNode;
379 if Node = nil then
380 exit;
381 case Node.Level of
382 0:
383 begin
384 // file node
385 HelpFileInfo := Node.Data as THelpFileInfo;
386 TopicIndex := -1;
387 end;
388
389 1:
390 begin
391 // topic node
392 HelpFileInfo := Node.Parent.Data as THelpFileInfo;
393 TopicIndex := longint( Node.Data );
394 end;
395
396 else
397 assert( false, 'Invalid node level in ViewTopic!: ' + IntToStr( Node.Level ) );
398 end;
399
400 ViewTopicCallback( HelpFileInfo.FileName, TopicIndex );
401End;
402
403Procedure TGlobalSearchForm.GlobalSearchFormOnCreate (Sender: TObject);
404Begin
405 RegisterForLanguages( OnLanguageEvent );
406
407 UpdateButtons;
408
409 ThreadManager := TGenericThreadManager.Create( self );
410 ThreadManager.OnProgressUpdate := OnSearchProgress;
411 ThreadManager.OnDataFromThread := OnThreadData;
412 ThreadManager.OnJobComplete := OnSearchFinished;
413End;
414
415Procedure TGlobalSearchForm.OnSearchFinished( Result: TObject );
416Begin
417 SearchButton.Caption := SearchCaption;
418 ProgressBar.Hide;
419 LED.LedCondition := false;
420 LEDTimer.Stop;
421
422 if ResultsOutline.ChildCount > 0 then
423 begin
424 ResultsOutline.SelectedNode:= ResultsOutline.Children[ 0 ];
425 ResultsOutline.Focus;
426 SetProgressLabel( '' );
427 end
428 else
429 begin
430 SetProgressLabel( NoResultsMsg );
431 end;
432
433End;
434
435Procedure TGlobalSearchForm.GlobalSearchFormOnCloseQuery (Sender: TObject;
436 Var CanClose: Boolean);
437Begin
438 if ThreadManager.IsRunning then
439 begin
440 ThreadManager.Stop;
441 end;
442End;
443
444Procedure TGlobalSearchForm.SetProgressLabel( const S: String );
445begin
446 ProgressLabel.Text := S;
447 ProgressLabel.Refresh;
448end;
449
450Procedure TGlobalSearchForm.OnSearchProgress ( n, outof: integer;
451 S: String );
452Begin
453 ProgressBar.Position := n * 100 div outof;
454 SetProgressLabel( S );
455End;
456
457Function TGlobalSearchForm.Search( Parameters: TObject ): TObject;
458var
459 Files : TStringList;
460 FileIndex: longint;
461 Filename: string;
462 HelpFile: THelpFile;
463 SearchResult: TSearchResult;
464 MatchingTopics: TList;
465
466 tmpSearchParameters : TSearchParameters;
467 Query: TTextSearchQuery;
468 i: longint;
469 tmpDir: string;
470
471Begin
472 // LogEvent(LogDebug, 'TGlobalSearchForm.Search');
473
474 tmpSearchParameters := Parameters as TSearchParameters;
475
476 Query := tmpSearchParameters.Query;
477 Files := TStringList.Create;
478
479 MatchingTopics := TList.Create;
480 LogEvent(LogParse, 'Creating file list');
481
482 // make sure we ignore duplicate files...
483 Files.Sorted := true;
484 Files.CaseSensitive := false;
485 Files.Duplicates := dupIgnore;
486
487 for i := 0 to tmpSearchParameters.Directories.Count - 1 do
488 begin
489 if ThreadManager.StopRequested then
490 begin
491 break;
492 end;
493
494 ThreadManager.UpdateProgress( i * 10 div tmpSearchParameters.Directories.Count, 100, ScanDirectoriesMsg );
495 tmpDir := tmpSearchParameters.Directories[i];
496 // LogEvent(LogDebug, 'TGlobalSearchForm.Search in dir: ' + tmpDir);
497 if StrEndsWith(tmpDir, '...') then
498 begin
499 tmpDir := StrLeftWithout(tmpDir, 3 );
500 ListFilesInDirectoryRecursiveWithTermination(
501 tmpDir,
502 '*.inf;*.hlp',
503 true,
504 Files,
505 ThreadManager.StopRequested,
506 true ); // check termination
507 end
508 else
509 begin
510 ListFilesInDirectory( tmpDir, '*.inf;*.hlp', true, Files);
511 end;
512 end;
513
514 for FileIndex := 0 to Files.Count - 1 do
515 begin
516 if ThreadManager.StopRequested then
517 begin
518 break;
519 end;
520
521 Filename := Files[FileIndex];
522
523 ThreadManager.UpdateProgress( 10 + FileIndex * 95 div Files.Count,
524 100,
525 SearchingFileMsg
526 + Filename
527 + ' ('
528 + IntToStr( FileIndex + 1 )
529 + OfMsg
530 + IntToStr( Files.Count )
531 + ')...' );
532
533 try
534 HelpFile := THelpFile.Create( FileName );
535 MatchingTopics.Clear;
536 SearchHelpFile( HelpFile,
537 Query,
538 MatchingTopics,
539 nil // don't care about words matched
540 );
541
542 if MatchingTopics.Count > 0 then
543 begin
544 // Create a searchresult object to send back to main thread.
545 SearchResult := TSearchResult.Create;
546 SearchResult.Filename := HelpFile.Filename;
547 SearchResult.FileTitle := HelpFile.Title;
548
549 SearchResult.MatchingTopics.Assign( MatchingTopics );
550
551 SearchResult.MatchingTopics.Sort( TopicRelevanceCompare );
552 ThreadManager.SendData( '', SearchResult );
553 end;
554
555 HelpFile.Destroy;
556
557 except
558 on E: EHelpFileException do
559 begin
560 ; // ignore exceptions
561 end;
562
563 on E: EWindowsHelpFormatException do
564 begin
565 ; // ignore Windows help files
566 end;
567 end;
568
569 end;
570 ThreadManager.UpdateProgress( 100, 100, DoneMsg );
571 Files.Destroy;
572
573 Query.Destroy;
574
575 tmpSearchParameters.Directories.Destroy;
576 tmpSearchParameters.Destroy;
577
578 Result := nil;
579End;
580
581Procedure TGlobalSearchForm.ClearResults;
582var
583 FileIndex: longint;
584begin
585 for FileIndex := 0 to ResultsOutline.ChildCount - 1 do
586 ResultsOutline.Children[ FileIndex ].Data.Free;
587 ResultsOutline.Clear;
588 ViewTopicButton.Enabled := false;
589end;
590
591Procedure TGlobalSearchForm.SearchButtonOnClick (Sender: TObject);
592begin
593 DoSearch;
594end;
595
596Procedure TGlobalSearchForm.DoSearch;
597var
598 tmpSelectedDirectories : TStringList;
599 i : integer;
600 tmpSearchText: string;
601
602 Query: TTextSearchQuery;
603 SearchParameters: TSearchParameters;
604Begin
605 // LogEvent(LogDebug, 'DoSearch');
606
607 if ThreadManager.IsRunning then
608 begin
609 ThreadManager.Stop;
610 exit;
611 end;
612
613 tmpSearchText := trim( SearchTextEdit.Text );
614 if tmpSearchText = '' then
615 exit;
616
617 // LogEvent(LogDebug, 'DoSearch: ' + tmpSearchText);
618 try
619 Query := TTextSearchQuery.Create(tmpSearchText);
620 except
621 on e: ESearchSyntaxError do
622 begin
623 DoErrorDlg( SearchErrorTitle,
624 SearchError
625 + e.Message );
626 exit;
627 end;
628 end;
629
630 ClearResults;
631
632 SearchParameters := TSearchParameters.Create;
633
634 SearchParameters.Query := Query;
635
636 // now the directories to search in
637 SearchParameters.Directories := TStringList.Create;
638
639 tmpSelectedDirectories := TStringList.Create;
640 GetSelectedDirectories(tmpSelectedDirectories);
641
642 LogEvent(LogDebug, 'DoSearch: tmpSelectedDirectories.Count ' + IntToStr(tmpSelectedDirectories.Count));
643
644 // clear the list and add only the selected ones
645 for i := 0 to tmpSelectedDirectories.Count - 1 do
646 begin
647 if tmpSelectedDirectories.Objects[i] = nil then
648 begin
649 SearchParameters.Directories.add(tmpSelectedDirectories[i]);
650 end;
651 end;
652 tmpSelectedDirectories.Destroy;
653
654 ThreadManager.StartJob( Search, SearchParameters );
655 SearchButton.Caption := StopCaption;
656 ProgressBar.Show;
657
658 LED.LedCondition := true;
659 LEDTimer.Start;
660End;
661
662Procedure TGlobalSearchForm.GlobalSearchFormOnShow (Sender: TObject);
663Begin
664 // make search button default
665 SearchButton.Focus;
666 SearchTextEdit.Focus;
667 SetProgressLabel( '' );
668 PostMsg( Handle, WM_OPENED, 0, 0 );
669 SearchButton.Caption := SearchCaption;
670 ProgressBar.Hide;
671 ViewTopicButton.Enabled := false;
672End;
673
674Procedure TGlobalSearchForm.OnThreadData( S: string; Data: TObject );
675var
676 SearchResult: TSearchResult;
677begin
678 SearchResult := Data as TSearchResult;
679 OnMatchFound( SearchResult );
680 SearchResult.Destroy;
681end;
682
683Procedure TGlobalSearchForm.OnMatchFound( SearchResult: TSearchResult );
684var
685 Topic: TTopic;
686 HelpFileInfo: THelpFileInfo;
687 FileNode: TNode;
688 TopicIndex: longint;
689begin
690 ViewTopicButton.Enabled := true;
691
692 HelpFileInfo := THelpFileInfo.Create;
693 HelpFileInfo.FileName := SearchResult.FileName;
694 FileNode := ResultsOutline.AddChild( SearchResult.FileTitle
695 + ' ('
696 + SearchResult.FileName
697 + ')',
698 HelpFileInfo );
699 for TopicIndex := 0 to SearchResult.MatchingTopics.Count - 1 do
700 begin
701 Topic := SearchResult.MatchingTopics[ TopicIndex ];
702 FileNode.AddChild( Topic.Title,
703 TObject( Topic.Index ) );
704 end;
705end;
706
707Procedure TGlobalSearchForm.WMOpened( Var Msg: TMessage );
708begin
709 SearchTextLabel.XAlign := xaLeft;
710 SearchTextLabel.YAlign := yaTop;
711
712 SearchTextEdit.XStretch := xsFrame;
713 SearchTextEdit.YAlign := yaTop;
714 SearchTextEdit.Focus;
715
716 SearchButton.XAlign := xaRight;
717 SearchButton.YAlign := yaTop;
718
719 SearchTextLabel1.XAlign := xaLeft;
720 SearchTextLabel1.YAlign := yaTop;
721
722 SearchLocationComboBox.XStretch := xsFrame;
723 SearchLocationComboBox.YAlign := yaTop;
724
725 SelectDrivesButton.XAlign := xaRight;
726 SelectDrivesButton.YAlign := yaTop;
727
728 Bevel.XStretch := xsFrame;
729 Bevel.YAlign := yaTop;
730
731 LED.XAlign := xaRight;
732 LED.YAlign := yaTop;
733
734 ResultsLabel.XAlign := xaLeft;
735 ResultsLabel.YAlign := yaTop;
736
737 ProgressLabel.XStretch := xsFrame;
738 ProgressLabel.YAlign := yaTop;
739
740 ResultsOutline.XStretch := xsFrame;
741 ResultsOutline.YStretch := ysFrame;
742
743 ProgressBar.XStretch := xsFrame;
744 ProgressBar.YAlign := yaBottom;
745
746end;
747
748procedure EnsureGlobalSearchFormLoaded;
749begin
750 if GlobalSearchForm = nil then
751 GlobalSearchForm := TGlobalSearchForm.Create( nil );
752end;
753
754Initialization
755 RegisterClasses ([TGlobalSearchForm, TEdit, TLabel,
756 TProgressBar, TButton, TOutline2, TComboBox, TBevel, TLed, TTimer]);
757 RegisterUpdateProcForLanguages( EnsureGlobalSearchFormLoaded );
758End.
Note: See TracBrowser for help on using the repository browser.