2004-11-27 14:50:43 +00:00
|
|
|
;NSIS Modern User Interface
|
2003-03-09 18:55:57 +00:00
|
|
|
;Header Bitmap Example Script
|
|
|
|
;Written by Joost Verburg
|
|
|
|
|
2003-05-25 20:21:21 +00:00
|
|
|
;--------------------------------
|
|
|
|
;Include Modern UI
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2008-01-27 17:24:40 +00:00
|
|
|
!include "MUI2.nsh"
|
2003-03-09 18:55:57 +00:00
|
|
|
|
|
|
|
;--------------------------------
|
2004-02-06 23:01:57 +00:00
|
|
|
;General
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2004-02-06 23:01:57 +00:00
|
|
|
;Name and file
|
2004-11-27 14:50:43 +00:00
|
|
|
Name "Modern UI Test"
|
2003-03-09 18:55:57 +00:00
|
|
|
OutFile "HeaderBitmap.exe"
|
2019-02-11 16:04:47 +00:00
|
|
|
Unicode True
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2004-01-07 19:21:00 +00:00
|
|
|
;Default installation folder
|
2008-02-04 01:35:09 +00:00
|
|
|
InstallDir "$LOCALAPPDATA\Modern UI Test"
|
2003-03-09 22:38:13 +00:00
|
|
|
|
2004-01-07 19:21:00 +00:00
|
|
|
;Get installation folder from registry if available
|
2003-09-09 16:06:37 +00:00
|
|
|
InstallDirRegKey HKCU "Software\Modern UI Test" ""
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2008-02-04 01:35:09 +00:00
|
|
|
;Request application privileges for Windows Vista
|
2008-01-27 17:24:40 +00:00
|
|
|
RequestExecutionLevel user
|
|
|
|
|
2003-09-04 18:42:21 +00:00
|
|
|
;--------------------------------
|
2004-02-06 23:01:57 +00:00
|
|
|
;Interface Configuration
|
2003-09-04 18:42:21 +00:00
|
|
|
|
2003-10-22 19:23:45 +00:00
|
|
|
!define MUI_HEADERIMAGE
|
2005-01-21 15:32:11 +00:00
|
|
|
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\nsis.bmp" ; optional
|
2003-09-04 18:42:21 +00:00
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
|
2003-03-09 18:55:57 +00:00
|
|
|
;--------------------------------
|
2003-05-25 20:21:21 +00:00
|
|
|
;Pages
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2005-06-19 21:39:04 +00:00
|
|
|
!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
|
2003-05-25 20:21:21 +00:00
|
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2003-05-25 20:21:21 +00:00
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
2003-03-09 18:55:57 +00:00
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Languages
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Installer Sections
|
|
|
|
|
2003-06-10 19:32:00 +00:00
|
|
|
Section "Dummy Section" SecDummy
|
2003-03-09 18:55:57 +00:00
|
|
|
|
|
|
|
SetOutPath "$INSTDIR"
|
2003-06-10 19:32:00 +00:00
|
|
|
|
2004-02-06 23:01:57 +00:00
|
|
|
;ADD YOUR OWN FILES HERE...
|
2003-03-09 18:55:57 +00:00
|
|
|
|
2004-01-07 19:21:00 +00:00
|
|
|
;Store installation folder
|
2003-09-09 16:06:37 +00:00
|
|
|
WriteRegStr HKCU "Software\Modern UI Test" "" $INSTDIR
|
2003-03-09 22:38:13 +00:00
|
|
|
|
2003-03-09 18:55:57 +00:00
|
|
|
;Create uninstaller
|
|
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Descriptions
|
|
|
|
|
2004-01-07 19:21:00 +00:00
|
|
|
;Language strings
|
2003-06-10 19:32:00 +00:00
|
|
|
LangString DESC_SecDummy ${LANG_ENGLISH} "A test section."
|
2003-05-25 20:21:21 +00:00
|
|
|
|
2004-01-07 19:21:00 +00:00
|
|
|
;Assign language strings to sections
|
2003-09-04 18:42:21 +00:00
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
2003-06-10 19:32:00 +00:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy)
|
2003-09-04 18:42:21 +00:00
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
2003-03-09 18:55:57 +00:00
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Uninstaller Section
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
|
2004-02-06 23:01:57 +00:00
|
|
|
;ADD YOUR OWN FILES HERE...
|
2003-03-09 18:55:57 +00:00
|
|
|
|
|
|
|
Delete "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
|
|
RMDir "$INSTDIR"
|
|
|
|
|
2003-09-09 16:06:37 +00:00
|
|
|
DeleteRegKey /ifempty HKCU "Software\Modern UI Test"
|
2003-03-09 22:38:13 +00:00
|
|
|
|
2003-03-09 18:55:57 +00:00
|
|
|
SectionEnd
|