From 756dc7936517ff71bddb95dd2a0fcbf82790b947 Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 21 Nov 2002 22:36:38 +0000 Subject: [PATCH] Custom uninstaller page git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1808 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/gfx.nsi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Examples/gfx.nsi b/Examples/gfx.nsi index be02f31a..9be2bbe5 100644 --- a/Examples/gfx.nsi +++ b/Examples/gfx.nsi @@ -78,12 +78,19 @@ UninstallText "Another page..." ; Uninstall pages UninstPage uninstConfirm un.uninstImage +UninstPage custom un.customPage UninstPage instfiles un.instImage Function un.uninstImage !insertmacro BIMAGE "${NSISDIR}\Contrib\Icons\checksX.bmp" /RESIZETOFIT FunctionEnd +Function un.customPage + !insertmacro BIMAGE "${NSISDIR}\Contrib\Icons\modern.bmp" /RESIZETOFIT + MessageBox MB_OK 'This is a nice uninstaller custom "page" with yet another image :P' + #insert install options/start menu/ here +FunctionEnd + Function un.instImage !insertmacro BIMAGE "${NSISDIR}\Contrib\Icons\jarsonic-checks.bmp" /RESIZETOFIT FunctionEnd