lazarus/examples/helphtml/unit1.pas
dmitry e908d5dfe6 helphtml: fix captions for darwin hotkeys
git-svn-id: trunk@26766 -
2010-07-21 20:22:40 +00:00

103 lines
3.1 KiB
ObjectPascal

{
***************************************************************************
* *
* 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 <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
Abstract:
This example demonstrates the html help components.
THTMLHelpDatabase is a database - it contains the mapping from Keyword to
page.
THTMLBrowserHelpViewer is a viewer for HTML pages. It simply starts a
browser.
How was the example created:
Put a THTMLHelpDatabase on a form.
Set AutoRegister to true.
Set KeywordPrefix to 'HTML/'
Set BaseURL to 'file://html/'
Put a THTMLBrowserHelpViewer on the form.
Set AutoRegister to true.
Put a TEdit on a form.
Set HelpType to htKeyword
Set HelpKeyword to 'HTML/edit1.html'
Run the program.
Focus the edit field and press F1. A browser will be started to show
the page 'html/edit1.html'.
}
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
LazHelpHTML, StdCtrls, Buttons, HelpIntfs;
type
{ TForm1 }
TForm1 = class(TForm)
HelpButton: TButton;
Edit1: TEdit;
Edit2: TEdit;
HTMLBrowserHelpViewer1: THTMLBrowserHelpViewer;
HTMLHelpDatabase1: THTMLHelpDatabase;
procedure FormCreate(Sender: TObject);
procedure HelpButtonClick(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
{ TForm1 }
procedure TForm1.HelpButtonClick(Sender: TObject);
begin
// This demonstrates how to show a help item manually:
ShowHelpOrErrorForKeyword('','HTML/index.html');
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
HTMLHelpDatabase1.BaseURL:='file://html';
{$ifdef darwin}
Edit1.Text:='Edit1 - Press '+#$e2#$8c#$98'?'+' for help';
Edit2.Text:='Edit2 - Press '+#$e2#$8c#$98'?'+' for help';
{$endif}
end;
initialization
{$I unit1.lrs}
end.