[Lazarus] Why was XML format chosen for storing settings in Lazarus IDE?
Graeme Geldenhuys
graemeg.lists at gmail.com
Fri Jun 18 13:46:21 CEST 2010
On 18/06/2010, Alexander Klenin wrote:
> To illustrate, here is a snipped of Lazarus code reading the compiler
> options:
And to show you how confusing it is inside the Lazarus IDE code, here
is another example - very different from you example.
------------------------------------
const
SConfigFile = 'idebrowserwin.xml';
KeyStartDir = 'StartDir';
KeyCustomDir = 'CustomDir';
KeySplitterPos = 'SplitterPos';
resourcestring
SFileBrowserIDEMenu = 'IDEFileBrowser';
SFileBrowserIDEMenuCaption = 'File Browser window';
{ TFileBrowserController }
procedure TFileBrowserController.ReadConfig;
begin
with GetIDEConfigStorage(SConfigFile, True) do
try
FStartDir := TStartDir(GetValue(KeyStartDir, Ord(sdProjectDir)));
FCustomDir := GetValue(KeyCustomDir, '');
finally
Free;
end;
end;
procedure TFileBrowserController.WriteConfig;
begin
with GetIDEConfigStorage(SConfigFile, True) do
try
SetValue(KeyStartDir, Ord(FstartDir));
SetValue(KeyCustomDir, CustomDir);
FNeedSave := False;
finally
Free;
end;
end;
------------------------------------
--
Regards,
- Graeme -
_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
More information about the Lazarus
mailing list