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 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
|
unit PoCheckerSettings;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LazConfigStorage, Forms,
{$ifdef POCHECKERSTANDALONE}
PoCheckerXMLConfig,
{$else}
BaseIDEIntf,
{$endif}
PoFamilies, LCLProc, LazFileUtils;
type
{ TPoCheckerSettings }
TPoCheckerSettings = class
private
FConfig: TConfigStorage;
FExternalEditorName: String;
FFilename: String;
FGraphFormWindowState: TWindowState;
FLangFilterLanguageAbbr: String;
FLangPath: String;
FMainFormWindowState: TWindowState;
FResultsFormWindowState: TWindowState;
FSelectDirectoryFilename: String;
FTestTypes: TPoTestTypes;
FTestOptions: TPoTestOptions;
FMasterPoList: TStringList;
FMasterPoSelList: TStringList;
FMainFormGeometry: TRect;
FGraphFormGeometry: TRect;
FResultsFormGeometry: TRect;
FDisableAntialiasing: Boolean;
function GetDisableAntialiasing: Boolean;
function GetMasterPoList: TStrings;
function GetMasterPoSelList: TStrings;
function LoadTestTypes: TPoTestTypes;
function LoadTestOptions: TPoTestOptions;
procedure LoadWindowsGeometry;
procedure LoadDisableAntiAliasing;
function LoadExternalEditorName: String;
function LoadSelectDirectoryFilename: String;
function LoadLangFilterLanguageAbbr: String;
function LoadLangPath: String;
procedure LoadMasterPoList(List: TStrings);
procedure LoadMasterPoSelList(List: TStrings);
procedure SaveTestTypes;
procedure SaveTestOptions;
procedure SaveWindowsGeometry;
procedure SaveDisableAntialiasing;
procedure SaveExternalEditorName;
procedure SaveSelectDirectoryFilename;
procedure SaveLangFilterLanguageAbbr;
procedure SaveLangPath;
procedure SaveMasterPoList;
procedure SaveMasterPoSelList;
procedure RemoveUnwantedPaths;
procedure SetMasterPoList(AValue: TStrings);
procedure SetMasterPoSelList(AValue: TStrings);
procedure ResetAllProperties;
public
constructor Create;
destructor Destroy; override;
procedure LoadConfig;
procedure SaveConfig;
property Filename: String read FFilename;
property TestTypes: TPoTestTypes read FTestTypes write FTestTypes;
property TestOptions: TPoTestOptions read FTestOptions write FTestOptions;
property ExternalEditorName: String read FExternalEditorName write FExternalEditorName;
property MasterPoList: TStrings read GetMasterPoList write SetMasterPoList;
property MasterPoSelList: TStrings read GetMasterPoSelList write SetMasterPoSelList;
property SelectDirectoryFilename: String read FSelectDirectoryFilename write FSelectDirectoryFilename;
property MainFormGeometry: TRect read FMainFormGeometry write FMainFormGeometry;
property ResultsFormGeometry: TRect read FResultsFormGeometry write FResultsFormGeometry;
property DisableAntialiasing: Boolean read GetDisableAntialiasing;
property GraphFormGeometry: TRect read FGraphFormGeometry write FGraphFormGeometry;
property MainFormWindowState: TWindowState read FMainFormWindowState write FMainFormWindowState;
property ResultsFormWindowState: TWindowState read FResultsFormWindowState write FResultsFormWindowState;
property GraphFormWindowState: TWindowState read FGraphFormWindowState write FGraphFormWindowState;
property LangFilterLanguageAbbr: String read FLangFilterLanguageAbbr write FLangFilterLanguageAbbr;
property LangPath: String read FLangPath write FLangPath;
end;
function DbgS(PoTestTypes: TPoTestTypes): String; overload;
function DbgS(PoTestOpts: TPoTestOptions): String; overload;
function FitToRect(const ARect, FitIn: TRect): TRect;
function IsDefaultRect(ARect: TRect): Boolean;
function IsValidRect(ARect: TRect): Boolean;
{$ifdef pocheckerstandalone}
function GetGlobalConfigPath: String;
function GetLocalConfigPath: String;
{$endif}
implementation
const
DEFAULT_DISABLE_ANTIALIASING = true;
function FitToRect(const ARect, FitIn: TRect): TRect;
begin
Result := ARect;
if (Result.Right - Result.Left) > (FitIn.Right - FitIn.Left) then
Result.Right := Result.Left + (FitIn.Right - FitIn.Left);
if (Result.Bottom - Result.Top) > (FitIn.Bottom - FitIn.Top) then
Result.Bottom := Result.Top + (FitIn.Bottom - FitIn.Top);
if Result.Left < FitIn.Left then
begin
Result.Right := Result.Right + (FitIn.Left - Result.Left);
Result.Left := FitIn.Left;
end;
if Result.Right > FitIn.Right then
begin
Result.Left := Result.Left - (Result.Right - FitIn.Right);
Result.Right := Result.Right - (Result.Right - FitIn.Right);
end;
if Result.Top < FitIn.Top then
begin
Result.Bottom := Result.Bottom + (FitIn.Top - Result.Top);
Result.Top := FitIn.Top;
end;
if Result.Bottom > FitIn.Bottom then
begin
Result.Top := Result.Top - (Result.Bottom - FitIn.Bottom);
Result.Bottom := Result.Bottom - (Result.Bottom - FitIn.Bottom);
end;
//if Result.Right > FitIn.Right then Result.Right := FitIn.Right;
//if Result.Bottom > FitIn.Bottom then Result.Bottom := FitIn.Bottom;
end;
function IsDefaultRect(ARect: TRect): Boolean;
begin
Result := (ARect.Left = -1) and (ARect.Top = -1) and
(ARect.Right = -1) and (Arect.Bottom = -1);
end;
function IsValidRect(ARect: TRect): Boolean;
begin
Result := (ARect.Right > ARect.Left) and
(ARect.Bottom > ARect.Top);
end;
const
TestTypeNames: array[TPoTestType] of String = (
'CheckNumberOfItems',
'CheckForIncompatibleFormatArguments',
'CheckMissingIdentifiers',
'CheckForMismatchesInUntranslatedStrings'
);
TestoptionNames: array[TPoTestOption] of String = (
'FindAllChildren'
);
pSelectDirectoryFilename = 'SelectDirectoryFilename/';
pLangFilter = 'LanguageFilter/';
pLangPath = 'LanguageFiles/';
pTestTypes = 'TestTypes/';
pTestOptions = 'TestOptions/';
pWindowsGeometry = 'General/WindowsGeometry/';
pMasterPoFiles = 'MasterPoFiles/';
pMasterPoSelection = 'MasterPoSelection/';
{$IFDEF POCHECKERSTANDALONE}
pExternalEditor = 'ExternalEditor/';
{$ENDIF}
var
DefaultRect: TRect;
function DbgS(PoTestTypes: TPoTestTypes): String; overload;
var
Typ: TPoTestType;
begin
Result := '[';
for Typ := Low(TPotestType) to High(TPoTesttype) do
begin
if (Typ in PoTestTypes) then Result := Result + TestTypeNames[Typ];
end;
if (Result[Length(Result)] = ',') then System.Delete(Result,Length(Result),1);
Result := Result + ']';
end;
function DbgS(PoTestOpts: TPoTestOptions): String; overload;
var
Opt: TPoTestOption;
begin
Result := '[';
for Opt := Low(TPotestOption) to High(TPoTestOption) do
begin
if (Opt in PoTestOpts) then Result := Result + TestOptionNames[opt];
end;
if (Result[Length(Result)] = ',') then System.Delete(Result,Length(Result),1);
Result := Result + ']';
end;
{ TPoCheckerSettings }
{$ifdef pocheckerstandalone}
function AppName: String;
begin
Result := 'pochecker';
end;
function Vendor: String;
begin
Result := '';
end;
function GetGlobalConfigPath: String;
var
OldOnGetApplicationName: TGetAppNameEvent;
OldOnGetVendorName: TGetVendorNameEvent;
begin
Result := '';
OldOnGetApplicationName := OnGetApplicationName;
OldOnGetVendorName := OnGetVendorName;
OnGetApplicationName := @AppName;
OnGetVendorName := @Vendor;
Result := GetAppConfigDirUtf8(True);
OnGetApplicationName := OldOnGetApplicationName;
OnGetVendorName := OldOnGetVendorName;
end;
function GetLocalConfigPath: String;
var
OldOnGetApplicationName: TGetAppNameEvent;
OldOnGetVendorName: TGetVendorNameEvent;
begin
Result := '';
if Application.HasOption('primary-config-path') then
Result := ExpandFileNameUtf8(Application.GetOptionValue('primary-config-path'))
else if Application.HasOption('pcp') then
Result := ExpandFileNameUtf8(Application.GetOptionValue('pcp'))
else
begin
OldOnGetApplicationName := OnGetApplicationName;
OldOnGetVendorName := OnGetVendorName;
OnGetApplicationName := @AppName;
OnGetVendorName := @Vendor;
Result := GetAppConfigDirUtf8(False);
OnGetApplicationName := OldOnGetApplicationName;
OnGetVendorName := OldOnGetVendorName;
end;
end;
function GetAndCreateConfigPath: String;
begin
Result := GetLocalConfigPath;
if not ForceDirectoriesUTF8(Result) then
Debugln('GetAndCreateConfigPath: unable to create "',Result,'"');
end;
{$endif}
function TPoCheckerSettings.GetMasterPoList: TStrings;
begin
Result := FMasterPoList;
end;
function TPoCheckerSettings.GetMasterPoSelList: TStrings;
begin
Result := FMasterPoSelList;
end;
function TPoCheckerSettings.LoadTestTypes: TPoTestTypes;
var
tt: TPoTestType;
Name: String;
B: Boolean;
begin
Result := [];
for tt := Low(TPoTestType) to High(TPoTestType) do
begin
Name := TestTypeNames[tt];
B := FConfig.GetValue(pTestTypes + Name + '/Value',False);
if B then Result := Result + [tt];
end;
end;
function TPoCheckerSettings.LoadTestOptions: TPoTestOptions;
var
opt: TPoTestOption;
Name: String;
B: Boolean;
begin
Result := [];
for opt := Low(TPoTestOption) to High(TPoTestOption) do
begin
Name := TestOptionNames[opt];
B := FConfig.GetValue(pTestOptions + Name + '/Value',False);
if B then Result := Result + [opt];
end;
end;
procedure TPoCheckerSettings.LoadWindowsGeometry;
function IntToWindowState(WSInt: Integer): TWindowState;
begin
if (WSInt in [Ord(Low(TWindowState))..Ord(High(TWindowState))]) then
Result := TWindowState(WSInt)
else
Result := wsNormal;
end;
begin
FConfig.GetValue(pWindowsGeometry+'MainForm/Value',FMainFormGeometry,DefaultRect);
FMainFormWindowState := IntToWindowState(FConfig.GetValue(pWindowsGeometry+'MainForm/WindowState/Value', Ord(wsNormal)));
FConfig.GetValue(pWindowsGeometry+'ResultsForm/Value',FResultsFormGeometry,DefaultRect);
FResultsFormWindowState := IntToWindowState(FConfig.GetValue(pWindowsGeometry+'ResultsForm/WindowState/Value', Ord(wsNormal)));
FConfig.GetValue(pWindowsGeometry+'GraphForm/Value',FGraphFormGeometry,DefaultRect);
FGraphFormWindowState := IntToWindowState(FConfig.GetValue(pWindowsGeometry+'GraphForm/WindowState/Value', Ord(wsNormal)));
end;
function TPoCheckerSettings.GetDisableAntialiasing: Boolean;
var
cfg: TConfigStorage;
ver: Integer;
begin
{$IFDEF POCHECKERSTANDALONE}
Result := FDisableAntialiasing;
{$ELSE}
cfg := GetIDEConfigStorage('editoroptions.xml', True);
ver := cfg.GetValue('EditorOptions/Version', 0);
Result := cfg.GetValue('EditorOptions/Display/DisableAntialiasing', ver < 7);
FDisableAntiAliasing := Result;
cfg.Free;
{$ENDIF}
end;
procedure TPoCheckerSettings.LoadDisableAntialiasing;
begin
{$IFDEF POCHECKERSTANDALONE}
FDisableAntialiasing := FConfig.GetValue('General/Display/ResultsForm/DisableAntialiasing',
DEFAULT_DISABLE_ANTIALIASING);
{$ENDIF}
end;
function TPoCheckerSettings.LoadExternalEditorName: String;
begin
{$IFDEF POCHECKERSTANDALONE}
//allow override on commandline
if Application.HasOption('editor') then
Result := Application.GetOptionValue('editor')
else
Result := FConfig.GetValue(pExternalEditor+'Value','');
{$ELSE}
Result := '';
{$eNDIF}
end;
function TPoCheckerSettings.LoadSelectDirectoryFilename: String;
begin
Result := FConfig.GetValue(pSelectDirectoryFilename+'Value','');
end;
function TPoCheckerSettings.LoadLangFilterLanguageAbbr: String;
begin
Result := FConfig.GetValue(pLangFilter + 'Value', '');
end;
function TPoCheckerSettings.LoadLangPath: String;
{$IFDEF POCHECKERSTANDALONE}
var
SL: TStringList;
i: Integer;
S: String;
{$ENDIF}
begin
{$IFDEF POCHECKERSTANDALONE}
//allow override on commandline
if Application.HasOption('langpath') then
begin
Result := '';
SL := TStringList.Create;
try
SL.Delimiter := PathSeparator;
SL.StrictDelimiter := True;
SL.DelimitedText := Application.GetOptionValue('langpath');
for i := 0 to SL.Count - 1 do
begin
S := SL.Strings[i];
if (S <> '') then
begin
Result := Result + ExpandFileNameUtf8(S) + PathSeparator;
end;
end;
if (Result <> '') and (Result[Length(Result)] = PathSeparator) then
System.Delete(Result, Length(Result), 1);
finally
SL.Free;
end;
end
else
Result := FConfig.GetValue(pLangPath+'Value','');
{$ELSE}
Result := '';
{$ENDIF}
end;
procedure TPoCheckerSettings.LoadMasterPoList(List: TStrings);
var
Cnt, i: Integer;
Fn: String;
begin
List.Clear;
Cnt := Fconfig.GetValue(pMasterpoFiles+'Count',0);
//debugln('TPoCheckerSettings.LoadMasterPoList: Cnt = ',DbgS(Cnt));
for i := 0 to Cnt - 1 do
begin
Fn := FConfig.GetValue(pMasterpoFiles+Format('Item_%d/Value',[i]),'');
if (Fn <> '') then List.Add(Fn);
end;
end;
procedure TPoCheckerSettings.LoadMasterPoSelList(List: TStrings);
var
Cnt, i: Integer;
Fn: String;
begin
List.Clear;
Cnt := Fconfig.GetValue(pMasterpoSelection+'Count',0);
//debugln('TPoCheckerSettings.LoadMasterPoSelList: Cnt = ',DbgS(Cnt));
for i := 0 to Cnt - 1 do
begin
Fn := FConfig.GetValue(pMasterpoSelection+Format('Item_%d/Value',[i]),'');
if (Fn <> '') then List.Add(Fn);
end;
end;
procedure TPoCheckerSettings.SaveTestTypes;
var
tt: TPoTestType;
Name: String;
begin
for tt := Low(TPoTestTypes) to High(TPoTestTypes) do
begin
Name := TestTypeNames[tt];
FConfig.SetDeleteValue(pTestTypes + Name + '/Value',(tt in FTestTypes),False);
end;
end;
procedure TPoCheckerSettings.SaveTestOptions;
var
topt: TPoTestOption;
Name: String;
begin
for topt := Low(TPoTestOptions) to High(TPoTestoptions) do
begin
Name := TestOptionNames[topt];
FConfig.SetDeleteValue(pTestOptions + Name + '/Value',(topt in FTestOptions),False);
end;
end;
procedure TPoCheckerSettings.SaveWindowsGeometry;
begin
FConfig.SetDeleteValue(pWindowsGeometry+'MainForm/Value',FMainFormGeometry,DefaultRect);
FConfig.SetDeleteValue(pWindowsGeometry+'MainForm/WindowState/Value',Ord(FMainFormWindowState), Ord(wsNormal));
FConfig.SetDeleteValue(pWindowsGeometry+'ResultsForm/Value',FResultsFormGeometry,DefaultRect);
FConfig.SetDeleteValue(pWindowsGeometry+'ResultsForm/WindowState/Value',Ord(FResultsFormWindowState), Ord(wsNormal));
FConfig.SetDeleteValue(pWindowsGeometry+'GraphForm/Value',FGraphFormGeometry,DefaultRect);
FConfig.SetDeleteValue(pWindowsGeometry+'GraphForm/WindowState/Value',Ord(FGraphFormWindowState), Ord(wsNormal));
end;
procedure TPoCheckerSettings.SaveDisableAntialiasing;
begin
{$IFDEF POCHECKERSTANDALONE}
// Don't use SetDeleteValue to keep the syntax in the file because there is
// no gui to modify DisableAntialiasing at the moment.
FConfig.SetValue('General/Display/ResultsForm/DisableAntialiasing', FDisableAntialiasing);
{$ENDIF}
end;
procedure TPoCheckerSettings.SaveExternalEditorName;
begin
{$IFDEF POCHECKERSTANDALONE}
FConfig.SetDeleteValue(pExternalEditor+'Value',FExternalEditorName,'');
{$ENDIF}
end;
procedure TPoCheckerSettings.SaveSelectDirectoryFilename;
begin
FConfig.SetDeleteValue(pSelectDirectoryFilename+'Value',FSelectDirectoryFilename,'');
end;
procedure TPoCheckerSettings.SaveMasterPoList;
var
Cnt, i: Integer;
begin
FConfig.DeletePath(pMasterPoFiles);
Cnt := FMasterPoList.Count;
FConfig.SetDeleteValue(pMasterPoFiles+'Count',Cnt,0);
for i := 0 to Cnt - 1 do
FConfig.SetDeleteValue(pMasterPoFiles+Format('Item_%d/Value',[i]),FMasterPoList[i],'');
end;
procedure TPoCheckerSettings.SaveMasterPoSelList;
var
Cnt, i: Integer;
begin
FConfig.DeletePath(pMasterPoSelection);
Cnt := FMasterPoSelList.Count;
FConfig.SetDeleteValue(pMasterPoSelection+'Count',Cnt,0);
for i := 0 to Cnt - 1 do
FConfig.SetDeleteValue(pMasterPoSelection+Format('Item_%d/Value',[i]),FMasterPoSelList[i],'');
end;
procedure TPoCheckerSettings.SaveLangFilterLanguageAbbr;
begin
FConfig.SetDeleteValue(pLangFilter + 'Value', FLangFilterLanguageAbbr, '');
end;
procedure TPoCheckerSettings.SaveLangPath;
begin
FConfig.SetDeleteValue(pLangPath + 'Value', FLangPath, '');
end;
procedure TPoCheckerSettings.RemoveUnwantedPaths;
const
pLoadSettings = 'General/LoadSettings/';
pChildPoFiles = 'ChildPoFiles/';
pLastSelected = 'LastSelected/';
begin
FConfig.DeletePath(pLoadSettings);
FConfig.DeletePath(pChildPoFiles);
FConfig.DeletePath(pLastSelected);
end;
procedure TPoCheckerSettings.SetMasterPoList(AValue: TStrings);
begin
FMasterPoList.Assign(AValue);
end;
procedure TPoCheckerSettings.SetMasterPoSelList(AValue: TStrings);
begin
FMasterPoSelList.Assign(AValue);
end;
procedure TPoCheckerSettings.ResetAllProperties;
begin
FTestTypes := [];
FTestOptions := [];
FMainFormGeometry := DefaultRect;
FGraphFormGeometry := DefaultRect;
FResultsFormGeometry := DefaultRect;
FMainFormWindowState := wsNormal;
FResultsFormWindowState := wsNormal;
FGraphFormWindowState := wsNormal;
FDisableAntialiasing := DEFAULT_DISABLE_ANTIALIASING;
FExternalEditorName := '';
FSelectDirectoryFilename := '';
FLangFilterLanguageAbbr := '';
if Assigned(FMasterPoList) then FMasterPoList.Free;
if Assigned(FMasterPoSelList) then FMasterPoSelList.Free;
FMasterPoList := TStringList.Create;
FMasterPoSelList := TStringList.Create;
FMasterPoList.Sorted := True;
FMasterPoList.Duplicates := dupIgnore;
end;
constructor TPoCheckerSettings.Create;
begin
try
ResetAllProperties;
{$ifdef POCHECKERSTANDALONE}
FFilename := GetAndCreateConfigPath;
if (FFilename <> '') then FFilename := AppendPathDelim(FFilename);
FFilename := FFilename + 'pochecker.xml';
//debugln('TPoCheckerSettings.Create: Filename = ');
//debugln('"',Filename,'"');
//FFilename := 'pochecker.xml';
FConfig := TXMLOptionsStorage.Create(FFilename, True);
{$else}
FFilename := 'pochecker.xml';
FConfig := GetIDEConfigStorage(FFilename, True);
{$endif}
//DebugLn('TPoCheckerSettings.Create: FConfig = ',DbgSName(FConfig));
except
Debugln('PoCheckerSettings.Create: failed to create ConfigStorage:');
Debugln(' - Filename = ',FFilename);
FConfig := nil;
end;
end;
destructor TPoCheckerSettings.Destroy;
begin
if Assigned(FConfig) then FConfig.Free;
FMasterPoList.Free;
FMasterPoSelList.Free;
inherited Destroy;
end;
procedure TPoCheckerSettings.LoadConfig;
begin
try
FTestTypes := LoadTestTypes;
FTestOptions := LoadTestOptions;
FSelectDirectoryFilename := LoadSelectDirectoryFilename;
FExternalEditorName := LoadExternalEditorName;
FLangFilterLanguageAbbr := LoadLangFilterLanguageAbbr;
FLangPath := LoadLangPath;
LoadWindowsGeometry;
LoadDisableAntialiasing;
LoadMasterPoList(FMasterPoList);
LoadMasterPoSelList(FMasterPoSelList);
except
ResetAllProperties;
debugln('TPoCheckerSettings.LoadConfig: Error loading config.');
end;
end;
procedure TPoCheckerSettings.SaveConfig;
begin
try
FConfig.SetDeleteValue('Version','1.0','');
RemoveUnwantedPaths;
//the next line can be removed after some time
SaveTestTypes;
SaveTestOptions;
SaveExternalEditorName;
SaveSelectDirectoryFilename;
SaveLangFilterLanguageAbbr;
SaveLangPath;
SaveWindowsGeometry;
SaveDisableAntialiasing;
SaveMasterPoList;
SaveMasterPoSelList;
//not used anymore, clear it. Remove this line after a while
FConfig.WriteToDisk;
except
debugln('TPoCheckerSettings.SaveConfig: Error saving config.');
end;
end;
Initialization
DefaultRect := Rect(-1, -1, -1, -1);
end.
|