これは、 Synopsedelphiオープンソースによるハイフネーションライブラリです。
デモはコンソールアプリケーションです。GUIアプリケーションでの使い方がわかりません。
以下は私のテストですが、動作しません。ハイフン(または区切り文字)付きの単語は表示されません。libはここからダウンロードできます:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, hyphen, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
procedure testhyphenator;
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
{ TForm1 }
procedure TForm1.testhyphenator;
var
h: THyphen;
s: string;
F, L: Integer;
begin
s := 'hyph_en_US.txt'; //this is from the folder, is that correct to call?
if FileExists(s) then
begin
F := FileOpen(s, fmOpenRead);
L := FileSeek(F, 0, soFromEnd);
if L > 0 then
begin
SetLength(s, L);
FileSeek(F, 0, soFromBeginning);
FileRead(F, s[1], L);
end;
FileClose(F);
end;
h := THyphen.Create(s);
h.Execute('pronunciation'); //is this correct?
ShowMessage(h.filllist); //not display hyphenated word
end;
ハイフンでつながれた単語は表示されません。デモでは、コンストラクターについても混乱しています。
H := THyphen.create('ISO8859-1'#10'f1f'#10'if3fa/ff=f,2,2'#10'tenerif5fa');
writeln('"',H.Execute('SchiffahrT'),'"'); writeln(H.FillList);
...
作者はobjファイルも同封しています。それを単一のexeにコンパイルしたい場合、それを行う方法は?
正しく使用する方法を理解するのを手伝ってもらえますか?
どうもありがとう。