source: trunk/NewView/GlobalSearchForm.pas@ 191

Last change on this file since 191 was 191, checked in by RBRi, 18 years ago

DriveInfoUnit removed

  • Property svn:eol-style set to native
File size: 19.6 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;
111 const Apply: boolean );
112
113 SearchCaption: string;
114 StopCaption: string;
115 NoResultsMsg: string;
116 ScanDirectoriesMsg: string;
117 SearchingFileMsg: string;
118 OfMsg: string;
119 DoneMsg: string;
120 SearchErrorTitle: string;
121 SearchError: string;
122
123 StandardHelpPathsLocation: string;
124 FixedDrivesLocation: string;
125 SelectedHelpPathsLocation: string;
126 CustomPathsLocation: string;
127
128 public
129 // set by caller
130 ViewTopicCallback: TViewTopicCallback;
131 Procedure DoSearch;
132 End;
133
134Var
135 GlobalSearchForm: TGlobalSearchForm;
136
137procedure EnsureGlobalSearchFormLoaded;
138
139Implementation
140
141uses
142 SysUtils,
143 DebugUnit,
144 ACLDialogs,
145 ControlsUtility,
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 Dir: string;
470
471Begin
472 tmpSearchParameters := Parameters as TSearchParameters;
473
474 Query := tmpSearchParameters.Query;
475 Files := TStringList.Create;
476
477 MatchingTopics := TList.Create;
478 LogEvent(LogParse, 'Creating file list');
479
480 // make sure we ignore duplicate files...
481 Files.Sorted := true;
482 Files.CaseSensitive := false;
483 Files.Duplicates := dupIgnore;
484
485 for i := 0 to tmpSearchParameters.Directories.Count - 1 do
486 begin
487 if ThreadManager.StopRequested then
488 begin
489 break;
490 end;
491
492 ThreadManager.UpdateProgress( i * 10 div tmpSearchParameters.Directories.Count,
493 100,
494 ScanDirectoriesMsg );
495 Dir := tmpSearchParameters.Directories[ i ];
496 if StrEndsWith('...', Dir) then
497 begin
498 Dir := StrLeftWithout( Dir, 3 );
499 ListFilesInDirectoryRecursiveWithTermination(
500 Dir,
501 '*.inf;*.hlp',
502 true,
503 Files,
504 ThreadManager.StopRequested,
505 true ); // check termination
506 end
507 else
508 begin
509 ListFilesInDirectory( Dir, '*.inf;*.hlp', true, Files);
510 end;
511 end;
512
513 for FileIndex := 0 to Files.Count - 1 do
514 begin
515 if ThreadManager.StopRequested then
516 begin
517 break;
518 end;
519
520 Filename := Files[FileIndex];
521
522 ThreadManager.UpdateProgress( 10 + FileIndex * 95 div Files.Count,
523 100,
524 SearchingFileMsg
525 + Filename
526 + ' ('
527 + IntToStr( FileIndex + 1 )
528 + OfMsg
529 + IntToStr( Files.Count )
530 + ')...' );
531
532 try
533 HelpFile := THelpFile.Create( FileName );
534 MatchingTopics.Clear;
535 SearchHelpFile( HelpFile,
536 Query,
537 MatchingTopics,
538 nil // don't care about words matched
539 );
540
541 if MatchingTopics.Count > 0 then
542 begin
543 // Create a searchresult object to send back to main thread.
544 SearchResult := TSearchResult.Create;
545 SearchResult.Filename := HelpFile.Filename;
546 SearchResult.FileTitle := HelpFile.Title;
547
548 SearchResult.MatchingTopics.Assign( MatchingTopics );
549
550 SearchResult.MatchingTopics.Sort( TopicRelevanceCompare );
551 ThreadManager.SendData( '', SearchResult );
552 end;
553
554 HelpFile.Destroy;
555
556 except
557 on E: EHelpFileException do
558 begin
559 ; // ignore exceptions
560 end;
561
562 on E: EWindowsHelpFormatException do
563 begin
564 ; // ignore Windows help files
565 end;
566 end;
567
568 end;
569 ThreadManager.UpdateProgress( 100, 100, DoneMsg );
570 Files.Destroy;
571
572 Query.Destroy;
573
574 tmpSearchParameters.Directories.Destroy;
575 tmpSearchParameters.Destroy;
576
577 Result := nil;
578End;
579
580Procedure TGlobalSearchForm.ClearResults;
581var
582 FileIndex: longint;
583begin
584 for FileIndex := 0 to ResultsOutline.ChildCount - 1 do
585 ResultsOutline.Children[ FileIndex ].Data.Free;
586 ResultsOutline.Clear;
587 ViewTopicButton.Enabled := false;
588end;
589
590Procedure TGlobalSearchForm.SearchButtonOnClick (Sender: TObject);
591begin
592 DoSearch;
593end;
594
595Procedure TGlobalSearchForm.DoSearch;
596var
597 tmpSelectedDirectories : TStringList;
598 i : integer;
599
600 SearchText: string;
601 Query: TTextSearchQuery;
602 SearchParameters: TSearchParameters;
603Begin
604 if ThreadManager.IsRunning then
605 begin
606 ThreadManager.Stop;
607 exit;
608 end;
609
610 SearchText := trim( SearchTextEdit.Text );
611 if SearchText = '' then
612 exit;
613
614 try
615 Query := TTextSearchQuery.Create(SearchText);
616 except
617 on e: ESearchSyntaxError do
618 begin
619 DoErrorDlg( SearchErrorTitle,
620 SearchError
621 + e.Message );
622 exit;
623 end;
624 end;
625
626 ClearResults;
627
628 SearchParameters := TSearchParameters.Create;
629
630 SearchParameters.Query := Query;
631
632 // now the directories to search in
633 SearchParameters.Directories := TStringList.Create;
634
635 tmpSelectedDirectories := TStringList.Create;
636 GetSelectedDirectories(tmpSelectedDirectories);
637
638 // clear the list and add only the selected ones
639 for i := 0 to tmpSelectedDirectories.Count - 1 do
640 begin
641 if tmpSelectedDirectories.Objects[i] = nil then
642 begin
643 SearchParameters.Directories.add(tmpSelectedDirectories[i]);
644 end;
645 end;
646 tmpSelectedDirectories.Destroy;
647
648 ThreadManager.StartJob( Search, SearchParameters );
649 SearchButton.Caption := StopCaption;
650 ProgressBar.Show;
651
652 LED.LedCondition := true;
653 LEDTimer.Start;
654End;
655
656Procedure TGlobalSearchForm.GlobalSearchFormOnShow (Sender: TObject);
657Begin
658 // make search button default
659 SearchButton.Focus;
660 SearchTextEdit.Focus;
661 SetProgressLabel( '' );
662 PostMsg( Handle, WM_OPENED, 0, 0 );
663 SearchButton.Caption := SearchCaption;
664 ProgressBar.Hide;
665 ViewTopicButton.Enabled := false;
666End;
667
668Procedure TGlobalSearchForm.OnThreadData( S: string; Data: TObject );
669var
670 SearchResult: TSearchResult;
671begin
672 SearchResult := Data as TSearchResult;
673 OnMatchFound( SearchResult );
674 SearchResult.Destroy;
675end;
676
677Procedure TGlobalSearchForm.OnMatchFound( SearchResult: TSearchResult );
678var
679 Topic: TTopic;
680 HelpFileInfo: THelpFileInfo;
681 FileNode: TNode;
682 TopicIndex: longint;
683begin
684 ViewTopicButton.Enabled := true;
685
686 HelpFileInfo := THelpFileInfo.Create;
687 HelpFileInfo.FileName := SearchResult.FileName;
688 FileNode := ResultsOutline.AddChild( SearchResult.FileTitle
689 + ' ('
690 + SearchResult.FileName
691 + ')',
692 HelpFileInfo );
693 for TopicIndex := 0 to SearchResult.MatchingTopics.Count - 1 do
694 begin
695 Topic := SearchResult.MatchingTopics[ TopicIndex ];
696 FileNode.AddChild( Topic.Title,
697 TObject( Topic.Index ) );
698 end;
699end;
700
701Procedure TGlobalSearchForm.WMOpened( Var Msg: TMessage );
702begin
703 SearchTextLabel.XAlign := xaLeft;
704 SearchTextLabel.YAlign := yaTop;
705
706 SearchTextEdit.XStretch := xsFrame;
707 SearchTextEdit.YAlign := yaTop;
708 SearchTextEdit.Focus;
709
710 SearchButton.XAlign := xaRight;
711 SearchButton.YAlign := yaTop;
712
713 SearchTextLabel1.XAlign := xaLeft;
714 SearchTextLabel1.YAlign := yaTop;
715
716 SearchLocationComboBox.XStretch := xsFrame;
717 SearchLocationComboBox.YAlign := yaTop;
718
719 SelectDrivesButton.XAlign := xaRight;
720 SelectDrivesButton.YAlign := yaTop;
721
722 Bevel.XStretch := xsFrame;
723 Bevel.YAlign := yaTop;
724
725 LED.XAlign := xaRight;
726 LED.YAlign := yaTop;
727
728 ResultsLabel.XAlign := xaLeft;
729 ResultsLabel.YAlign := yaTop;
730
731 ProgressLabel.XStretch := xsFrame;
732 ProgressLabel.YAlign := yaTop;
733
734 ResultsOutline.XStretch := xsFrame;
735 ResultsOutline.YStretch := ysFrame;
736
737 ProgressBar.XStretch := xsFrame;
738 ProgressBar.YAlign := yaBottom;
739
740end;
741
742procedure EnsureGlobalSearchFormLoaded;
743begin
744 if GlobalSearchForm = nil then
745 GlobalSearchForm := TGlobalSearchForm.Create( nil );
746end;
747
748Initialization
749 RegisterClasses ([TGlobalSearchForm, TEdit, TLabel,
750 TProgressBar, TButton, TOutline2, TComboBox, TBevel, TLed, TTimer]);
751 RegisterUpdateProcForLanguages( EnsureGlobalSearchFormLoaded );
752End.
Note: See TracBrowser for help on using the repository browser.