2007-03-22 10:30:00 -07:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Mozilla Installer code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Mozilla Foundation
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2006
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Robert Strong <robert.bugzilla@gmail.com>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
# Required Plugins:
|
2010-05-14 17:24:01 -07:00
|
|
|
# AppAssocReg http://nsis.sourceforge.net/Application_Association_Registration_plug-in
|
|
|
|
# ApplicationID http://nsis.sourceforge.net/ApplicationID_plug-in
|
|
|
|
# ShellLink http://nsis.sourceforge.net/ShellLink_plug-in
|
|
|
|
# UAC http://nsis.sourceforge.net/UAC_plug-in
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
; Set verbosity to 3 (e.g. no script) to lessen the noise in the build logs
|
|
|
|
!verbose 3
|
|
|
|
|
|
|
|
; 7-Zip provides better compression than the lzma from NSIS so we add the files
|
|
|
|
; uncompressed and use 7-Zip to create a SFX archive of it
|
|
|
|
SetDatablockOptimize on
|
|
|
|
SetCompress off
|
|
|
|
CRCCheck on
|
|
|
|
|
2008-07-27 18:46:47 -07:00
|
|
|
RequestExecutionLevel user
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
!addplugindir ./
|
|
|
|
|
|
|
|
Var TmpVal
|
|
|
|
Var StartMenuDir
|
|
|
|
Var InstallType
|
|
|
|
Var AddStartMenuSC
|
|
|
|
Var AddQuickLaunchSC
|
|
|
|
Var AddDesktopSC
|
2009-03-19 11:56:47 -07:00
|
|
|
Var PageName
|
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
; On Vista and above attempt to elevate Standard Users in addition to users that
|
|
|
|
; are a member of the Administrators group.
|
|
|
|
!define NONADMIN_ELEVATE
|
|
|
|
|
2009-03-19 11:56:47 -07:00
|
|
|
!define AbortSurveyURL "http://www.kampyle.com/feedback_form/ff-feedback-form.php?site_code=8166124&form_id=12116&url="
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
; Other included files may depend upon these includes!
|
|
|
|
; The following includes are provided by NSIS.
|
|
|
|
!include FileFunc.nsh
|
|
|
|
!include LogicLib.nsh
|
2008-07-27 18:46:47 -07:00
|
|
|
!include MUI.nsh
|
2007-03-22 10:30:00 -07:00
|
|
|
!include WinMessages.nsh
|
2008-07-27 18:46:47 -07:00
|
|
|
!include WinVer.nsh
|
2007-03-22 10:30:00 -07:00
|
|
|
!include WordFunc.nsh
|
2007-09-17 19:47:34 -07:00
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
!insertmacro GetOptions
|
|
|
|
!insertmacro GetParameters
|
|
|
|
!insertmacro GetSize
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro StrFilter
|
2009-03-19 11:56:47 -07:00
|
|
|
!insertmacro WordFind
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro WordReplace
|
|
|
|
|
|
|
|
; The following includes are custom.
|
|
|
|
!include branding.nsi
|
|
|
|
!include defines.nsi
|
|
|
|
!include common.nsh
|
|
|
|
!include locales.nsi
|
|
|
|
|
|
|
|
VIAddVersionKey "FileDescription" "${BrandShortName} Installer"
|
2008-07-27 18:46:47 -07:00
|
|
|
VIAddVersionKey "OriginalFilename" "setup.exe"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
; Must be inserted before other macros that use logging
|
|
|
|
!insertmacro _LoggingCommon
|
|
|
|
|
2009-01-12 22:17:49 -08:00
|
|
|
; Most commonly used macros for managing shortcuts
|
|
|
|
!insertmacro _LoggingShortcutsCommon
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
!insertmacro AddDDEHandlerValues
|
2007-10-19 14:26:30 -07:00
|
|
|
!insertmacro ChangeMUIHeaderImage
|
2007-11-30 11:02:09 -08:00
|
|
|
!insertmacro CheckForFilesInUse
|
2008-03-21 14:35:39 -07:00
|
|
|
!insertmacro CleanUpdatesDir
|
2007-11-30 11:02:09 -08:00
|
|
|
!insertmacro CopyFilesFromDir
|
2007-08-22 14:38:03 -07:00
|
|
|
!insertmacro CreateRegKey
|
2009-01-12 22:17:49 -08:00
|
|
|
!insertmacro FindSMProgramsDir
|
2007-09-29 02:48:32 -07:00
|
|
|
!insertmacro GetPathFromString
|
2007-10-19 14:26:30 -07:00
|
|
|
!insertmacro GetParent
|
2007-09-29 02:48:32 -07:00
|
|
|
!insertmacro IsHandlerForInstallDir
|
2007-09-21 15:09:04 -07:00
|
|
|
!insertmacro ManualCloseAppPrompt
|
2007-09-29 02:48:32 -07:00
|
|
|
!insertmacro RegCleanAppHandler
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro RegCleanMain
|
|
|
|
!insertmacro RegCleanUninstall
|
2010-08-12 21:09:06 -07:00
|
|
|
!insertmacro SetAppLSPCategories
|
2007-10-24 00:02:57 -07:00
|
|
|
!insertmacro SetBrandNameVars
|
2010-05-14 17:24:50 -07:00
|
|
|
!insertmacro UpdateShortcutAppModelIDs
|
2007-10-19 14:26:30 -07:00
|
|
|
!insertmacro UnloadUAC
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro WriteRegStr2
|
|
|
|
!insertmacro WriteRegDWORD2
|
|
|
|
|
|
|
|
!include shared.nsh
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
; Helper macros for ui callbacks. Insert these after shared.nsh
|
|
|
|
!insertmacro CheckCustomCommon
|
|
|
|
!insertmacro InstallEndCleanupCommon
|
|
|
|
!insertmacro InstallOnInitCommon
|
|
|
|
!insertmacro InstallStartCleanupCommon
|
|
|
|
!insertmacro LeaveDirectoryCommon
|
2010-06-21 18:17:18 -07:00
|
|
|
!insertmacro LeaveOptionsCommon
|
2007-10-19 14:26:30 -07:00
|
|
|
!insertmacro OnEndCommon
|
2007-09-17 19:47:34 -07:00
|
|
|
!insertmacro PreDirectoryCommon
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
Name "${BrandFullName}"
|
|
|
|
OutFile "setup.exe"
|
2010-08-27 18:25:25 -07:00
|
|
|
!ifdef HAVE_64BIT_OS
|
|
|
|
InstallDir "$PROGRAMFILES64\${BrandFullName}\"
|
|
|
|
!else
|
|
|
|
InstallDir "$PROGRAMFILES32\${BrandFullName}\"
|
|
|
|
!endif
|
2007-03-22 10:30:00 -07:00
|
|
|
ShowInstDetails nevershow
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Modern User Interface - MUI
|
|
|
|
|
2009-03-19 11:56:47 -07:00
|
|
|
!define MOZ_MUI_CUSTOM_ABORT
|
|
|
|
!define MUI_CUSTOMFUNCTION_ABORT "CustomAbort"
|
2007-03-22 10:30:00 -07:00
|
|
|
!define MUI_ICON setup.ico
|
|
|
|
!define MUI_UNICON setup.ico
|
|
|
|
!define MUI_WELCOMEPAGE_TITLE_3LINES
|
|
|
|
!define MUI_HEADERIMAGE
|
|
|
|
!define MUI_HEADERIMAGE_RIGHT
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP wizWatermark.bmp
|
|
|
|
|
|
|
|
; Use a right to left header image when the language is right to left
|
|
|
|
!ifdef ${AB_CD}_rtl
|
|
|
|
!define MUI_HEADERIMAGE_BITMAP_RTL wizHeaderRTL.bmp
|
|
|
|
!else
|
|
|
|
!define MUI_HEADERIMAGE_BITMAP wizHeader.bmp
|
|
|
|
!endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Installation Pages
|
|
|
|
*/
|
|
|
|
; Welcome Page
|
2007-10-19 14:26:30 -07:00
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_PRE preWelcome
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
|
|
|
|
; Custom Options Page
|
|
|
|
Page custom preOptions leaveOptions
|
|
|
|
|
|
|
|
; Select Install Directory Page
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_PRE preDirectory
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE leaveDirectory
|
|
|
|
!define MUI_DIRECTORYPAGE_VERIFYONLEAVE
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
|
|
|
|
; Custom Shortcuts Page
|
|
|
|
Page custom preShortcuts leaveShortcuts
|
|
|
|
|
|
|
|
; Start Menu Folder Page Configuration
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_PRE preStartMenu
|
2007-11-30 11:02:09 -08:00
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE leaveStartMenu
|
2007-03-22 10:30:00 -07:00
|
|
|
!define MUI_STARTMENUPAGE_NODISABLE
|
|
|
|
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuDir
|
|
|
|
|
2007-09-21 15:09:04 -07:00
|
|
|
; Custom Summary Page
|
|
|
|
Page custom preSummary leaveSummary
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
; Install Files Page
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
|
|
|
|
; Finish Page
|
|
|
|
!define MUI_FINISHPAGE_TITLE_3LINES
|
|
|
|
!define MUI_FINISHPAGE_RUN
|
|
|
|
!define MUI_FINISHPAGE_RUN_FUNCTION LaunchApp
|
|
|
|
!define MUI_FINISHPAGE_RUN_TEXT $(LAUNCH_TEXT)
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_PRE preFinish
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
; Use the default dialog for IDD_VERIFY for a simple Banner
|
|
|
|
ChangeUI IDD_VERIFY "${NSISDIR}\Contrib\UIs\default.exe"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
################################################################################
|
|
|
|
# Install Sections
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
; Cleanup operations to perform at the start of the installation.
|
|
|
|
Section "-InstallStartCleanup"
|
|
|
|
SetDetailsPrint both
|
2007-03-22 10:30:00 -07:00
|
|
|
DetailPrint $(STATUS_CLEANUP)
|
|
|
|
SetDetailsPrint none
|
|
|
|
|
2007-10-19 14:26:30 -07:00
|
|
|
SetOutPath "$INSTDIR"
|
2007-09-17 19:47:34 -07:00
|
|
|
${StartInstallLog} "${BrandFullName}" "${AB_CD}" "${AppVersion}" "${GREVersion}"
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
; Delete the app exe to prevent launching the app while we are installing.
|
|
|
|
ClearErrors
|
|
|
|
${DeleteFile} "$INSTDIR\${FileMainEXE}"
|
|
|
|
${If} ${Errors}
|
|
|
|
; If the user closed the application it can take several seconds for it to
|
|
|
|
; shut down completely. If the application is being used by another user we
|
|
|
|
; can rename the file and then delete is when the system is restarted.
|
|
|
|
Sleep 5000
|
|
|
|
${DeleteFile} "$INSTDIR\${FileMainEXE}"
|
2007-03-22 10:30:00 -07:00
|
|
|
ClearErrors
|
|
|
|
${EndIf}
|
|
|
|
|
2008-03-21 14:35:39 -07:00
|
|
|
; Remove the updates directory for Vista and above
|
|
|
|
${CleanUpdatesDir} "Mozilla\Firefox"
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
${InstallStartCleanupCommon}
|
|
|
|
SectionEnd
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
Section "-Application" APP_IDX
|
|
|
|
${StartUninstallLog}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
SetDetailsPrint both
|
2007-03-22 10:30:00 -07:00
|
|
|
DetailPrint $(STATUS_INSTALL_APP)
|
|
|
|
SetDetailsPrint none
|
2007-09-17 19:47:34 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
${LogHeader} "Installing Main Files"
|
2010-08-12 21:36:16 -07:00
|
|
|
${CopyFilesFromDir} "$EXEDIR\core" "$INSTDIR" \
|
2007-11-30 11:02:09 -08:00
|
|
|
"$(ERROR_CREATE_DIRECTORY_PREFIX)" \
|
|
|
|
"$(ERROR_CREATE_DIRECTORY_SUFFIX)"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
; Register DLLs
|
|
|
|
; XXXrstrong - AccessibleMarshal.dll can be used by multiple applications but
|
|
|
|
; is only registered for the last application installed. When the last
|
|
|
|
; application installed is uninstalled AccessibleMarshal.dll will no longer be
|
|
|
|
; registered. bug 338878
|
|
|
|
${LogHeader} "DLL Registration"
|
|
|
|
ClearErrors
|
2010-08-27 18:25:25 -07:00
|
|
|
${RegisterDLL} "$INSTDIR\AccessibleMarshal.dll"
|
2007-03-22 10:30:00 -07:00
|
|
|
${If} ${Errors}
|
|
|
|
${LogMsg} "** ERROR Registering: $INSTDIR\AccessibleMarshal.dll **"
|
|
|
|
${Else}
|
|
|
|
${LogUninstall} "DLLReg: \AccessibleMarshal.dll"
|
|
|
|
${LogMsg} "Registered: $INSTDIR\AccessibleMarshal.dll"
|
|
|
|
${EndIf}
|
|
|
|
|
2009-01-12 22:17:49 -08:00
|
|
|
; Write extra files created by the application to the uninstall log so they
|
2007-03-22 10:30:00 -07:00
|
|
|
; will be removed when the application is uninstalled. To remove an empty
|
|
|
|
; directory write a bogus filename to the deepest directory and all empty
|
|
|
|
; parent directories will be removed.
|
|
|
|
${LogUninstall} "File: \components\compreg.dat"
|
|
|
|
${LogUninstall} "File: \components\xpti.dat"
|
|
|
|
${LogUninstall} "File: \active-update.xml"
|
|
|
|
${LogUninstall} "File: \install.log"
|
|
|
|
${LogUninstall} "File: \install_status.log"
|
|
|
|
${LogUninstall} "File: \install_wizard.log"
|
|
|
|
${LogUninstall} "File: \updates.xml"
|
|
|
|
|
|
|
|
ClearErrors
|
|
|
|
|
|
|
|
; Default for creating Start Menu folder and shortcuts
|
|
|
|
; (1 = create, 0 = don't create)
|
|
|
|
${If} $AddStartMenuSC == ""
|
|
|
|
StrCpy $AddStartMenuSC "1"
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
; Default for creating Quick Launch shortcut (1 = create, 0 = don't create)
|
|
|
|
${If} $AddQuickLaunchSC == ""
|
|
|
|
StrCpy $AddQuickLaunchSC "1"
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
; Default for creating Desktop shortcut (1 = create, 0 = don't create)
|
|
|
|
${If} $AddDesktopSC == ""
|
|
|
|
StrCpy $AddDesktopSC "1"
|
|
|
|
${EndIf}
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
${LogHeader} "Adding Registry Entries"
|
2007-03-22 10:30:00 -07:00
|
|
|
SetShellVarContext current ; Set SHCTX to HKCU
|
|
|
|
${RegCleanMain} "Software\Mozilla"
|
2007-09-17 19:47:34 -07:00
|
|
|
${RegCleanUninstall}
|
2008-07-27 18:58:27 -07:00
|
|
|
${UpdateProtocolHandlers}
|
2007-09-17 19:47:34 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ClearErrors
|
2009-02-04 20:36:16 -08:00
|
|
|
WriteRegStr HKLM "Software\Mozilla" "${BrandShortName}InstallerTest" "Write Test"
|
2007-03-22 10:30:00 -07:00
|
|
|
${If} ${Errors}
|
|
|
|
StrCpy $TmpVal "HKCU" ; used primarily for logging
|
|
|
|
${Else}
|
|
|
|
SetShellVarContext all ; Set SHCTX to HKLM
|
2009-02-04 20:36:16 -08:00
|
|
|
DeleteRegValue HKLM "Software\Mozilla" "${BrandShortName}InstallerTest"
|
2007-03-22 10:30:00 -07:00
|
|
|
StrCpy $TmpVal "HKLM" ; used primarily for logging
|
2007-09-29 02:48:32 -07:00
|
|
|
${RegCleanMain} "Software\Mozilla"
|
|
|
|
${RegCleanUninstall}
|
2008-07-27 18:58:27 -07:00
|
|
|
${UpdateProtocolHandlers}
|
2007-10-23 10:34:39 -07:00
|
|
|
|
|
|
|
ReadRegStr $0 HKLM "Software\mozilla.org\Mozilla" "CurrentVersion"
|
|
|
|
${If} "$0" != "${GREVersion}"
|
|
|
|
WriteRegStr HKLM "Software\mozilla.org\Mozilla" "CurrentVersion" "${GREVersion}"
|
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndIf}
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
${RemoveDeprecatedKeys}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
; The previous installer adds several regsitry values to both HKLM and HKCU.
|
|
|
|
; We now try to add to HKLM and if that fails to HKCU
|
|
|
|
|
|
|
|
; The order that reg keys and values are added is important if you use the
|
|
|
|
; uninstall log to remove them on uninstall. When using the uninstall log you
|
|
|
|
; MUST add children first so they will be removed first on uninstall so they
|
|
|
|
; will be empty when the key is deleted. This allows the uninstaller to
|
|
|
|
; specify that only empty keys will be deleted.
|
|
|
|
${SetAppKeys}
|
|
|
|
|
|
|
|
${FixClassKeys}
|
2007-09-29 02:48:32 -07:00
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
; Uninstall keys can only exist under HKLM on some versions of windows. Since
|
|
|
|
; it doesn't cause problems always add them.
|
|
|
|
${SetUninstallKeys}
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
; On install always add the FirefoxHTML and FirefoxURL keys.
|
2008-12-22 11:05:01 -08:00
|
|
|
; An empty string is used for the 5th param because FirefoxHTML and FirefoxURL
|
|
|
|
; are not protocol handlers.
|
|
|
|
${GetLongPath} "$INSTDIR\${FileMainEXE}" $8
|
|
|
|
StrCpy $2 "$\"$8$\" -requestPending -osint -url $\"%1$\""
|
|
|
|
StrCpy $3 "$\"%1$\",,0,0,,,,"
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
${AddDDEHandlerValues} "FirefoxHTML" "$2" "$8,1" "${AppRegName} Document" "" \
|
|
|
|
"${DDEApplication}" "$3" "WWW_OpenURL"
|
|
|
|
|
|
|
|
${AddDDEHandlerValues} "FirefoxURL" "$2" "$8,1" "${AppRegName} URL" "true" \
|
|
|
|
"${DDEApplication}" "$3" "WWW_OpenURL"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
; The following keys should only be set if we can write to HKLM
|
|
|
|
${If} $TmpVal == "HKLM"
|
|
|
|
; Set the Start Menu Internet and Vista Registered App HKLM registry keys.
|
|
|
|
${SetStartMenuInternet}
|
2009-05-20 15:49:24 -07:00
|
|
|
${FixShellIconHandler}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
; If we are writing to HKLM and create the quick launch and the desktop
|
|
|
|
; shortcuts set IconsVisible to 1 otherwise to 0.
|
2007-09-29 02:48:32 -07:00
|
|
|
${StrFilter} "${FileMainEXE}" "+" "" "" $R9
|
|
|
|
StrCpy $0 "Software\Clients\StartMenuInternet\$R9\InstallInfo"
|
2007-03-22 10:30:00 -07:00
|
|
|
${If} $AddQuickLaunchSC == 1
|
|
|
|
${OrIf} $AddDesktopSC == 1
|
|
|
|
WriteRegDWORD HKLM "$0" "IconsVisible" 1
|
|
|
|
${Else}
|
|
|
|
WriteRegDWORD HKLM "$0" "IconsVisible" 0
|
|
|
|
${EndIf}
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
; These need special handling on uninstall since they may be overwritten by
|
|
|
|
; an install into a different location.
|
|
|
|
StrCpy $0 "Software\Microsoft\Windows\CurrentVersion\App Paths\${FileMainEXE}"
|
|
|
|
${WriteRegStr2} $TmpVal "$0" "" "$INSTDIR\${FileMainEXE}" 0
|
|
|
|
${WriteRegStr2} $TmpVal "$0" "Path" "$INSTDIR" 0
|
|
|
|
|
|
|
|
StrCpy $0 "Software\Microsoft\MediaPlayer\ShimInclusionList\$R9"
|
|
|
|
${CreateRegKey} "$TmpVal" "$0" 0
|
2010-11-11 12:09:25 -08:00
|
|
|
StrCpy $0 "Software\Microsoft\MediaPlayer\ShimInclusionList\plugin-container.exe"
|
|
|
|
${CreateRegKey} "$TmpVal" "$0" 0
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-12 21:09:06 -07:00
|
|
|
${If} $TmpVal == "HKLM"
|
|
|
|
; Set the permitted LSP Categories for WinVista and above
|
|
|
|
${SetAppLSPCategories} ${LSP_CATEGORIES}
|
|
|
|
${EndIf}
|
|
|
|
|
2009-01-12 22:17:49 -08:00
|
|
|
; Create shortcuts
|
2007-03-22 10:30:00 -07:00
|
|
|
${LogHeader} "Adding Shortcuts"
|
2009-01-12 22:17:49 -08:00
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
|
|
|
2009-01-12 22:17:49 -08:00
|
|
|
; Always add the relative path to the application's Start Menu directory and
|
|
|
|
; the application's shortcuts to the shortcuts log ini file. The
|
|
|
|
; DeleteShortcuts macro will do the right thing on uninstall if they don't
|
|
|
|
; exist.
|
|
|
|
${LogSMProgramsDirRelPath} "$StartMenuDir"
|
|
|
|
${LogSMProgramsShortcut} "${BrandFullName}.lnk"
|
|
|
|
${LogSMProgramsShortcut} "${BrandFullName} ($(SAFE_MODE)).lnk"
|
|
|
|
${LogQuickLaunchShortcut} "${BrandFullName}.lnk"
|
|
|
|
${LogDesktopShortcut} "${BrandFullName}.lnk"
|
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
; UAC only allows elevating to an Admin account so there is no need to add
|
|
|
|
; the Start Menu or Desktop shortcuts from the original unelevated process
|
|
|
|
; since this will either add it for the user if unelevated or All Users if
|
|
|
|
; elevated.
|
2007-03-22 10:30:00 -07:00
|
|
|
${If} $AddStartMenuSC == 1
|
2007-09-17 19:47:34 -07:00
|
|
|
${Unless} ${FileExists} "$SMPROGRAMS\$StartMenuDir"
|
|
|
|
CreateDirectory "$SMPROGRAMS\$StartMenuDir"
|
|
|
|
${LogMsg} "Added Start Menu Directory: $SMPROGRAMS\$StartMenuDir"
|
|
|
|
${EndUnless}
|
2009-01-12 22:17:49 -08:00
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuDir\${BrandFullName}.lnk" "$INSTDIR\${FileMainEXE}" "" "$INSTDIR\${FileMainEXE}" 0
|
2010-05-14 17:24:01 -07:00
|
|
|
ApplicationID::Set "$SMPROGRAMS\$StartMenuDir\${BrandFullName}.lnk" "${AppUserModelID}"
|
2009-01-12 22:17:49 -08:00
|
|
|
${LogMsg} "Added Shortcut: $SMPROGRAMS\$StartMenuDir\${BrandFullName}.lnk"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuDir\${BrandFullName} ($(SAFE_MODE)).lnk" "$INSTDIR\${FileMainEXE}" "-safe-mode" "$INSTDIR\${FileMainEXE}" 0
|
2010-05-14 17:24:01 -07:00
|
|
|
ApplicationID::Set "$SMPROGRAMS\$StartMenuDir\${BrandFullName} ($(SAFE_MODE)).lnk" "${AppUserModelID}"
|
2009-01-12 22:17:49 -08:00
|
|
|
${LogMsg} "Added Shortcut: $SMPROGRAMS\$StartMenuDir\${BrandFullName} ($(SAFE_MODE)).lnk"
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndIf}
|
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
${If} $AddDesktopSC == 1
|
|
|
|
CreateShortCut "$DESKTOP\${BrandFullName}.lnk" "$INSTDIR\${FileMainEXE}" "" "$INSTDIR\${FileMainEXE}" 0
|
2010-05-14 17:24:01 -07:00
|
|
|
ApplicationID::Set "$DESKTOP\${BrandFullName}.lnk" "${AppUserModelID}"
|
2007-09-17 19:47:34 -07:00
|
|
|
${LogMsg} "Added Shortcut: $DESKTOP\${BrandFullName}.lnk"
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndIf}
|
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
; If elevated the Quick Launch shortcut must be added from the unelevated
|
|
|
|
; original process.
|
|
|
|
${If} $AddQuickLaunchSC == 1
|
|
|
|
ClearErrors
|
|
|
|
${GetParameters} $0
|
|
|
|
${GetOptions} "$0" "/UAC:" $0
|
|
|
|
${If} ${Errors}
|
|
|
|
Call AddQuickLaunchShortcut
|
|
|
|
${LogMsg} "Added Shortcut: $QUICKLAUNCH\${BrandFullName}.lnk"
|
|
|
|
${Else}
|
|
|
|
; It is not possible to add a log entry from the unelevated process so
|
|
|
|
; add the log entry without the path since there is no simple way to know
|
|
|
|
; the correct full path.
|
|
|
|
${LogMsg} "Added Quick Launch Shortcut: ${BrandFullName}.lnk"
|
|
|
|
GetFunctionAddress $0 AddQuickLaunchShortcut
|
|
|
|
UAC::ExecCodeSegment $0
|
|
|
|
${EndIf}
|
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
SectionEnd
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
; Cleanup operations to perform at the end of the installation.
|
|
|
|
Section "-InstallEndCleanup"
|
|
|
|
SetDetailsPrint both
|
|
|
|
DetailPrint "$(STATUS_CLEANUP)"
|
|
|
|
SetDetailsPrint none
|
2008-04-10 14:02:42 -07:00
|
|
|
|
2008-07-02 13:08:12 -07:00
|
|
|
${Unless} ${Silent}
|
2009-09-04 12:44:23 -07:00
|
|
|
${MUI_INSTALLOPTIONS_READ} $0 "summary.ini" "Field 4" "State"
|
2008-07-02 13:08:12 -07:00
|
|
|
${If} "$0" == "1"
|
|
|
|
${LogHeader} "Setting as the default browser"
|
2009-05-20 15:49:24 -07:00
|
|
|
ClearErrors
|
|
|
|
${GetParameters} $0
|
|
|
|
${GetOptions} "$0" "/UAC:" $0
|
|
|
|
${If} ${Errors}
|
|
|
|
Call SetAsDefaultAppUserHKCU
|
|
|
|
${Else}
|
|
|
|
GetFunctionAddress $0 SetAsDefaultAppUserHKCU
|
|
|
|
UAC::ExecCodeSegment $0
|
|
|
|
${EndIf}
|
2008-07-02 13:08:12 -07:00
|
|
|
${EndIf}
|
|
|
|
${EndUnless}
|
2008-04-10 14:02:42 -07:00
|
|
|
|
2010-05-14 17:24:50 -07:00
|
|
|
; Win7 taskbar and start menu link maintenance
|
2010-09-14 18:48:57 -07:00
|
|
|
${UpdateShortcutAppModelIDs} "$INSTDIR\${FileMainEXE}" "${AppUserModelID}" $0
|
2010-05-14 17:24:50 -07:00
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
; Refresh desktop icons
|
|
|
|
System::Call "shell32::SHChangeNotify(i, i, i, i) v (0x08000000, 0, 0, 0)"
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
${InstallEndCleanupCommon}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
${If} ${RebootFlag}
|
2009-05-20 15:49:24 -07:00
|
|
|
; When a reboot is required give SHChangeNotify time to finish the
|
|
|
|
; refreshing the icons so the OS doesn't display the icons from helper.exe
|
2007-11-30 11:02:09 -08:00
|
|
|
Sleep 10000
|
|
|
|
${LogHeader} "Reboot Required To Finish Installation"
|
|
|
|
; ${FileMainEXE}.moz-upgrade should never exist but just in case...
|
|
|
|
${Unless} ${FileExists} "$INSTDIR\${FileMainEXE}.moz-upgrade"
|
|
|
|
Rename "$INSTDIR\${FileMainEXE}" "$INSTDIR\${FileMainEXE}.moz-upgrade"
|
2007-05-03 16:40:54 -07:00
|
|
|
${EndUnless}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
${If} ${FileExists} "$INSTDIR\${FileMainEXE}"
|
2007-03-22 10:30:00 -07:00
|
|
|
ClearErrors
|
2007-11-30 11:02:09 -08:00
|
|
|
Rename "$INSTDIR\${FileMainEXE}" "$INSTDIR\${FileMainEXE}.moz-delete"
|
|
|
|
${Unless} ${Errors}
|
|
|
|
Delete /REBOOTOK "$INSTDIR\${FileMainEXE}.moz-delete"
|
|
|
|
${EndUnless}
|
2009-04-15 13:31:52 -07:00
|
|
|
${EndIf}
|
2007-11-30 11:02:09 -08:00
|
|
|
|
|
|
|
${Unless} ${FileExists} "$INSTDIR\${FileMainEXE}"
|
|
|
|
CopyFiles /SILENT "$INSTDIR\uninstall\helper.exe" "$INSTDIR"
|
|
|
|
FileOpen $0 "$INSTDIR\${FileMainEXE}" w
|
|
|
|
FileWrite $0 "Will be deleted on restart"
|
|
|
|
Rename /REBOOTOK "$INSTDIR\${FileMainEXE}.moz-upgrade" "$INSTDIR\${FileMainEXE}"
|
|
|
|
FileClose $0
|
|
|
|
Delete "$INSTDIR\${FileMainEXE}"
|
|
|
|
Rename "$INSTDIR\helper.exe" "$INSTDIR\${FileMainEXE}"
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndUnless}
|
2007-11-30 11:02:09 -08:00
|
|
|
${EndIf}
|
|
|
|
SectionEnd
|
|
|
|
|
2009-03-19 11:56:47 -07:00
|
|
|
################################################################################
|
|
|
|
# Install Abort Survey Functions
|
|
|
|
|
|
|
|
Function CustomAbort
|
|
|
|
${If} "${AB_CD}" == "en-US"
|
|
|
|
${AndIf} "$PageName" != ""
|
2010-08-12 21:36:16 -07:00
|
|
|
${AndIf} ${FileExists} "$EXEDIR\core\distribution\distribution.ini"
|
|
|
|
ReadINIStr $0 "$EXEDIR\core\distribution\distribution.ini" "Global" "about"
|
2009-03-19 11:56:47 -07:00
|
|
|
ClearErrors
|
|
|
|
${WordFind} "$0" "Funnelcake" "E#" $1
|
|
|
|
${Unless} ${Errors}
|
|
|
|
; Yes = fill out the survey and exit, No = don't fill out survey and exit,
|
|
|
|
; Cancel = don't exit.
|
|
|
|
MessageBox MB_YESNO|MB_ICONEXCLAMATION \
|
|
|
|
"Would you like to tell us why you are canceling this installation?" \
|
|
|
|
IDYes +1 IDNO CustomAbort_finish
|
|
|
|
${If} "$PageName" == "Welcome"
|
|
|
|
GetFunctionAddress $0 AbortSurveyWelcome
|
|
|
|
${ElseIf} "$PageName" == "Options"
|
|
|
|
GetFunctionAddress $0 AbortSurveyOptions
|
|
|
|
${ElseIf} "$PageName" == "Directory"
|
|
|
|
GetFunctionAddress $0 AbortSurveyDirectory
|
|
|
|
${ElseIf} "$PageName" == "Shortcuts"
|
|
|
|
GetFunctionAddress $0 AbortSurveyShortcuts
|
|
|
|
${ElseIf} "$PageName" == "StartMenu"
|
|
|
|
GetFunctionAddress $0 AbortSurveyStartMenu
|
|
|
|
${ElseIf} "$PageName" == "Summary"
|
|
|
|
GetFunctionAddress $0 AbortSurveySummary
|
|
|
|
${EndIf}
|
|
|
|
ClearErrors
|
|
|
|
${GetParameters} $1
|
|
|
|
${GetOptions} "$1" "/UAC:" $2
|
|
|
|
${If} ${Errors}
|
|
|
|
Call $0
|
|
|
|
${Else}
|
|
|
|
UAC::ExecCodeSegment $0
|
|
|
|
${EndIf}
|
2010-08-27 18:25:25 -07:00
|
|
|
|
2009-03-19 11:56:47 -07:00
|
|
|
CustomAbort_finish:
|
|
|
|
Return
|
|
|
|
${EndUnless}
|
|
|
|
${EndIf}
|
|
|
|
|
|
|
|
MessageBox MB_YESNO|MB_ICONEXCLAMATION "$(MOZ_MUI_TEXT_ABORTWARNING)" \
|
|
|
|
IDYES +1 IDNO +2
|
|
|
|
Return
|
|
|
|
Abort
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveyWelcome
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step1"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveyOptions
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step2"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveyDirectory
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step3"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveyShortcuts
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step4"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveyStartMenu
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step5"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function AbortSurveySummary
|
|
|
|
ExecShell "open" "${AbortSurveyURL}step6"
|
|
|
|
FunctionEnd
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
################################################################################
|
|
|
|
# Helper Functions
|
|
|
|
|
2009-05-20 15:49:24 -07:00
|
|
|
Function AddQuickLaunchShortcut
|
|
|
|
CreateShortCut "$QUICKLAUNCH\${BrandFullName}.lnk" "$INSTDIR\${FileMainEXE}" "" "$INSTDIR\${FileMainEXE}" 0
|
2010-05-14 17:24:01 -07:00
|
|
|
ApplicationID::Set "$QUICKLAUNCH\${BrandFullName}.lnk" "${AppUserModelID}"
|
2009-05-20 15:49:24 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
Function CheckExistingInstall
|
2009-09-04 12:44:23 -07:00
|
|
|
; If there is a pending file copy from a previous upgrade don't allow
|
2007-11-30 11:02:09 -08:00
|
|
|
; installing until after the system has rebooted.
|
|
|
|
IfFileExists "$INSTDIR\${FileMainEXE}.moz-upgrade" +1 +4
|
2009-03-19 11:56:47 -07:00
|
|
|
MessageBox MB_YESNO|MB_ICONEXCLAMATION "$(WARN_RESTART_REQUIRED_UPGRADE)" IDNO +2
|
2007-11-30 11:02:09 -08:00
|
|
|
Reboot
|
|
|
|
Quit
|
|
|
|
|
|
|
|
; If there is a pending file deletion from a previous uninstall don't allow
|
|
|
|
; installing until after the system has rebooted.
|
|
|
|
IfFileExists "$INSTDIR\${FileMainEXE}.moz-delete" +1 +4
|
2009-03-19 11:56:47 -07:00
|
|
|
MessageBox MB_YESNO|MB_ICONEXCLAMATION "$(WARN_RESTART_REQUIRED_UNINSTALL)" IDNO +2
|
2007-11-30 11:02:09 -08:00
|
|
|
Reboot
|
|
|
|
Quit
|
|
|
|
|
|
|
|
${If} ${FileExists} "$INSTDIR\${FileMainEXE}"
|
|
|
|
Banner::show /NOUNLOAD "$(BANNER_CHECK_EXISTING)"
|
|
|
|
|
|
|
|
${If} "$TmpVal" == "FoundMessageWindow"
|
|
|
|
Sleep 5000
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndIf}
|
2007-09-17 19:47:34 -07:00
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
${PushFilesToCheck}
|
2007-09-17 19:47:34 -07:00
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
; Store the return value in $TmpVal so it is less likely to be accidentally
|
|
|
|
; overwritten elsewhere.
|
|
|
|
${CheckForFilesInUse} $TmpVal
|
|
|
|
|
|
|
|
Banner::destroy
|
|
|
|
|
|
|
|
${If} "$TmpVal" == "true"
|
|
|
|
StrCpy $TmpVal "FoundMessageWindow"
|
|
|
|
${ManualCloseAppPrompt} "${WindowClass}" "$(WARN_MANUALLY_CLOSE_APP_INSTALL)"
|
|
|
|
StrCpy $TmpVal "true"
|
2007-03-22 10:30:00 -07:00
|
|
|
${EndIf}
|
|
|
|
${EndIf}
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function LaunchApp
|
2007-10-19 14:26:30 -07:00
|
|
|
ClearErrors
|
2007-09-29 02:48:32 -07:00
|
|
|
${GetParameters} $0
|
2007-10-19 14:26:30 -07:00
|
|
|
${GetOptions} "$0" "/UAC:" $1
|
|
|
|
${If} ${Errors}
|
|
|
|
${ManualCloseAppPrompt} "${WindowClass}" "$(WARN_MANUALLY_CLOSE_APP_LAUNCH)"
|
|
|
|
Exec "$INSTDIR\${FileMainEXE}"
|
|
|
|
${Else}
|
|
|
|
GetFunctionAddress $0 LaunchAppFromElevatedProcess
|
|
|
|
UAC::ExecCodeSegment $0
|
2007-09-29 02:48:32 -07:00
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
2007-09-29 02:48:32 -07:00
|
|
|
Function LaunchAppFromElevatedProcess
|
|
|
|
${ManualCloseAppPrompt} "${WindowClass}" "$(WARN_MANUALLY_CLOSE_APP_LAUNCH)"
|
|
|
|
|
|
|
|
; Find the installation directory when launching using GetFunctionAddress
|
|
|
|
; from an elevated installer since $INSTDIR will not be set in this installer
|
|
|
|
${StrFilter} "${FileMainEXE}" "+" "" "" $R9
|
|
|
|
ReadRegStr $0 HKLM "Software\Clients\StartMenuInternet\$R9\DefaultIcon" ""
|
|
|
|
${GetPathFromString} "$0" $0
|
2007-10-19 14:26:30 -07:00
|
|
|
${GetParent} "$0" $1
|
|
|
|
; Set our current working directory to the application's install directory
|
|
|
|
; otherwise the 7-Zip temp directory will be in use and won't be deleted.
|
|
|
|
SetOutPath "$1"
|
2007-09-29 02:48:32 -07:00
|
|
|
Exec "$0"
|
|
|
|
FunctionEnd
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
################################################################################
|
|
|
|
# Language
|
|
|
|
|
|
|
|
!insertmacro MOZ_MUI_LANGUAGE 'baseLocale'
|
|
|
|
!verbose push
|
|
|
|
!verbose 3
|
|
|
|
!include "overrideLocale.nsh"
|
|
|
|
!include "customLocale.nsh"
|
|
|
|
!verbose pop
|
|
|
|
|
|
|
|
; Set this after the locale files to override it if it is in the locale
|
|
|
|
; using " " for BrandingText will hide the "Nullsoft Install System..." branding
|
|
|
|
BrandingText " "
|
|
|
|
|
|
|
|
################################################################################
|
2007-10-19 14:26:30 -07:00
|
|
|
# Page pre, show, and leave functions
|
|
|
|
|
|
|
|
Function preWelcome
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "Welcome"
|
2010-08-12 21:36:16 -07:00
|
|
|
${If} ${FileExists} "$EXEDIR\core\distribution\modern-wizard.bmp"
|
2007-10-19 14:26:30 -07:00
|
|
|
Delete "$PLUGINSDIR\modern-wizard.bmp"
|
2010-08-12 21:36:16 -07:00
|
|
|
CopyFiles /SILENT "$EXEDIR\core\distribution\modern-wizard.bmp" "$PLUGINSDIR\modern-wizard.bmp"
|
2007-10-19 14:26:30 -07:00
|
|
|
${EndIf}
|
|
|
|
FunctionEnd
|
|
|
|
|
2008-11-05 19:17:27 -08:00
|
|
|
Function preOptions
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "Options"
|
2010-08-12 21:36:16 -07:00
|
|
|
${If} ${FileExists} "$EXEDIR\core\distribution\modern-header.bmp"
|
2007-10-19 14:26:30 -07:00
|
|
|
${AndIf} $hHeaderBitmap == ""
|
|
|
|
Delete "$PLUGINSDIR\modern-header.bmp"
|
2010-08-12 21:36:16 -07:00
|
|
|
CopyFiles /SILENT "$EXEDIR\core\distribution\modern-header.bmp" "$PLUGINSDIR\modern-header.bmp"
|
2007-10-19 14:26:30 -07:00
|
|
|
${ChangeMUIHeaderImage} "$PLUGINSDIR\modern-header.bmp"
|
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro MUI_HEADER_TEXT "$(OPTIONS_PAGE_TITLE)" "$(OPTIONS_PAGE_SUBTITLE)"
|
|
|
|
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "options.ini"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function leaveOptions
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $0 "options.ini" "Settings" "State"
|
|
|
|
${If} $0 != 0
|
|
|
|
Abort
|
|
|
|
${EndIf}
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $R0 "options.ini" "Field 2" "State"
|
|
|
|
StrCmp $R0 "1" +1 +2
|
2007-09-17 19:47:34 -07:00
|
|
|
StrCpy $InstallType ${INSTALLTYPE_BASIC}
|
2007-03-22 10:30:00 -07:00
|
|
|
${MUI_INSTALLOPTIONS_READ} $R0 "options.ini" "Field 3" "State"
|
|
|
|
StrCmp $R0 "1" +1 +2
|
2007-09-17 19:47:34 -07:00
|
|
|
StrCpy $InstallType ${INSTALLTYPE_CUSTOM}
|
2007-11-30 11:02:09 -08:00
|
|
|
|
2010-06-21 18:17:18 -07:00
|
|
|
${LeaveOptionsCommon}
|
2008-04-10 14:02:42 -07:00
|
|
|
|
2010-06-21 18:17:18 -07:00
|
|
|
${If} $InstallType == ${INSTALLTYPE_BASIC}
|
|
|
|
Call CheckExistingInstall
|
2007-11-30 11:02:09 -08:00
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function preDirectory
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "Directory"
|
2007-09-17 19:47:34 -07:00
|
|
|
${PreDirectoryCommon}
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function leaveDirectory
|
2010-06-21 18:17:18 -07:00
|
|
|
${If} $InstallType == ${INSTALLTYPE_BASIC}
|
2009-05-20 15:49:24 -07:00
|
|
|
Call CheckExistingInstall
|
|
|
|
${EndIf}
|
2010-06-21 18:17:18 -07:00
|
|
|
${LeaveDirectoryCommon} "$(WARN_DISK_SPACE)" "$(WARN_WRITE_ACCESS)"
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function preShortcuts
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "Shortcuts"
|
2007-09-17 19:47:34 -07:00
|
|
|
${CheckCustomCommon}
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro MUI_HEADER_TEXT "$(SHORTCUTS_PAGE_TITLE)" "$(SHORTCUTS_PAGE_SUBTITLE)"
|
|
|
|
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "shortcuts.ini"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function leaveShortcuts
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $0 "shortcuts.ini" "Settings" "State"
|
|
|
|
${If} $0 != 0
|
|
|
|
Abort
|
|
|
|
${EndIf}
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $AddDesktopSC "shortcuts.ini" "Field 2" "State"
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $AddStartMenuSC "shortcuts.ini" "Field 3" "State"
|
|
|
|
${MUI_INSTALLOPTIONS_READ} $AddQuickLaunchSC "shortcuts.ini" "Field 4" "State"
|
2010-06-21 18:17:18 -07:00
|
|
|
|
|
|
|
; If Start Menu shortcuts won't be created call CheckExistingInstall here
|
|
|
|
; since leaveStartMenu will not be called.
|
|
|
|
${If} $AddStartMenuSC != 1
|
|
|
|
${AndIf} $InstallType == ${INSTALLTYPE_CUSTOM}
|
|
|
|
Call CheckExistingInstall
|
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function preStartMenu
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "StartMenu"
|
2009-01-12 22:17:49 -08:00
|
|
|
; With the Unicode installer the path to the application's Start Menu
|
|
|
|
; directory relative to the Start Menu's Programs directory is written to the
|
|
|
|
; shortcuts log ini file and is used to set the default Start Menu directory.
|
|
|
|
${GetSMProgramsDirRelPath} $0
|
|
|
|
${If} "$0" != ""
|
|
|
|
StrCpy $StartMenuDir "$0"
|
|
|
|
${Else}
|
|
|
|
; Prior to the Unicode installer the path to the application's Start Menu
|
|
|
|
; directory relative to the Start Menu's Programs directory was written to
|
|
|
|
; the registry and use this value to set the default Start Menu directory.
|
|
|
|
ClearErrors
|
|
|
|
ReadRegStr $0 HKLM "Software\Mozilla\${BrandFullNameInternal}\${AppVersion} (${AB_CD})\Main" "Start Menu Folder"
|
|
|
|
${If} ${Errors}
|
|
|
|
; Use the FindSMProgramsDir macro to find a previously used path to the
|
|
|
|
; application's Start Menu directory relative to the Start Menu's Programs
|
|
|
|
; directory in the uninstall log and use this value to set the default
|
|
|
|
; Start Menu directory.
|
|
|
|
${FindSMProgramsDir} $0
|
|
|
|
${If} "$0" != ""
|
|
|
|
StrCpy $StartMenuDir "$0"
|
|
|
|
${EndIf}
|
|
|
|
${Else}
|
|
|
|
StrCpy $StartMenuDir "$0"
|
|
|
|
${EndUnless}
|
|
|
|
${EndIf}
|
|
|
|
|
2007-09-17 19:47:34 -07:00
|
|
|
${CheckCustomCommon}
|
2007-03-22 10:30:00 -07:00
|
|
|
${If} $AddStartMenuSC != 1
|
|
|
|
Abort
|
|
|
|
${EndIf}
|
|
|
|
FunctionEnd
|
|
|
|
|
2007-11-30 11:02:09 -08:00
|
|
|
Function leaveStartMenu
|
|
|
|
${If} $InstallType == ${INSTALLTYPE_CUSTOM}
|
|
|
|
Call CheckExistingInstall
|
|
|
|
${EndIf}
|
|
|
|
FunctionEnd
|
|
|
|
|
2007-09-21 15:09:04 -07:00
|
|
|
Function preSummary
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName "Summary"
|
2008-09-09 19:17:16 -07:00
|
|
|
; Setup the summary.ini file for the Custom Summary Page
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Settings" NumFields "3"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Text "$(SUMMARY_INSTALLED_TO)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Top "5"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 1" Bottom "15"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" Type "text"
|
|
|
|
; The contents of this control must be set as follows in the pre function
|
|
|
|
; ${MUI_INSTALLOPTIONS_READ} $1 "summary.ini" "Field 2" "HWND"
|
|
|
|
; SendMessage $1 ${WM_SETTEXT} 0 "STR:$INSTDIR"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" state ""
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" Top "17"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" Bottom "30"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 2" flags "READONLY"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Top "130"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Bottom "150"
|
|
|
|
|
2009-09-04 12:44:23 -07:00
|
|
|
${If} ${FileExists} "$INSTDIR\${FileMainEXE}"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Text "$(SUMMARY_UPGRADE_CLICK)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Settings" NextButtonText "$(UPGRADE_BUTTON)"
|
|
|
|
${Else}
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 3" Text "$(SUMMARY_INSTALL_CLICK)"
|
|
|
|
DeleteINIStr "$PLUGINSDIR\summary.ini" "Settings" NextButtonText
|
2008-09-09 19:17:16 -07:00
|
|
|
${EndIf}
|
|
|
|
|
2009-09-04 12:44:23 -07:00
|
|
|
|
|
|
|
; Remove the "Field 4" ini section in case the user hits back and changes the
|
|
|
|
; installation directory which could change whether the make default checkbox
|
|
|
|
; should be displayed.
|
|
|
|
DeleteINISec "$PLUGINSDIR\summary.ini" "Field 4"
|
|
|
|
|
|
|
|
; Check if it is possible to write to HKLM
|
|
|
|
ClearErrors
|
|
|
|
WriteRegStr HKLM "Software\Mozilla" "${BrandShortName}InstallerTest" "Write Test"
|
|
|
|
${Unless} ${Errors}
|
|
|
|
DeleteRegValue HKLM "Software\Mozilla" "${BrandShortName}InstallerTest"
|
|
|
|
; Check if Firefox is already the handler for http. This is set on all
|
|
|
|
; versions of Windows.
|
|
|
|
${IsHandlerForInstallDir} "http" $R9
|
|
|
|
${If} "$R9" != "true"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Settings" NumFields "4"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Type "checkbox"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Text "$(SUMMARY_TAKE_DEFAULTS)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" State "1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Top "32"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field 4" Bottom "53"
|
|
|
|
${EndIf}
|
|
|
|
${EndUnless}
|
|
|
|
|
|
|
|
${If} "$TmpVal" == "true"
|
|
|
|
; If there is already a Type entry in the "Field 4" section with a value of
|
|
|
|
; checkbox then the set as the default browser checkbox is displayed and
|
|
|
|
; this text must be moved below it.
|
|
|
|
ReadINIStr $0 "$PLUGINSDIR\summary.ini" "Field 4" "Type"
|
|
|
|
${If} "$0" == "checkbox"
|
2008-09-09 19:17:16 -07:00
|
|
|
StrCpy $0 "5"
|
2009-09-04 12:44:23 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Top "53"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Bottom "68"
|
2008-09-09 19:17:16 -07:00
|
|
|
${Else}
|
|
|
|
StrCpy $0 "4"
|
2009-09-04 12:44:23 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Top "35"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Bottom "50"
|
2008-09-09 19:17:16 -07:00
|
|
|
${EndIf}
|
2009-09-04 12:44:23 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Settings" NumFields "$0"
|
2008-09-09 19:17:16 -07:00
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Type "label"
|
2009-09-04 12:44:23 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Text "$(SUMMARY_REBOOT_REQUIRED_INSTALL)"
|
2008-09-09 19:17:16 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\summary.ini" "Field $0" Right "-1"
|
|
|
|
${EndIf}
|
|
|
|
|
2007-09-21 15:09:04 -07:00
|
|
|
!insertmacro MUI_HEADER_TEXT "$(SUMMARY_PAGE_TITLE)" "$(SUMMARY_PAGE_SUBTITLE)"
|
|
|
|
|
|
|
|
; The Summary custom page has a textbox that will automatically receive
|
|
|
|
; focus. This sets the focus to the Install button instead.
|
|
|
|
!insertmacro MUI_INSTALLOPTIONS_INITDIALOG "summary.ini"
|
|
|
|
GetDlgItem $0 $HWNDPARENT 1
|
|
|
|
System::Call "user32::SetFocus(i r0, i 0x0007, i,i)i"
|
2007-11-30 11:02:09 -08:00
|
|
|
${MUI_INSTALLOPTIONS_READ} $1 "summary.ini" "Field 2" "HWND"
|
|
|
|
SendMessage $1 ${WM_SETTEXT} 0 "STR:$INSTDIR"
|
2007-09-21 15:09:04 -07:00
|
|
|
!insertmacro MUI_INSTALLOPTIONS_SHOW
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Function leaveSummary
|
2007-11-30 11:02:09 -08:00
|
|
|
; Try to delete the app executable and if we can't delete it try to find the
|
|
|
|
; app's message window and prompt the user to close the app. This allows
|
|
|
|
; running an instance that is located in another directory. If for whatever
|
|
|
|
; reason there is no message window we will just rename the app's files and
|
|
|
|
; then remove them on restart.
|
|
|
|
ClearErrors
|
|
|
|
${DeleteFile} "$INSTDIR\${FileMainEXE}"
|
|
|
|
${If} ${Errors}
|
|
|
|
${ManualCloseAppPrompt} "${WindowClass}" "$(WARN_MANUALLY_CLOSE_APP_INSTALL)"
|
|
|
|
${EndIf}
|
2007-03-22 10:30:00 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
; When we add an optional action to the finish page the cancel button is
|
|
|
|
; enabled. This disables it and leaves the finish button as the only choice.
|
|
|
|
Function preFinish
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName ""
|
2007-09-17 19:47:34 -07:00
|
|
|
${EndInstallLog} "${BrandFullName}"
|
2007-03-22 10:30:00 -07:00
|
|
|
!insertmacro MUI_INSTALLOPTIONS_WRITE "ioSpecial.ini" "settings" "cancelenabled" "0"
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Initialization Functions
|
|
|
|
|
|
|
|
Function .onInit
|
2009-03-19 11:56:47 -07:00
|
|
|
StrCpy $PageName ""
|
2007-10-24 00:02:57 -07:00
|
|
|
StrCpy $LANGUAGE 0
|
2010-08-12 21:36:16 -07:00
|
|
|
${SetBrandNameVars} "$EXEDIR\core\distribution\setup.ini"
|
2007-10-24 00:02:57 -07:00
|
|
|
|
2009-01-02 13:59:14 -08:00
|
|
|
${InstallOnInitCommon} "$(WARN_MIN_SUPPORTED_OS_MSG)"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-12 22:17:49 -08:00
|
|
|
!insertmacro InitInstallOptionsFile "options.ini"
|
|
|
|
!insertmacro InitInstallOptionsFile "shortcuts.ini"
|
|
|
|
!insertmacro InitInstallOptionsFile "summary.ini"
|
2008-09-09 19:17:16 -07:00
|
|
|
|
2009-09-04 12:44:23 -07:00
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Settings" NumFields "5"
|
2008-09-09 19:17:16 -07:00
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Text "$(OPTIONS_SUMMARY)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Top "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 1" Bottom "10"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Type "RadioButton"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Text "$(OPTION_STANDARD_RADIO)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Left "15"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Top "25"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Bottom "35"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" State "1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 2" Flags "GROUP"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Type "RadioButton"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Text "$(OPTION_CUSTOM_RADIO)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Left "15"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Top "55"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" Bottom "65"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 3" State "0"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Text "$(OPTION_STANDARD_DESC)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Left "30"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Top "37"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 4" Bottom "57"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Text "$(OPTION_CUSTOM_DESC)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Left "30"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Top "67"
|
|
|
|
WriteINIStr "$PLUGINSDIR\options.ini" "Field 5" Bottom "87"
|
|
|
|
|
|
|
|
; Setup the shortcuts.ini file for the Custom Shortcuts Page
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Settings" NumFields "4"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Type "label"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Text "$(CREATE_ICONS_DESC)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Left "0"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Top "5"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 1" Bottom "15"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Type "checkbox"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Text "$(ICONS_DESKTOP)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Left "15"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Top "20"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Bottom "30"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" State "1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 2" Flags "GROUP"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Type "checkbox"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Text "$(ICONS_STARTMENU)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Left "15"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Top "40"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" Bottom "50"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 3" State "1"
|
|
|
|
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Type "checkbox"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Text "$(ICONS_QUICKLAUNCH)"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Left "15"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Right "-1"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Top "60"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" Bottom "70"
|
|
|
|
WriteINIStr "$PLUGINSDIR\shortcuts.ini" "Field 4" State "1"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-12 21:36:16 -07:00
|
|
|
; There must always be a core directory.
|
|
|
|
${GetSize} "$EXEDIR\core\" "/S=0K" $R5 $R7 $R8
|
2010-08-27 18:25:25 -07:00
|
|
|
SectionSetSize ${APP_IDX} $R5
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-10-19 14:26:30 -07:00
|
|
|
; Initialize $hHeaderBitmap to prevent redundant changing of the bitmap if
|
|
|
|
; the user clicks the back button
|
|
|
|
StrCpy $hHeaderBitmap ""
|
2007-09-29 02:48:32 -07:00
|
|
|
FunctionEnd
|
|
|
|
|
2007-10-19 14:26:30 -07:00
|
|
|
Function .onGUIEnd
|
|
|
|
${OnEndCommon}
|
2007-09-29 02:48:32 -07:00
|
|
|
FunctionEnd
|