-
Notifications
You must be signed in to change notification settings - Fork 13
/
SCLocEngine.pas
477 lines (404 loc) · 11.2 KB
/
SCLocEngine.pas
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
{
This file is part of SuperCopier.
SuperCopier 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.
SuperCopier 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.
}
unit SCLocEngine;
{$MODE Delphi}
interface
uses
Windows,Messages,Classes,Forms,Controls,Graphics,
SCCommon,SCPopupButton,SCWin32,IniFiles, stdctrls, menus, dialogs, buttons;
type
TLocEngine=class
private
LangIni:TMemIniFile;
Strings:TStringList;
procedure ReadHeader;
procedure WriteHeader;
procedure ReadStrings;
function GetComponentText(Component:TComponent):WideString;
procedure SetComponentText(Component:TComponent;Text:WideString);
public
IsUTF8:Boolean;
UIFont:String;
constructor Create;
destructor Destroy;override;
procedure LoadLanguageFile(LangFile:WideString);
procedure TranslateForm(Form:TForm);
procedure TranslateString(Id:Integer;var S:WideString);
procedure AddForm(Form:TForm);
procedure UpdateFile;
end;
const
LANG_SUBDIR:WideString='.\Languages\';
LANG_EXT:WideString='.lng';
HEADER_SECTION='-Header-'; // le '-' est interdit dans les noms de form
STRINGS_SECTION='-Strings-';
CAPTION_VALUE='-Caption-';
DEFAULT_LANGUAGE='English (default)';
TMP_LANGFILE_NAME='SC2Lang.lng';
DEFAULT_UI_FONT='MS Sans Serif';
var
LocEngine:TLocEngine=nil;
implementation
uses ComCtrls,SysUtils,TypInfo;
constructor TLocEngine.Create;
begin
LangIni:=nil;
Strings:=TStringList.Create;
end;
destructor TLocEngine.Destroy;
begin
Strings.Free;
LangIni.Free;
end;
procedure TLocEngine.LoadLanguageFile(LangFile:WideString);
var TmpLangFile:String;
begin
if Assigned(LangIni) then LangIni.Free;
TmpLangFile:=LangFile;
if WideString(TmpLangFile)<>LangFile then // le nom de fichier est-il passй 'sans pertes' en ansi?
begin
//HACK: TMemIniFile ne supporte pas unicode, je crйe donc une version temporaire
// du fichier de langues ne contenant que des caractиres ansi dans le nom
TmpLangFile:=SCWin32.GetTempPath+TMP_LANGFILE_NAME;
SCWin32.CopyFile(PWideChar(LangFile),PWideChar(WideString(TmpLangFile)),False);
end;
LangIni:=TMemIniFile.Create(TmpLangFile);
ReadHeader;
ReadStrings;
end;
procedure TLocEngine.ReadHeader;
begin
if not Assigned(LangIni) then exit;
IsUTF8:=LangIni.ReadBool(HEADER_SECTION,'IsUTF8',False);
UIFont:=LangIni.ReadString(HEADER_SECTION,'UIFont',DEFAULT_UI_FONT);
dbgln(UIFont);
end;
procedure TLocEngine.WriteHeader;
begin
if not Assigned(LangIni) then exit;
LangIni.WriteBool(HEADER_SECTION,'IsUTF8',IsUTF8);
end;
procedure TLocEngine.ReadStrings;
var i:Integer;
S:String;
begin
if not Assigned(LangIni) then exit;
Strings.Clear;
i:=1;
while LangIni.ValueExists(STRINGS_SECTION,IntToStr(I)) do
begin
S:=LangIni.ReadString(STRINGS_SECTION,IntToStr(I),'');
S:=StringReplace(S,'|',#13#10,[rfReplaceAll]);
if IsUTF8 then
Strings.Add(UTF8Decode(S))
else
Strings.Add(S);
Inc(i);
end;
end;
procedure TLocEngine.TranslateForm(Form:TForm);
var i:Integer;
Name,Text:WideString;
FormName:WideString;
begin
if not Assigned(LangIni) then exit;
FormName:=Form.ClassName;
// rйtrocompat anciens fichiers de langage
if not LangIni.SectionExists(FormName) and (Length(FormName)>0) and (FormName[1]='T') then
FormName:=Copy(FormName,2,Maxint);
if IsUTF8 then
Form.Caption:=UTF8Decode(LangIni.ReadString(FormName,CAPTION_VALUE,Form.Caption))
else
Form.Caption:=LangIni.ReadString(FormName,CAPTION_VALUE,Form.Caption);
Form.Font.Name:=UIFont;
for i:=0 to Form.ComponentCount-1 do
begin
Name:=Form.Components[i].Name;
Text:=LangIni.ReadString(FormName,Form.Components[i].Name,'');
if Text<>'' then
begin
if IsUTF8 then
SetComponentText(Form.Components[i],UTF8Decode(Text))
else
SetComponentText(Form.Components[i],Text);
end;
end;
end;
procedure TLocEngine.AddForm(Form:TForm);
var i:Integer;
Name,Text:WideString;
StrText:String;
begin
if not Assigned(LangIni) then exit;
if IsUTF8 then
LangIni.WriteString(Form.ClassName,CAPTION_VALUE,UTF8Encode(Form.Caption))
else
LangIni.WriteString(Form.ClassName,CAPTION_VALUE,Form.Caption);
for i:=0 to Form.ComponentCount-1 do
begin
Name:=Form.Components[i].Name;
Text:=GetComponentText(Form.Components[i]);
if Text<>'' then
begin
if IsUTF8 then
StrText:=UTF8Encode(Text)
else
StrText:=Text;
LangIni.WriteString(Form.ClassName,Name,StrText);
end;
end;
end;
procedure TLocEngine.UpdateFile;
begin
if not Assigned(LangIni) then exit;
WriteHeader;
LangIni.UpdateFile;
end;
procedure TLocEngine.TranslateString(Id:Integer;var S:WideString);
begin
if Id<=Strings.Count then S:=Strings[Id-1];
end;
function TLocEngine.GetComponentText(Component:TComponent):WideString;
function Get_Button:WideString;
begin
Result:=(Component as TButton).Caption;
end;
function Get_Label:WideString;
begin
Result:=(Component as TLabel).Caption;
end;
function Get_Edit:WideString;
begin
Result:=(Component as TEdit).Text;
end;
function Get_ComboBox:WideString;
begin
Result:=(Component as TComboBox).Items.CommaText;
end;
function Get_CheckBox:WideString;
begin
Result:=(Component as TCheckBox).Caption;
end;
function Get_ListView:WideString;
var i:Integer;
SL:TStringList;
begin
SL:=TStringList.Create;
try
with (Component as TListView) do
begin
SL.Clear;
// colonnes
for i:=0 to Columns.Count-1 do
SL.Add(Columns[i].Caption);
// items
for i:=0 to Items.Count-1 do
SL.Add(Items[i].Caption);
Result:=SL.CommaText;
end;
finally
SL.Free;
end;
end;
function Get_GroupBox:WideString;
begin
Result:=(Component as TGroupBox).Caption;
end;
function Get_TabSheet:WideString;
begin
Result:=(Component as TTabSheet).Caption;
end;
function Get_MenuItem:WideString;
begin
Result:=(Component as TMenuItem).Caption;
end;
function Get_OpenDialog:WideString;
begin
Result:=(Component as TOpenDialog).Filter;
end;
function Get_SpeedButton:WideString;
var SL:TStringList;
begin
SL:=TStringList.Create;
try
SL.Add((Component as TSpeedButton).Caption);
SL.Add((Component as TSpeedButton).Hint);
Result:=SL.CommaText;
finally
SL.Free;
end;
end;
function Get_SCPopupButton:WideString;
var SL:TStringList;
begin
SL:=TStringList.Create;
try
SL.Add((Component as TScPopupButton).Caption);
SL.Add((Component as TScPopupButton).Hint);
Result:=SL.CommaText;
finally
SL.Free;
end;
end;
function Get_RadioButton:WideString;
begin
Result:=(Component as TRadioButton).Caption;
end;
begin
Result:='';
if Component is TButton then
Result:=Get_Button
else if Component is TLabel then
Result:=Get_Label
else if Component is TEdit then
Result:=Get_Edit
else if Component is TComboBox then
Result:=Get_ComboBox
else if Component is TCheckBox then
Result:=Get_CheckBox
else if Component is TListView then
Result:=Get_ListView
else if Component is TGroupBox then
Result:=Get_GroupBox
else if Component is TTabSheet then
Result:=Get_TabSheet
else if Component is TMenuItem then
Result:=Get_MenuItem
else if Component is TOpenDialog then
Result:=Get_OpenDialog
else if Component is TSpeedButton then
Result:=Get_SpeedButton
else if Component is TScPopupButton then
Result:=Get_SCPopupButton
else if Component is TRadioButton then
Result:=Get_RadioButton;
end;
procedure TLocEngine.SetComponentText(Component:TComponent;Text:WideString);
procedure Set_Button;
begin
(Component as TButton).Caption:=Text;
end;
procedure Set_Label;
begin
(Component as TLabel).Caption:=Text;
end;
procedure Set_Edit;
begin
(Component as TEdit).Text:=Text;
end;
procedure Set_ComboBox;
var Idx:Integer;
begin
Idx:=(Component as TComboBox).ItemIndex;
(Component as TComboBox).Items.CommaText:=Text;
if Idx<(Component as TComboBox).Items.Count then
(Component as TComboBox).ItemIndex:=Idx;
end;
procedure Set_CheckBox;
begin
(Component as TCheckBox).Caption:=Text;
end;
procedure Set_ListView;
var i:Integer;
SL:TStringList;
begin
SL:=TStringList.Create;
try
with (Component as TListView) do
begin
SL.CommaText:=Text;
Items.BeginUpdate;
// colonnes
for i:=0 to Columns.Count-1 do
Columns[i].Caption:=SL[i];
// items
for i:=0 to Items.Count-1 do
Items[i].Caption:=SL[i+Columns.Count];
Items.EndUpdate;
end;
finally
SL.Free;
end;
end;
procedure Set_GroupBox;
begin
(Component as TGroupBox).Caption:=Text;
end;
procedure Set_TabSheet;
begin
(Component as TTabSheet).Caption:=Text;
end;
procedure Set_MenuItem;
begin
(Component as TMenuItem).Caption:=Text;
end;
procedure Set_OpenDialog;
begin
(Component as TOpenDialog).Filter:=Text;
end;
procedure Set_SpeedButton;
var SL:TStringList;
begin
SL:=TStringList.Create;
try
SL.CommaText:=Text;
(Component as TSpeedButton).Caption:=SL[0];
(Component as TSpeedButton).Hint:=SL[1];
finally
SL.Free;
end;
end;
procedure Set_SCPopupButton;
var SL:TStringList;
begin
SL:=TStringList.Create;
try
SL.CommaText:=Text;
(Component as TScPopupButton).Caption:=SL[0];
(Component as TScPopupButton).Hint:=SL[1];
finally
SL.Free;
end;
end;
procedure Set_RadioButton;
begin
(Component as TRadioButton).Caption:=Text;
end;
begin
if Component is TButton then
Set_Button
else if Component is TLabel then
Set_Label
else if Component is TEdit then
Set_Edit
else if Component is TComboBox then
Set_ComboBox
else if Component is TCheckBox then
Set_CheckBox
else if Component is TListView then
Set_ListView
else if Component is TGroupBox then
Set_GroupBox
else if Component is TTabSheet then
Set_TabSheet
else if Component is TMenuItem then
Set_MenuItem
else if Component is TOpenDialog then
Set_OpenDialog
else if Component is TSpeedButton then
Set_SpeedButton
else if Component is TScPopupButton then
Set_SCPopupButton
else if Component is TRadioButton then
Set_RadioButton;
end;
end.