Add extra icons to an installer: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
m (Reverted edits by 211.76.175.5 to last version by Kichik)
 
(12 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{PageAuthor|CancerFace}}
{{PageAuthor|CancerFace}}
NSIS forum [http://forums.winamp.com/showthread.php?s=&threadid=243640 thread]
NSIS forum [http://forums.winamp.com/showthread.php?s=&threadid=243640 thread]


Line 6: Line 7:
== Description ==
== Description ==
This example demonstrates how to add more icons to an installer and then call and display them on some part of the installer.
This example demonstrates how to add more icons to an installer and then call and display them on some part of the installer.
==Screenshot==
[[File:DropDown.png]]


== Code ==
== Code ==
Create a file called 'header.cmd' and place it inside your project directory. This file should contain the following:
Create a file called 'header.cmd' and place it inside your project directory. This file should contain the following:
<highlight-nsis>
<highlight-nsis>
@echo off
"%ProgramFiles%\Resource Hacker\ResHacker.exe" -add "%TEMP%\exehead.dat", "%TEMP%\exehead.dat", "%~dps0icons\SomeIcon.ico" , ICONGROUP,101,
"%ProgramFiles%\Resource Hacker\ResHacker.exe" -add "%TEMP%\exehead.dat", "%TEMP%\exehead.dat", "%~dps0icons\SomeIcon.ico" , ICONGROUP,101,
upx --best --compress-icons=0 "%TEMP%\exehead.dat"
upx --best --compress-icons=0 "%TEMP%\exehead.dat"
Line 26: Line 31:
!define IMAGE_ICON 1
!define IMAGE_ICON 1
# Get a handle for some window on $R1 and some field on that window on $R2 (define those somewhere)
# Get a handle for some window on $R1 and some field on that window on $R2 (define those somewhere)
FindWindow $R1 "#32770" "" $HWNDPARENT
StrCpy $R2 1239
GetDlgItem $0 $R1 $R2
GetDlgItem $0 $R1 $R2
System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1'
System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1'

Latest revision as of 22:19, 7 March 2009

Author: CancerFace (talk, contrib)


NSIS forum thread


Description

This example demonstrates how to add more icons to an installer and then call and display them on some part of the installer.

Screenshot

DropDown.png

Code

Create a file called 'header.cmd' and place it inside your project directory. This file should contain the following:

@echo off
"%ProgramFiles%\Resource Hacker\ResHacker.exe" -add "%TEMP%\exehead.dat", "%TEMP%\exehead.dat", "%~dps0icons\SomeIcon.ico" , ICONGROUP,101,
upx --best --compress-icons=0 "%TEMP%\exehead.dat"

The above will add an icon called SomeIcon.ico located in a subfolder called icons within your project's folder to the header of the installer and then will compress the header using UPX

In order to add the extra icon to the header of the installer use inside your NSIS script the following:

!packhdr "$%TEMP%\exehead.dat" 'header.cmd'


The icon can be loaded and displayed now by using the following code:

!define LR_SHARED	0x8000
!define IMAGE_ICON	1
# Get a handle for some window on $R1 and some field on that window on $R2 (define those somewhere)
FindWindow $R1 "#32770" "" $HWNDPARENT
StrCpy $R2 1239
GetDlgItem $0 $R1 $R2
System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1'
System::Call 'kernel32::GetModuleHandleA(t R0)i .r2'
System::Call 'user32::LoadImage(i r2, i 101, i ${IMAGE_ICON}, , , i ${LR_SHARED}) i.R0'
SendMessage $0 ${STM_SETICON} $R0 0

Resources and Links


API Functions used: