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
|
{
/***************************************************************************
projectuserresources.pas - Lazarus IDE unit
---------------------------------------
TProjectUserResources is responsible for the inclusion of the
custom resources in executables as res file
***************************************************************************/
***************************************************************************
* *
* This source 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. *
* *
* This code 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. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
}
unit ProjectUserResources;
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
interface
uses
// RTL + LCL
Classes, SysUtils,
resource, bitmapresource, groupresource, groupiconresource, groupcursorresource,
// LCL
LCLProc,
// LazUtils
FileProcs, LazFileUtils, LazUTF8, Laz2_XMLCfg,
// IdeIntf
ProjectResourcesIntf, IDEMsgIntf, MacroIntf, IDEExternToolIntf,
// IDE
LazarusIDEStrConsts;
type
TUserResourceType = (
rtIcon, // maps to RT_GROUP_ICON
rtCursor, // maps to RT_GROUP_CURSOR
rtBitmap, // maps to RT_BITMAP
rtHTML, // maps to RT_HTML
rtRCData // maps to RT_RCDATA
);
PResourceItem = ^TResourceItem;
{ TResourceItem }
TResourceItem = record
public
FileName: String;
ResType: TUserResourceType;
ResName: String;
procedure ReadFromProjectFile(AConfig: TXMLConfig; const Path: String);
procedure WriteToProjectFile(AConfig: TXMLConfig; const Path: String);
function CreateResource(const ProjectDirectory: String): TAbstractResource;
function GetRealFileName(const ProjectDirectory: String): String;
end;
{ TResourceList }
TResourceList = class(TList)
private
function GetItem(AIndex: Integer): PResourceItem;
protected
procedure Notify(Ptr: Pointer; Action: TListNotification); override;
public
function AddItem: PResourceItem;
procedure AddResource(const FileName: String; ResType: TUserResourceType; const ResName: String);
property Items[AIndex: Integer]: PResourceItem read GetItem; default;
end;
{ TProjectUserResources }
TProjectUserResources = class(TAbstractProjectResource)
private
FList: TResourceList;
public
constructor Create; override;
destructor Destroy; override;
function UpdateResources(AResources: TAbstractProjectResources;
const MainFilename: string): Boolean; override;
procedure WriteToProjectFile(AConfig: {TXMLConfig}TObject; const Path: String); override;
procedure ReadFromProjectFile(AConfig: {TXMLConfig}TObject; const Path: String); override;
property List: TResourceList read FList;
end;
const
ResourceTypeToStr: array[TUserResourceType] of String = (
{ rtIcon } 'ICON',
{ rtCursor } 'CURSOR',
{ rtBitmap } 'BITMAP',
{ rtHTML } 'HTML',
{ rtRCData } 'RCDATA'
);
function StrToResourceType(const AStr: String): TUserResourceType;
implementation
function StrToResourceType(const AStr: String): TUserResourceType;
begin
case AStr of
'ICON': Result := rtIcon;
'CURSOR': Result := rtCursor;
'BITMAP': Result := rtBitmap;
'HTML': Result := rtHTML;
else
Result := rtRCData;
end;
end;
{ TResourceItem }
procedure TResourceItem.ReadFromProjectFile(AConfig: TXMLConfig;
const Path: String);
begin
FileName := AConfig.GetValue(Path + 'FileName', '');
ResType := StrToResourceType(AConfig.GetValue(Path + 'Type', ''));
ResName := AConfig.GetValue(Path + 'ResourceName', '');
end;
procedure TResourceItem.WriteToProjectFile(AConfig: TXMLConfig;
const Path: String);
begin
AConfig.SetValue(Path + 'FileName', FileName);
AConfig.SetValue(Path + 'Type', ResourceTypeToStr[ResType]);
AConfig.SetValue(Path + 'ResourceName', ResName);
end;
function TResourceItem.CreateResource(const ProjectDirectory: String): TAbstractResource;
var
Stream: TFileStream;
TypeDesc, NameDesc: TResourceDesc;
RealFileName: String;
begin
Result := nil;
RealFileName := GetRealFileName(ProjectDirectory);
if FileExistsUTF8(RealFileName) then
begin
Stream := TFileStream.Create(UTF8ToSys(RealFileName), fmOpenRead or fmShareDenyWrite);
try
NameDesc := TResourceDesc.Create(ResName);
case ResType of
rtIcon:
begin
Result := TGroupIconResource.Create(nil, NameDesc);
TGroupResource(Result).ItemData.CopyFrom(Stream, Stream.Size)
end;
rtCursor:
begin
Result := TGroupCursorResource.Create(nil, NameDesc);
TGroupResource(Result).ItemData.CopyFrom(Stream, Stream.Size)
end;
rtBitmap:
begin
Result := TBitmapResource.Create(nil, NameDesc);
TBitmapResource(Result).BitmapData.CopyFrom(Stream, Stream.Size);
end;
rtHTML:
begin
TypeDesc := TResourceDesc.Create(RT_HTML);
Result := TGenericResource.Create(TypeDesc, NameDesc);
TypeDesc.Free;
TGenericResource(Result).RawData.CopyFrom(Stream, Stream.Size)
end;
rtRCData:
begin
TypeDesc := TResourceDesc.Create(RT_RCDATA);
Result := TGenericResource.Create(TypeDesc, NameDesc);
TypeDesc.Free;
TGenericResource(Result).RawData.CopyFrom(Stream, Stream.Size)
end;
end;
NameDesc.Free;
finally
Stream.Free;
end;
end
else
AddIDEMessage(mluError,Format(lisFileNotFound2, [Filename]));
end;
function TResourceItem.GetRealFileName(const ProjectDirectory: String): String;
begin
Result := FileName;
if not IDEMacros.SubstituteMacros(Result) then
debugln(['TResourceItem.GetRealFileName failed FileName="', FileName, '"']);
Result := TrimFilename(Result);
ForcePathDelims(Result);
if not FilenameIsAbsolute(Result) then
Result := TrimFilename(AppendPathDelim(ProjectDirectory) + Result);
end;
{ TResourceList }
function TResourceList.GetItem(AIndex: Integer): PResourceItem;
begin
Result := PResourceItem(inherited Get(AIndex));
end;
procedure TResourceList.Notify(Ptr: Pointer; Action: TListNotification);
begin
if Action = lnDeleted then
Dispose(PResourceItem(Ptr))
else
inherited Notify(Ptr, Action);
end;
function TResourceList.AddItem: PResourceItem;
begin
New(Result);
Add(Result);
end;
procedure TResourceList.AddResource(const FileName: String;
ResType: TUserResourceType; const ResName: String);
var
Data: PResourceItem;
begin
Data := AddItem;
Data^.FileName := FileName;
Data^.ResType := ResType;
Data^.ResName := ResName;
end;
function TProjectUserResources.UpdateResources(AResources: TAbstractProjectResources; const MainFilename: string): Boolean;
var
I: Integer;
ARes: TAbstractResource;
ProjectDirectory: String;
begin
Result := True;
ProjectDirectory := ExtractFilePath(MainFileName);
for I := 0 to List.Count - 1 do
begin
ARes := List[I]^.CreateResource(ProjectDirectory);
if Assigned(ARes) then
AResources.AddSystemResource(ARes);
end;
end;
procedure TProjectUserResources.WriteToProjectFile(AConfig: TObject;
const Path: String);
var
I: Integer;
begin
TXMLConfig(AConfig).SetDeleteValue(Path+'General/Resources/Count', List.Count, 0);
for I := 0 to List.Count - 1 do
List[I]^.WriteToProjectFile(TXMLConfig(AConfig), Path + 'General/Resources/Resource_' + IntToStr(I) + '/')
end;
procedure TProjectUserResources.ReadFromProjectFile(AConfig: TObject;
const Path: String);
var
I, Count: Integer;
begin
List.Clear;
Count := TXMLConfig(AConfig).GetValue(Path+'General/Resources/Count', 0);
for I := 0 to Count - 1 do
List.AddItem^.ReadFromProjectFile(TXMLConfig(AConfig), Path + 'General/Resources/Resource_' + IntToStr(I) + '/')
end;
constructor TProjectUserResources.Create;
begin
inherited Create;
FList := TResourceList.Create;
end;
destructor TProjectUserResources.Destroy;
begin
FList.Free;
inherited Destroy;
end;
initialization
RegisterProjectResource(TProjectUserResources);
end.
|