mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-25 06:50:17 +00:00
more installer fixes and watercolor lite 2.1.1 theme
This commit is contained in:
@@ -64,6 +64,13 @@ Root: HKCR; Subkey: "irc\shell\open\command"; ValueType: string; ValueName: "";
|
||||
Filename: "{app}\xchat.exe"; Description: "Run XChat-WDK after closing the Wizard"; Flags: nowait postinstall skipifsilent
|
||||
|
||||
[Files]
|
||||
; Add the ISSkin DLL used for skinning Inno Setup installations.
|
||||
Source: ISSkinU.dll; DestDir: {app}; Flags: dontcopy
|
||||
|
||||
; Add the Visual Style resource contains resources used for skinning,
|
||||
; you can also use Microsoft Visual Styles (*.msstyles) resources.
|
||||
Source: watercolorlite-green.cjstyles; DestDir: {tmp}; Flags: dontcopy
|
||||
|
||||
Source: "portable-mode"; DestDir: "{app}"; Tasks: portable
|
||||
|
||||
Source: "cert.pem"; DestDir: "{app}"; Components: libs
|
||||
@@ -204,3 +211,31 @@ begin
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
// Importing LoadSkin API from ISSkin.DLL
|
||||
procedure LoadSkin(lpszPath: String; lpszIniFileName: String);
|
||||
external 'LoadSkin@files:isskinu.dll stdcall';
|
||||
|
||||
// Importing UnloadSkin API from ISSkin.DLL
|
||||
procedure UnloadSkin();
|
||||
external 'UnloadSkin@files:isskinu.dll stdcall';
|
||||
|
||||
// Importing ShowWindow Windows API from User32.DLL
|
||||
function ShowWindow(hWnd: Integer; uType: Integer): Integer;
|
||||
external 'ShowWindow@user32.dll stdcall';
|
||||
|
||||
function InitializeSetup(): Boolean;
|
||||
begin
|
||||
ExtractTemporaryFile('watercolorlite-green.cjstyles');
|
||||
LoadSkin(ExpandConstant('{tmp}\watercolorlite-green.cjstyles'), '');
|
||||
Result := True;
|
||||
end;
|
||||
|
||||
procedure DeinitializeSetup();
|
||||
begin
|
||||
// Hide Window before unloading skin so user does not get
|
||||
// a glimpse of an unskinned window before it is closed.
|
||||
ShowWindow(StrToInt(ExpandConstant('{wizardhwnd}')), 0);
|
||||
UnloadSkin();
|
||||
end;
|
||||
|
||||
Reference in New Issue
Block a user