1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
unit u_main;
{$mode objfpc}
interface
uses
Classes, SysUtils, Dos,
fpg_main, fpg_base,
fpg_form, fpg_button, fpg_label, fpg_dialogs, fpg_combobox;
type
TF_MainForm= class(TfpgForm)
private
L_SelectMap: Tfpglabel;
Cb_SelectMap: TfpgComboBox;
Bt_SelectFile: TfpgButton;
Bt_Exit: TfpgButton;
procedure Bt_SelectFileClick(Sender: TObject);
procedure Bt_ExitClick(Sender: TObject);
public
constructor Create(AOwner: TComponent); override;
end;
var
F_MainForm: TF_MainForm;
implementation
uses
u_Parsettf;
var
MapList: TStringList;
procedure TF_MainForm.Bt_SelectFileClick(Sender: TObject);
var
FileDlg: TfpgFileDialog;
Fichier,Extension,FontType: string;
begin
FileDlg:= TfpgFileDialog.Create(nil);
//FileDlg.Filter:= 'True type fonts (*.ttf;*.otf)|*.ttf;*.otf|Type1 fonts (*.pfa;*.pfb)|*.pfa;*.pfb';
FileDlg.Filter:= 'True type fonts (*.ttf;*.otf)|*.ttf;*.otf';
FileDlg.FontDesc:= 'bitstream vera sans-9';
{$ifdef linux}
FileDlg.InitialDir:= GetEnv('GS_LIB');
{$endif}
{$ifdef win32}
//FileDlg.InitialDir:= '/WINDOWS/Fonts';
{$endif}
try
if FileDlg.RunOpenFile
then
begin
Fichier:= ExtractFileName(FileDlg.FileName);
//Extension:= Lowercase(Copy(Fichier,Length(Fichier)-3,3));
//if (Extension= 'ttf') or (Extension= 'otf')
//then
// FontType:= 'TrueType'
//else
// if Extension= 'pfb'
// then
// FontType:= 'Type1';
Parser:= T_Parser.Create(nil);
Parser.MakeFont(Fichier,Cb_SelectMap.Text,True);
end;
finally
FileDlg.Free;
end;
end;
procedure TF_MainForm.Bt_ExitClick(Sender: TObject);
begin
Parser.Free;
MapList.Free;
Close;
end;
constructor TF_MainForm.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Name := 'F_MainForm';
WindowTitle:= 'TTF parser';
SetPosition(0, 0, 400, 300);
WindowPosition:= wpScreenCenter;
Sizeable:= False;
MapList:= TStringList.Create;
with MapList do
begin
Add('cp874');
Add('cp1250');
Add('cp1251');
Add('cp1252');
Add('cp1253');
Add('cp1254');
Add('cp1255');
Add('cp1257');
Add('cp1258');
Add('iso-8859-1');
Add('iso-8859-2');
Add('iso-8859-4');
Add('iso-8859-5');
Add('iso-8859-7');
Add('iso-8859-9');
Add('iso-8859-11');
Add('iso-8859-15');
Add('iso-8859-16');
Add('koi8-r');
Add('koi8-u');
end;
L_SelectMap:= CreateLabel(Self,150,30,'Select mapping',100,20,taCenter);
Cb_SelectMap:= CreateComboBox(Self,150,50,100,MapList,20);
Cb_SelectMap.FocusItem:= 3;
Bt_SelectFile:= CreateButton(Self,150,200,100,'Select file',@Bt_SelectFileClick,'');
Bt_Exit:= CreateButton(Self,160,250,80,'Exit',@Bt_ExitClick,'');
RepCourant:= ExtractFilePath(Paramstr(0));
end;
end.
|