forked from gligli/SuperCopier2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSCLocEngine.pas
475 lines (403 loc) · 11.6 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
{
This file is part of SuperCopier2.
SuperCopier2 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.
SuperCopier2 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;
interface
uses
Windows,Messages,Classes,Forms,Controls,TntForms,TntStdCtrls,TntComCtrls,Graphics,
TntClasses,TntMenus,TntDialogs,TntButtons,SCCommon,SCPopupButton,SCWin32,IniFiles;
type
TLocEngine=class
private
LangIni:TMemIniFile;
Strings:TTntStringList;
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:TTntForm);
procedure TranslateString(Id:Integer;var S:WideString);
procedure AddForm(Form:TTntForm);
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,TntSysUtils, TypInfo;
constructor TLocEngine.Create;
begin
LangIni:=nil;
Strings:=TTntStringList.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:TTntForm);
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:TTntForm);
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_TntButton:WideString;
begin
Result:=(Component as TTntButton).Caption;
end;
function Get_TntLabel:WideString;
begin
Result:=(Component as TTntLabel).Caption;
end;
function Get_TntEdit:WideString;
begin
Result:=(Component as TTntEdit).Text;
end;
function Get_TntComboBox:WideString;
begin
Result:=(Component as TTntComboBox).Items.CommaText;
end;
function Get_TntCheckBox:WideString;
begin
Result:=(Component as TTntCheckBox).Caption;
end;
function Get_TntListView:WideString;
var i:Integer;
SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
with (Component as TTntListView) 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_TntGroupBox:WideString;
begin
Result:=(Component as TTntGroupBox).Caption;
end;
function Get_TntTabSheet:WideString;
begin
Result:=(Component as TTntTabSheet).Caption;
end;
function Get_TntMenuItem:WideString;
begin
Result:=(Component as TTntMenuItem).Caption;
end;
function Get_TntOpenDialog:WideString;
begin
Result:=(Component as TTntOpenDialog).Filter;
end;
function Get_TntSpeedButton:WideString;
var SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
SL.Add((Component as TTntSpeedButton).Caption);
SL.Add((Component as TTntSpeedButton).Hint);
Result:=SL.CommaText;
finally
SL.Free;
end;
end;
function Get_SCPopupButton:WideString;
var SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
SL.Add((Component as TScPopupButton).Caption);
SL.Add((Component as TScPopupButton).Hint);
Result:=SL.CommaText;
finally
SL.Free;
end;
end;
function Get_TntRadioButton:WideString;
begin
Result:=(Component as TTntRadioButton).Caption;
end;
begin
Result:='';
if Component is TTntButton then
Result:=Get_TntButton
else if Component is TTntLabel then
Result:=Get_TntLabel
else if Component is TTntEdit then
Result:=Get_TntEdit
else if Component is TTntComboBox then
Result:=Get_TntComboBox
else if Component is TTntCheckBox then
Result:=Get_TntCheckBox
else if Component is TTntListView then
Result:=Get_TntListView
else if Component is TTntGroupBox then
Result:=Get_TntGroupBox
else if Component is TTntTabSheet then
Result:=Get_TntTabSheet
else if Component is TTntMenuItem then
Result:=Get_TntMenuItem
else if Component is TTntOpenDialog then
Result:=Get_TntOpenDialog
else if Component is TTntSpeedButton then
Result:=Get_TntSpeedButton
else if Component is TScPopupButton then
Result:=Get_SCPopupButton
else if Component is TTntRadioButton then
Result:=Get_TntRadioButton;
end;
procedure TLocEngine.SetComponentText(Component:TComponent;Text:WideString);
procedure Set_TntButton;
begin
(Component as TTntButton).Caption:=Text;
end;
procedure Set_TntLabel;
begin
(Component as TTntLabel).Caption:=Text;
end;
procedure Set_TntEdit;
begin
(Component as TTntEdit).Text:=Text;
end;
procedure Set_TntComboBox;
var Idx:Integer;
begin
Idx:=(Component as TTntComboBox).ItemIndex;
(Component as TTntComboBox).Items.CommaText:=Text;
if Idx<(Component as TTntComboBox).Items.Count then
(Component as TTntComboBox).ItemIndex:=Idx;
end;
procedure Set_TntCheckBox;
begin
(Component as TTntCheckBox).Caption:=Text;
end;
procedure Set_TntListView;
var i:Integer;
SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
with (Component as TTntListView) 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_TntGroupBox;
begin
(Component as TTntGroupBox).Caption:=Text;
end;
procedure Set_TntTabSheet;
begin
(Component as TTntTabSheet).Caption:=Text;
end;
procedure Set_TntMenuItem;
begin
(Component as TTntMenuItem).Caption:=Text;
end;
procedure Set_TntOpenDialog;
begin
(Component as TTntOpenDialog).Filter:=Text;
end;
procedure Set_TntSpeedButton;
var SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
SL.CommaText:=Text;
(Component as TTntSpeedButton).Caption:=SL[0];
(Component as TTntSpeedButton).Hint:=SL[1];
finally
SL.Free;
end;
end;
procedure Set_SCPopupButton;
var SL:TTntStringList;
begin
SL:=TTntStringList.Create;
try
SL.CommaText:=Text;
(Component as TScPopupButton).Caption:=SL[0];
(Component as TScPopupButton).Hint:=SL[1];
finally
SL.Free;
end;
end;
procedure Set_TntRadioButton;
begin
(Component as TTntRadioButton).Caption:=Text;
end;
begin
if Component is TTntButton then
Set_TntButton
else if Component is TTntLabel then
Set_TntLabel
else if Component is TTntEdit then
Set_TntEdit
else if Component is TTntComboBox then
Set_TntComboBox
else if Component is TTntCheckBox then
Set_TntCheckBox
else if Component is TTntListView then
Set_TntListView
else if Component is TTntGroupBox then
Set_TntGroupBox
else if Component is TTntTabSheet then
Set_TntTabSheet
else if Component is TTntMenuItem then
Set_TntMenuItem
else if Component is TTntOpenDialog then
Set_TntOpenDialog
else if Component is TTntSpeedButton then
Set_TntSpeedButton
else if Component is TScPopupButton then
Set_SCPopupButton
else if Component is TTntRadioButton then
Set_TntRadioButton;
end;
end.