{ Copyright (C) <2005> lazchmhelp.pas This source is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. A copy of the GNU General Public License is available on the World Wide Web at . You can also obtain it by writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. } unit LazChmHelp; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, LazHelpIntf, HelpIntfs, LazConfigStorage, PropEdits, LHelpControl, Controls; type { TChmHelpViewer } TChmHelpViewer = class(THelpViewer) private fHelpExe: String; fHelpLabel: String; fHelpConnection: TLHelpConnection; fChmsFilePath: String; function GetHelpEXE: String; protected function GetFileNameAndURL(RawUrl: String; out FileName: String; out URL: String): Boolean; procedure SetHelpEXE(AValue: String); procedure SetHelpLabel(AValue: String); function CheckBuildLHelp: Integer; // modal result function GetLazBuildEXE(out ALazBuild: String): Boolean; function PassTheBuck(Node: THelpNode; var ErrMsg: string): TShowHelpResult; public constructor Create(TheOwner: TComponent); override; destructor Destroy; override; function SupportsTableOfContents: boolean; override; procedure ShowTableOfContents(Node: THelpNode); override; function SupportsMimeType(const AMimeType: string): boolean; override; function ShowNode(Node: THelpNode; var ErrMsg: string): TShowHelpResult; override; //procedure Hide; virtual; procedure Assign(Source: TPersistent); override; procedure Load(Storage: TConfigStorage); override; procedure Save(Storage: TConfigStorage); override; function GetLocalizedName: string; override; published property HelpEXE: String read GetHelpEXE write SetHelpEXE; property HelpLabel: String read fHelpLabel write SetHelpLabel; property HelpFilesPath: String read fChmsFilePath write fChmsFilePath; end; procedure Register; implementation uses Process, MacroIntf, InterfaceBase, Forms, Dialogs, HelpFPDoc, IDEMsgIntf; function FixSlash(AStr: String): String; var WrongSlash: String; FP: Integer; begin Result := AStr; case PathDelim of '/': WrongSlash := '\'; '\': WrongSlash := '/'; end; // fix wrong delim repeat FP := Pos(WrongSlash, Result); if FP > 0 then Result[FP] := PathDelim; until FP = 0; // fix double path delim repeat FP := Pos(PathDelim+PathDelim, Result); if FP <> 0 then Delete(Result, FP, 1); until FP = 0; end; { TChmHelpViewer } function TChmHelpViewer.GetHelpEXE: String; begin if fHelpExe <> '' then Exit(fHelpExe); Result := '$(LazarusDir)/components/chmhelp/lhelp/lhelp$(ExeExt)'; if not IDEMacros.SubstituteMacros(Result) then Exit(''); Result := FixSlash(Result); end; function TChmHelpViewer.GetFileNameAndURL(RawUrl:String; out FileName: String; out URL: String ): Boolean; var fPos: Integer; begin Result := False; fPos := Pos(':/', RawUrl); if fPos = 0 then exit; FileName := Copy(RawUrl, 1, fPos-1); URL := Copy(RawUrl, fPos+2, Length(RawUrl)-(fPos-2)); Result := True; end; procedure TChmHelpViewer.SetHelpEXE(AValue: String); begin fHelpExe := AValue; end; procedure TChmHelpViewer.SetHelpLabel(AValue: String); begin fHelpLabel := AValue; end; function TChmHelpViewer.CheckBuildLHelp: Integer; var Proc: TProcess; Lazbuild: String; LHelpProject: String; WS: String; LastWasEOL: Boolean; EOLP: Integer; BufC: Char; Buffer: array[0..511] of char; BufP: Integer; begin Result := mrCancel; if FileExistsUTF8(HelpExe) = True then Exit(mrOK); if not GetLazBuildEXE(Lazbuild) then Exit; LHelpProject := FixSlash('$(LazarusDir)/components/chmhelp/lhelp/lhelp.lpi'); if not (IDEMacros.SubstituteMacros(LHelpProject) and FileExistsUTF8(LHelpProject)) then Exit; WS := ' --ws='+LCLPlatformDirNames[WidgetSet.LCLPlatform]+' '; //Result := MessageDlg('The help viewer is not compiled yet. Try to compile it now?', mtConfirmation, mbYesNo ,0); //if Result <> mrYes then // Exit; Proc := TProcess.Create(nil); Proc.CommandLine := Lazbuild + WS + LHelpProject; Proc.Options := [poUsePipes, poStderrToOutPut]; Proc.Execute; BufP := 0; LastWasEOL:= False; IDEMessagesWindow.BeginBlock; IDEMessagesWindow.AddMsg('- Building lhelp -','',0); LHelpProject := FixSlash('$(LazarusDir)/components/chmhelp/lhelp/'); IDEMacros.SubstituteMacros(LHelpProject); while Proc.Running do begin while Proc.Output.NumBytesAvailable > 0 do begin BufC := Char(Proc.Output.ReadByte); if LastWasEOL then begin if not(BufC in [#13, #10]) then begin IDEMessagesWindow.AddMsg(PChar(@Buffer[0]),LHelpProject,1); Buffer[0] := BufC; BufP := 1; LastWasEOL:=False; end; Continue; end; if BufC in [#13, #10] then begin LastWasEOL:=True; Buffer[BufP] := #0; Inc(BufP); end else begin Buffer[BufP] := BufC; Inc(BufP); end; end; Sleep(20); Application.ProcessMessages; end; if BufP > 0 then IDEMessagesWindow.AddMsg(PChar(@Buffer[0]),LHelpProject,0); if Proc.ExitStatus = 0 then Result := mrOK; Proc.Free; IDEMessagesWindow.EndBlock; if Result = mrOK then end; function TChmHelpViewer.GetLazBuildEXE(out ALazBuild: String): Boolean; var LazBuildMacro: String; begin Result := False; LazBuildMacro:= '$(LazarusDir)/$MakeExe(lazbuild)'; Result := IDEMacros.SubstituteMacros(LazBuildMacro) and FileExistsUTF8(LazBuildMacro); if Result then ALazBuild := FixSlash(LazBuildMacro); end; function TChmHelpViewer.PassTheBuck(Node: THelpNode; var ErrMsg: string ): TShowHelpResult; var I: Integer; Viewer: THelpViewer; begin Result := shrViewerNotFound; ErrMsg := 'Attempted to find viewer for "'+ Node.URL + '" failed.'; for I := 0 to HelpViewers.Count-1 do begin Viewer := HelpViewers.Items[I]; if (Viewer.ClassType <> ClassType) and Viewer.SupportsMimeType('text/html') then Exit(Viewer.ShowNode(Node, ErrMsg)); end; end; constructor TChmHelpViewer.Create(TheOwner: TComponent); var i: Integer; DB: TFPDocHTMLHelpDatabase; BaseURL: THelpBaseURLObject; begin inherited Create(TheOwner); fHelpConnection := TLHelpConnection.Create; fHelpConnection.ProcessWhileWaiting:=@Application.ProcessMessages; AddSupportedMimeType('text/html'); for i := 0 to HelpDatabases.Count-1 do begin DB := TFPDocHTMLHelpDatabase(HelpDatabases.Items[i]); BaseURL := THelpBaseURLObject(DB.BasePathObject); if (DB.ID = 'RTLUnits') and (BaseURL.BaseURL = '') then BaseURL.BaseURL := 'rtl.chm://' else if (DB.ID = 'FCLUnits') and (BaseURL.BaseURL = '') then BaseURL.BaseURL := 'fcl.chm://' else if (DB.ID = 'LCLUnits') and (BaseURL.BaseURL = '') then BaseURL.BaseURL := 'lcl.chm://'; end; end; destructor TChmHelpViewer.Destroy; begin fHelpConnection.Free; inherited Destroy; end; function TChmHelpViewer.SupportsTableOfContents: boolean; begin Result:=True; end; procedure TChmHelpViewer.ShowTableOfContents(Node: THelpNode); begin // inherited ShowTableOfContents(Node); end; function TChmHelpViewer.SupportsMimeType(const AMimeType: string): boolean; begin REsult := inherited; end; function TChmHelpViewer.ShowNode(Node: THelpNode; var ErrMsg: string ): TShowHelpResult; var FileName: String; Url: String; Res: TLHelpResponse; DocsDir: String; begin if Pos('file://', Node.URL) = 1 then begin Result := PassTheBuck(Node, ErrMsg); Exit; end; Result:=shrNone; if CheckBuildLHelp <> mrOK then begin ErrMsg := 'The program "' + HelpEXE + '" doesn''t seem to exist'+LineEnding+ 'or could not be built!'; Exit(shrViewerNotFound); end; if not GetFileNameAndURL(Node.Url, FileName, Url) then begin ErrMsg := 'Couldn''t read the file/URL correctly'; Exit(shrDatabaseNotFound); end; if HelpFilesPath = '' then begin DocsDir := FixSlash('$(LazarusDir)/docs/html/'); IDEMacros.SubstituteMacros(DocsDir); if not FileExistsUTF8(DocsDir+FileName) then begin Result := shrDatabaseNotFound; ErrMsg := FileName +' not found. Please put the chm help files in '+ LineEnding +DocsDir+ LineEnding +' or set the path to lcl.chm rtl.chm fcl.chm with "HelpFilesPath" in ' +' Environment Options -> Help -> Help Options ->'+LineEnding +' under HelpViewers - CHMHelpViewer'; Exit; end; end else DocsDir := fChmsFilePath; FileName := DocsDir+FileName; fHelpConnection.StartHelpServer(fHelpLabel, HelpExe); Res := fHelpConnection.OpenURL(FileName, Url); case Res of srSuccess: Result := shrSuccess; srNoAnswer: Result := shrSuccess; else Result := shrNone; ErrMsg := 'Unknown error showing '+URL; end; //WriteLn('LOADING URL = ', Node.URL); end; procedure TChmHelpViewer.Assign(Source: TPersistent); var Viewer: TChmHelpViewer; begin if Source is TChmHelpViewer then begin Viewer:=TChmHelpViewer(Source); HelpEXE:=Viewer.HelpEXE; HelpLabel:=Viewer.HelpLabel; HelpFilesPath:=Viewer.HelpFilesPath; end; inherited Assign(Source); end; procedure TChmHelpViewer.Load(Storage: TConfigStorage); begin HelpEXE:=Storage.GetValue('CHMHelp/Exe',''); HelpLabel:=Storage.GetValue('CHMHelp/Name','lazhelp'); HelpFilesPath := Storage.GetValue('CHMHelp/FilesPath',''); end; procedure TChmHelpViewer.Save(Storage: TConfigStorage); begin Storage.SetDeleteValue('CHMHelp/Exe',HelpEXE,''); Storage.SetDeleteValue('CHMHelp/Name',HelpLabel,'lazhelp'); Storage.SetDeleteValue('CHMHelp/FilesPath',HelpFilesPath,''); end; function TChmHelpViewer.GetLocalizedName: string; begin Result := 'CHM Help Viewer'; end; procedure Register; var ChmHelp: TChmHelpViewer; begin ChmHelp := TChmHelpViewer.Create(nil); HelpViewers.RegisterViewer(ChmHelp); end; initialization RegisterPropertyEditor(TypeInfo(AnsiString), TCHmHelpViewer,'HelpEXE',TFileNamePropertyEditor); RegisterPropertyEditor(TypeInfo(AnsiString), TCHmHelpViewer,'HelpFilesPath',TFileNamePropertyEditor); end.