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
|
{
Copyright 1998-2018 PasDoc developers.
This file is part of "pasdoc_gui".
"pasdoc_gui" 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.
"pasdoc_gui" 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.
You should have received a copy of the GNU General Public License
along with "pasdoc_gui"; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
----------------------------------------------------------------------------
}
{ This unit provides @link(IniFile) variable that can be used to store
some user configuration. It also declares some global variables
that are part of user configuration and don't fit anywhere else,
like WWWHelpServer.
@author(Michalis Kamburelis) }
unit PasDocGuiSettings;
interface
{$IFDEF ConditionalExpressions}
{$IF CompilerVersion >= 15}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN UNSAFE_CODE OFF}
{$IFEND}
{$IF CompilerVersion >= 20}
{$DEFINE STRING_UNICODE}
{$IFEND}
{$ENDIF}
uses
{$IFDEF MSWINDOWS}
Windows,
{$ENDIF}
Classes, SysUtils,
IniFiles;
var
IniFile: TIniFile;
const
DefaultWWWHelpServer = 'https://github.com/pasdoc/pasdoc/wiki/';
var
WWWHelpServer: string;
AutoLoadLastProject: Boolean = TRUE;
implementation
{$ifdef UNIX}
{ Code below is copied from FPC 2.0.3 rtl/unix/sysutils.pp.
It has fixed GetAppConfigDir and GetAppConfigFile, so that
1. config file is stored inside hidden dir
2. moreover it follows base-dir spec
Michalis send this patch to FPC and it was applied during FPC 2.0.3
development. So for FPC 2.0.0 and 2.0.2, we need the workaround below. }
Function GetHomeDir : String;
begin
Result:=GetEnvironmentVariable('HOME');
If (Result<>'') then
Result:=IncludeTrailingPathDelimiter(Result);
end;
{ Follows base-dir spec,
see [http://freedesktop.org/Standards/basedir-spec].
Always ends with PathDelim. }
Function XdgConfigHome : String;
begin
Result:=GetEnvironmentVariable('XDG_CONFIG_HOME');
if (Result='') then
Result:=GetHomeDir + '.config/'
else
Result:=IncludeTrailingPathDelimiter(Result);
end;
Function GetAppConfigDir(Global : Boolean) : String;
begin
If Global then
Result:=SysConfigDir
else
Result:=XdgConfigHome + ApplicationName;
end;
Function GetAppConfigFile(Global : Boolean; SubDir : Boolean) : String;
begin
if Global then
begin
Result:=IncludeTrailingPathDelimiter(SysConfigDir);
if SubDir then
Result:=IncludeTrailingPathDelimiter(Result+ApplicationName);
Result:=Result+ApplicationName+ConfigExtension;
end
else
begin
if SubDir then
begin
Result:=IncludeTrailingPathDelimiter(GetAppConfigDir(False));
Result:=Result+ApplicationName+ConfigExtension;
end
else
begin
Result:=XdgConfigHome + ApplicationName + ConfigExtension;
end;
end;
end;
{$endif}
{$IFNDEF FPC}
{$IFDEF MSWINDOWS}
function GetCommonAppDataFolder(const SubPath: String): String;
var
hSHFolderDLL: HMODULE;
f_SHGetFolderPath: function(hwndOwner: HWND; nFolder: Integer;
hToken: THandle; dwFlags: DWORD; pszPath: PChar): HRESULT; stdcall;
Buf: array[0..MAX_PATH - 1] of Char;
const
CSIDL_LOCAL_APPDATA = $001C;
SHGFP_TYPE_CURRENT = 0;
begin
Result := '';
hSHFolderDLL := LoadLibrary('shfolder.dll');
if hSHFolderDLL = 0 then
Exit;
try
{$IFDEF UNICODE}
@f_SHGetFolderPath := GetProcAddress(hSHFolderDLL, 'SHGetFolderPathW');
{$ELSE}
@f_SHGetFolderPath := GetProcAddress(hSHFolderDLL, 'SHGetFolderPathA');
{$ENDIF}
if @f_SHGetFolderPath = nil then
Exit;
if Succeeded(f_SHGetFolderPath(0, CSIDL_LOCAL_APPDATA, 0,
SHGFP_TYPE_CURRENT, Buf)) then begin
Result := ExpandFileName(Buf);
Result := IncludeTrailingPathDelimiter(Result) + SubPath;
try
if not ForceDirectories(Result) then
Result := '';
except
Result := '';
end;
end;
finally
FreeLibrary(hSHFolderDLL);
end;
end;
function GetAppConfigDir(Global: Boolean) : String;
begin
Result := GetCommonAppDataFolder(ChangeFileExt(ExtractFileName(ParamStr(0)), ''));
if Result = '' then
raise Exception.CreateFmt('Cannot create directory for config file: "%s"',
[Result]);
end;
{$ENDIF}
{$ENDIF}
var
ConfigDir: string;
initialization
{ calculate ConfigDir }
ConfigDir := GetAppConfigDir(false);
if not ForceDirectories(ConfigDir) then
raise Exception.CreateFmt('Cannot create directory for config file: "%s"',
[ConfigDir]);
ConfigDir := IncludeTrailingPathDelimiter(ConfigDir);
{ initialize IniFile }
IniFile := TIniFile.Create(ConfigDir + 'prefs.ini');
WWWHelpServer := IniFile.ReadString('Main', 'WWWHelpServer',
DefaultWWWHelpServer);
AutoLoadLastProject := IniFile.ReadBool('Main', 'AutoLoadLastProject', TRUE);
finalization
if IniFile <> nil then
begin
IniFile.WriteString('Main', 'WWWHelpServer', WWWHelpServer);
IniFile.WriteBool('Main', 'AutoLoadLastProject', AutoLoadLastProject);
IniFile.UpdateFile;
FreeAndNil(IniFile);
end;
end.
|