-
Notifications
You must be signed in to change notification settings - Fork 1
/
catranslate.pas
392 lines (337 loc) · 10.6 KB
/
catranslate.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
unit caTranslate;
{$INCLUDE ca.inc}
interface
uses
// standard delphi units...
Sysutils,
Windows,
Classes,
Forms,
TypInfo,
IniFiles,
FileCtrl,
// ca units...
caConsts,
caUtils,
caForms,
caLog,
caIni;
type
TcaLanguage = (laEnglish, laFrench, laGerman, laAmerican);
//---------------------------------------------------------------------------
// TcaApplicationProxy
//---------------------------------------------------------------------------
TcaApplicationProxy = class(TObject)
private
// private fields...
FExcludedProperties: TStringList;
FLanguage: TcaLanguage;
FLanguageRoot: string;
FDFMFile: TcaDFMFile;
FDictionary: THashedStringList;
// private methods...
function GetLanguageFile(ALanguage: TcaLanguage): string;
function GetLanguageFolder(ALanguage: TcaLanguage): string;
procedure InitializeLanguages;
procedure ReadSelectedLanguage;
procedure SaveLanguageFile;
function GetMainFormOnTaskbar: Boolean;
procedure SetMainFormOnTaskbar(const Value: Boolean);
protected
// protected methods...
procedure LoadLanguageFile;
procedure SaveSelectedLanguage;
public
// lifetime...
constructor Create;
destructor Destroy; override;
// public methods
procedure AddExcludedProperty(const AProperty: string);
procedure CreateForm(InstanceClass: TComponentClass; var Reference);
procedure Initialize;
procedure Run;
procedure TranslateString(const APropPath: String; var APropValue: String);
procedure TranslateStringEvent(Sender: TObject; const APropPath: String; var APropValue: String);
// properties
property DFMFile: TcaDFMFile read FDFMFile;
property Language: TcaLanguage read FLanguage write FLanguage;
property MainFormOnTaskbar: Boolean read GetMainFormOnTaskbar write SetMainFormOnTaskbar;
end;
//---------------------------------------------------------------------------
// TcaTranslator
//---------------------------------------------------------------------------
TcaTranslator = class(TObject)
public
// public methods...
procedure AddExcludedProperty(const AProperty: string);
function CreateForm(AFormClass: TFormClass; AOwner: TComponent;
ATranslateEvent: TcaDFMTranslateStringEvent = nil): Forms.TForm;
procedure LoadLanguageFile;
procedure TranslateString(const APropPath: String; var APropValue: String);
end;
//---------------------------------------------------------------------------
// TcaApplicationAccess
//---------------------------------------------------------------------------
TcaApplicationAccess = class(TComponent)
private
// private fields - copied from Forms.TApplication...
FHandle: HWnd;
FBiDiMode: TBiDiMode;
FBiDiKeyboard: string;
FNonBiDiKeyboard: string;
FObjectInstance: Pointer;
FMainForm: TForm;
protected
// protected properties - Used to supress compiler hints...
property BiDiKeyboard: string read FBiDiKeyboard;
property BiDiMode: TBiDiMode read FBiDiMode;
property Handle: HWnd read FHandle;
property NonBiDiKeyboard: string read FNonBiDiKeyboard;
property ObjectInstance: Pointer read FObjectInstance;
public
// public properties...
property MainForm: TForm read FMainForm write FMainForm;
end;
//---------------------------------------------------------------------------
// TForm
//---------------------------------------------------------------------------
TForm = class(Forms.TForm)
public
// lifetime...
constructor Create(AOwner: TComponent); override;
end;
var
Application: TcaApplicationProxy;
Translator: TcaTranslator;
const
cSelectedLangauge = 'SelectedLangauge';
implementation
//---------------------------------------------------------------------------
// TcaApplicationProxy
//---------------------------------------------------------------------------
// lifetime...
constructor TcaApplicationProxy.Create;
begin
inherited;
InitializeLanguages;
ReadSelectedLanguage;
FDictionary := THashedStringList.Create;
FDFMFile := TcaDFMFile.Create(nil);
FDFMFile.OnTranslateString := TranslateStringEvent;
FExcludedProperties := TStringList.Create;
end;
destructor TcaApplicationProxy.Destroy;
begin
SaveLanguageFile;
FDictionary.Free;
FDFMFile.Free;
FExcludedProperties.Free;
SaveSelectedLanguage;
inherited;
end;
// public methods...
procedure TcaApplicationProxy.AddExcludedProperty(const AProperty: string);
begin
FExcludedProperties.Add(AProperty);
end;
procedure TcaApplicationProxy.CreateForm(InstanceClass: TComponentClass; var Reference);
var
Instance: TComponent;
begin
FDFMFile.FormClass := TFormClass(InstanceClass);
try
FDFMFile.Translate;
Instance := FDFMFile.CreateForm(Forms.Application);
except
TComponent(Reference) := nil;
raise;
end;
if (Forms.Application.MainForm = nil) and (Instance is Forms.TForm) then
begin
TForm(Instance).HandleNeeded;
TcaApplicationAccess(Forms.Application).MainForm := TForm(Instance);
end;
end;
procedure TcaApplicationProxy.Initialize;
begin
Forms.Application.Initialize;
end;
procedure TcaApplicationProxy.Run;
begin
Forms.Application.Run;
end;
// protected methods...
procedure TcaApplicationProxy.LoadLanguageFile;
var
LanguageFile: string;
begin
LanguageFile := GetLanguageFile(FLanguage);
if FileExists(LanguageFile) then
FDictionary.LoadFromFile(LanguageFile);
end;
procedure TcaApplicationProxy.SaveSelectedLanguage;
var
Ini: IcaIni;
begin
Ini := TcaIni.Create;
Ini.Integers[cSelectedLangauge] := Ord(FLanguage);
end;
// private methods...
function TcaApplicationProxy.GetLanguageFile(ALanguage: TcaLanguage): string;
begin
Result := GetLanguageFolder(ALanguage) + cDictionaryFile;
end;
function TcaApplicationProxy.GetLanguageFolder(ALanguage: TcaLanguage): string;
var
LanguageName: string;
begin
LanguageName := GetEnumName(TypeInfo(TcaLanguage), Ord(ALanguage));
Utils.StripLeadingLowerCase(LanguageName);
Result := FLanguageRoot + LanguageName;
Utils.EnsureBackslash(Result);
end;
procedure TcaApplicationProxy.InitializeLanguages;
var
ALanguage: TcaLanguage;
LanguageFolder: string;
begin
FLanguageRoot := Utils.AppPath + cLanguages;
if not DirectoryExists(FLanguageRoot) then
CreateDir(FLanguageRoot);
Utils.EnsureBackslash(FLanguageRoot);
for ALanguage := Low(TcaLanguage) to High(TcaLanguage) do
begin
LanguageFolder := GetLanguageFolder(ALanguage);
if not DirectoryExists(LanguageFolder) then
CreateDir(LanguageFolder);
end;
end;
procedure TcaApplicationProxy.ReadSelectedLanguage;
var
Ini: IcaIni;
begin
Ini := TcaIni.Create;
FLanguage := TcaLanguage(Ini.Integers[cSelectedLangauge]);
end;
procedure TcaApplicationProxy.SaveLanguageFile;
var
LanguageFile: string;
begin
LanguageFile := GetLanguageFile(FLanguage);
if not FileExists(LanguageFile) then
FDictionary.SaveToFile(LanguageFile);
end;
procedure TcaApplicationProxy.TranslateString(const APropPath: string; var APropValue: string);
var
ExcludeIndex: Integer;
ExcludeProp: string;
Name: string;
NameIndex: Integer;
ShouldExclude: Boolean;
Value: string;
begin
ShouldExclude := False;
for ExcludeIndex := 0 to Pred(FExcludedProperties.Count) do
begin
ExcludeProp := FExcludedProperties[ExcludeIndex];
if Pos(ExcludeProp, APropPath) > 0 then
begin
ShouldExclude := True;
Break;
end;
end;
if not ShouldExclude then
begin
Name := APropValue;
NameIndex := FDictionary.IndexOfName(Name);
if NameIndex >= 0 then
begin
Value := FDictionary.ValueFromIndex[NameIndex];
if Value <> cUndefined then
APropValue := Value;
end
else
begin
Name := APropPath + ' - ' + APropValue;
NameIndex := FDictionary.IndexOfName(Name);
if NameIndex >= 0 then
begin
Value := FDictionary.ValueFromIndex[NameIndex];
if Value <> cUndefined then
APropValue := Value;
end
else
FDictionary.Values[Name] := cUndefined;
end;
end;
end;
procedure TcaApplicationProxy.TranslateStringEvent(Sender: TObject; const APropPath: string; var APropValue: string);
begin
TranslateString(APropPath, APropValue);
end;
// property methods...
function TcaApplicationProxy.GetMainFormOnTaskbar: Boolean;
begin
Result := Forms.Application.MainFormOnTaskBar;
end;
procedure TcaApplicationProxy.SetMainFormOnTaskbar(const Value: Boolean);
begin
Forms.Application.MainFormOnTaskBar := Value;
end;
//---------------------------------------------------------------------------
// TcaTranslator
//---------------------------------------------------------------------------
// public methods
procedure TcaTranslator.AddExcludedProperty(const AProperty: string);
begin
Application.AddExcludedProperty(AProperty);
end;
function TcaTranslator.CreateForm(AFormClass: TFormClass; AOwner: TComponent;
ATranslateEvent: TcaDFMTranslateStringEvent = nil): Forms.TForm;
var
DFMFile: IcaDFMFile;
begin
DFMFile := TcaDFMFile.Create(nil);
DFMFile.FormClass := AFormClass;
if Assigned(ATranslateEvent) then
DFMFile.OnTranslateString := ATranslateEvent
else
DFMFile.OnTranslateString := Application.TranslateStringEvent;
LoadLanguageFile;
DFMFile.Translate;
Result := DFMFile.CreateForm(AOwner);
end;
procedure TcaTranslator.LoadLanguageFile;
begin
Application.LoadLanguageFile;
end;
procedure TcaTranslator.TranslateString(const APropPath: string; var APropValue: string);
begin
Application.TranslateString(APropPath, APropValue);
end;
//---------------------------------------------------------------------------
// TForm
//---------------------------------------------------------------------------
// lifetime...
constructor TForm.Create(AOwner: TComponent);
begin
if AOwner is TcaDFMTempOwner then
inherited Create(AOwner)
else
begin
inherited CreateNew(AOwner);
Application.DFMFile.FormClass := TFormClass(ClassType);
Application.DFMFile.Translate;
Application.DFMFile.Binary.ReadComponent(Self);
end;
end;
//---------------------------------------------------------------------------
// Initialization/Finalization
//---------------------------------------------------------------------------
initialization
Application := TcaApplicationProxy.Create;
Translator := TcaTranslator.Create;
finalization
Application.Free;
Translator.Free;
end.