2007-02-08 21:09:30 +00:00
|
|
|
/*
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
detection.nsh
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
Detection of external component locations
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
*/
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# This script contains the following functions:
|
|
|
|
#
|
|
|
|
# - SearchExternal, calls the functions:
|
|
|
|
# LaTeXActions
|
|
|
|
# MissingPrograms
|
2012-11-10 06:05:19 +00:00
|
|
|
# FindDictionaries
|
2011-05-23 04:12:10 +00:00
|
|
|
#
|
|
|
|
# - MissingPrograms, (check if third-party programs are installed), uses:
|
|
|
|
# SEARCH_MIKTEX
|
|
|
|
# SEARCH_TEXLIVE
|
|
|
|
#
|
2012-11-10 06:05:19 +00:00
|
|
|
# - FindDictionaries (finds installed spellcheck and thesaurus dictionaries)
|
|
|
|
#
|
2011-05-23 04:12:10 +00:00
|
|
|
# - EditorCheck,
|
|
|
|
# (test if an editor with syntax-highlighting for LaTeX-files is installed)
|
|
|
|
#
|
|
|
|
#--------------------------
|
|
|
|
|
|
|
|
#Var ReportReturn
|
|
|
|
#Var CommandLineOutput
|
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
Function SearchExternal
|
2011-05-23 04:12:10 +00:00
|
|
|
Call LaTeXActions # function from LaTeX.nsh
|
|
|
|
Call MissingPrograms
|
2012-11-10 06:05:19 +00:00
|
|
|
Call FindDictionaries
|
2007-02-08 21:09:30 +00:00
|
|
|
FunctionEnd
|
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# ---------------------------------------
|
|
|
|
|
|
|
|
Function MissingPrograms
|
|
|
|
# check if third-party programs are installed
|
|
|
|
|
|
|
|
# test if Ghostscript is installed
|
2011-09-05 06:09:13 +00:00
|
|
|
StrCpy $3 0
|
2011-05-23 04:12:10 +00:00
|
|
|
GSloop:
|
2011-09-05 06:09:13 +00:00
|
|
|
EnumRegKey $1 HKLM "Software\GPL Ghostscript" $3
|
2011-05-23 04:12:10 +00:00
|
|
|
${if} $1 != ""
|
2012-02-29 22:40:03 +00:00
|
|
|
ReadRegStr $2 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\GPL Ghostscript $1" "DisplayName"
|
|
|
|
StrCpy $0 "Software\GPL Ghostscript\$1"
|
2011-09-05 06:09:13 +00:00
|
|
|
${if} $2 == "" # if nothing was found in the uninstall section
|
|
|
|
ReadRegStr $2 HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX" # check if Ghostscript was installed together with LyX
|
2011-05-23 04:12:10 +00:00
|
|
|
${endif}
|
2011-09-05 06:09:13 +00:00
|
|
|
${if} $2 == "" # if nothing was found in the uninstall section
|
2011-05-23 04:12:10 +00:00
|
|
|
DeleteRegKey HKLM "$0"
|
|
|
|
goto GSloop
|
|
|
|
${else}
|
|
|
|
ReadRegStr $GhostscriptPath HKLM $0 "GS_DLL"
|
|
|
|
${if} $GhostscriptPath != ""
|
|
|
|
StrCpy $GhostscriptPath "$GhostscriptPath" -12 # remove ending "gsdll32.dll"
|
|
|
|
${endif}
|
2011-09-05 06:09:13 +00:00
|
|
|
# there might be several versions installed and we want to use the newest one
|
|
|
|
IntOp $3 $3 + 1
|
|
|
|
goto GSloop
|
|
|
|
${endif} # if $2
|
2011-05-23 04:12:10 +00:00
|
|
|
${endif}
|
|
|
|
|
|
|
|
# test if Python is installed
|
|
|
|
# only use an existing python when it is version 2.5 or newer because some
|
|
|
|
# older Compaq and Dell PCs were delivered with outdated Python interpreters
|
|
|
|
# Python 3.x was reported not to work with LyX properly, see
|
|
|
|
# http://www.lyx.org/trac/ticket/7143
|
|
|
|
ReadRegStr $PythonPath HKLM "Software\Python\PythonCore\2.5\InstallPath" ""
|
|
|
|
${if} $PythonPath == ""
|
|
|
|
ReadRegStr $PythonPath HKLM "Software\Python\PythonCore\2.6\InstallPath" ""
|
|
|
|
${endif}
|
|
|
|
${if} $PythonPath == ""
|
|
|
|
ReadRegStr $PythonPath HKLM "Software\Python\PythonCore\2.7\InstallPath" ""
|
|
|
|
${endif}
|
|
|
|
${if} $PythonPath != ""
|
|
|
|
StrCpy $PythonPath $PythonPath -1 # remove the "\" at the end
|
|
|
|
StrCpy $DelPythonFiles "True"
|
|
|
|
${endif}
|
2011-07-25 03:09:02 +00:00
|
|
|
|
|
|
|
# test if Acrobat or Adobe Reader is used as PDF-viewer
|
|
|
|
ReadRegStr $String HKCR ".pdf" ""
|
|
|
|
${if} $String != "AcroExch.Document" # this name is only used by Acrobat and Adobe Reader
|
|
|
|
StrCpy $Acrobat "None"
|
|
|
|
${else}
|
|
|
|
StrCpy $Acrobat "Yes"
|
|
|
|
${endif}
|
2011-05-23 04:12:10 +00:00
|
|
|
|
|
|
|
# test if a PostScript-viewer is installed, only check for GSview32
|
|
|
|
StrCpy $PSVPath ""
|
|
|
|
ReadRegStr $PSVPath HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\gsview32.exe" "Path"
|
|
|
|
|
|
|
|
# test if an editor with syntax-highlighting for LaTeX-files is installed
|
|
|
|
Call EditorCheck
|
|
|
|
|
2011-08-12 15:19:36 +00:00
|
|
|
# test if an image editor is installed
|
2011-05-23 04:12:10 +00:00
|
|
|
StrCpy $ImageEditorPath ""
|
2012-11-10 06:05:19 +00:00
|
|
|
ReadRegStr $ImageEditorPath HKLM "Software\Classes\GIMP-2.8-xcf\shell\open\command" ""
|
2011-05-23 04:12:10 +00:00
|
|
|
${if} $ImageEditorPath != ""
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $ImageEditorPath "$ImageEditorPath" -19 # delete '\gimp-2.x.exe" "%1"'
|
|
|
|
StrCpy $ImageEditorPath $ImageEditorPath "" 1 # remove the leading quote
|
2011-05-23 04:12:10 +00:00
|
|
|
${endif}
|
|
|
|
# check for Photoshop
|
2012-11-10 06:05:19 +00:00
|
|
|
ReadRegStr $0 HKLM "Software\Classes\Applications\Photoshop.exe\shell\open\command" ""
|
2011-05-23 04:12:10 +00:00
|
|
|
${if} $0 != ""
|
2012-11-10 06:05:19 +00:00
|
|
|
StrCpy $0 "$0" -20 # delete '\photoshop.exe" "%1"'
|
|
|
|
StrCpy $0 $0 "" 1 # remove the leading quote
|
2011-05-23 04:12:10 +00:00
|
|
|
${if} $ImageEditorPath != ""
|
|
|
|
StrCpy $ImageEditorPath "$ImageEditorPath;$0"
|
|
|
|
${else}
|
|
|
|
StrCpy $ImageEditorPath $0
|
|
|
|
${endif}
|
|
|
|
${endif}
|
2012-11-10 06:05:19 +00:00
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# test if and where the BibTeX-editor JabRef is installed
|
|
|
|
ReadRegStr $PathBibTeXEditor HKCU "Software\JabRef" "Path"
|
|
|
|
${if} $PathBibTeXEditor == ""
|
|
|
|
ReadRegStr $PathBibTeXEditor HKLM "Software\JabRef" "Path"
|
|
|
|
${endif}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
${IfNot} ${FileExists} "$PathBibTeXEditor\${BIN_BIBTEXEDITOR}"
|
|
|
|
StrCpy $PathBibTeXEditor ""
|
|
|
|
StrCpy $JabRefInstalled == "No"
|
|
|
|
${else}
|
|
|
|
StrCpy $JabRefInstalled == "Yes"
|
|
|
|
${endif}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2011-08-12 23:00:43 +00:00
|
|
|
# test if and where LilyPond is installed
|
2011-08-12 15:19:36 +00:00
|
|
|
ReadRegStr $LilyPondPath HKLM "Software\LilyPond" "Install_Dir"
|
|
|
|
${if} $LilyPondPath != ""
|
|
|
|
StrCpy $LilyPondPath "$LilyPondPath\usr\bin" # add "\usr\bin"
|
|
|
|
${endif}
|
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# test if Inkscape is installed
|
|
|
|
ReadRegStr $SVGPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Inkscape" "InstallLocation"
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2011-12-14 00:14:30 +00:00
|
|
|
# test if Gnumeric is installed
|
|
|
|
ReadRegStr $0 HKLM "Software\Classes\Applications\gnumeric.exe\shell\Open\command" ""
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -18 # remove "gnumeric.exe" "%1""
|
2012-01-30 21:13:00 +00:00
|
|
|
StrCpy $0 $0 "" 1 # remove the leading quote
|
2011-12-14 00:14:30 +00:00
|
|
|
StrCpy $GnumericPath $0
|
|
|
|
${endif}
|
2007-02-08 21:09:30 +00:00
|
|
|
|
2008-03-30 21:37:53 +00:00
|
|
|
FunctionEnd
|
2008-05-02 15:53:14 +00:00
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
# ---------------------------------------
|
|
|
|
|
2012-11-10 06:05:19 +00:00
|
|
|
Function FindDictionaries
|
|
|
|
# find the installed dictionaries
|
|
|
|
|
|
|
|
# start with empty strings
|
|
|
|
StrCpy $FoundDict ""
|
|
|
|
StrCpy $FoundThes ""
|
|
|
|
|
|
|
|
# read out the possible spell-checker filenames from the file
|
|
|
|
FileOpen $R5 "$INSTDIR\Resources\HunspellDictionaryNames.txt" r
|
|
|
|
${for} $5 1 60
|
|
|
|
# the file has 120 lines, but we only need to check for one of the 2 dictionary files per language
|
|
|
|
# therefore check only for every second line
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
|
|
StrCpy $String $String -2 # remove the linebreak characters
|
|
|
|
StrCpy $R3 $String -4 # $R3 is now the dictionary language code
|
|
|
|
# we have 2 cases where we renamed the file to a 3 letter code, see thesaurus.nsh
|
|
|
|
${if} $String == "db_DE.dic"
|
|
|
|
StrCpy $String "dsb_DE.dic"
|
|
|
|
${endif}
|
|
|
|
${if} $String == "hb_DE.dic"
|
|
|
|
StrCpy $String "hsb_DE.dic"
|
|
|
|
${endif}
|
|
|
|
!insertmacro FileCheck $4 $String "$INSTDIR\Resources\dicts" # macro from LyXUtils.nsh
|
|
|
|
${if} $4 == "True"
|
|
|
|
StrCpy $FoundDict "$R3 $FoundDict"
|
|
|
|
${endif}
|
|
|
|
${next}
|
|
|
|
FileClose $R5
|
|
|
|
|
|
|
|
# read out the possible thesaurus filenames from the file
|
|
|
|
FileOpen $R5 "$INSTDIR\Resources\ThesaurusDictionaryNames.txt" r
|
|
|
|
${for} $5 1 22
|
|
|
|
# the file has 44 lines, but we only need to check for one of the 2 dictionary files per language
|
|
|
|
# therefore check only for every second line
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
|
|
FileRead $R5 $String # $String is now the dictionary name
|
|
|
|
StrCpy $String $String -2 # remove the linebreak characters
|
|
|
|
StrCpy $R3 $String 5 3 # $R3 is now the dictionary language code
|
|
|
|
!insertmacro FileCheck $4 $String "$INSTDIR\Resources\thes" # macro from LyXUtils.nsh
|
|
|
|
${if} $4 == "True"
|
|
|
|
StrCpy $FoundThes "$R3 $FoundThes"
|
|
|
|
${endif}
|
|
|
|
${next}
|
|
|
|
FileClose $R5
|
|
|
|
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
# ---------------------------------------
|
|
|
|
|
2011-05-23 04:12:10 +00:00
|
|
|
Function EditorCheck
|
|
|
|
# test if an editor with syntax-highlighting for LaTeX-files is installed
|
|
|
|
|
|
|
|
# (check for jEdit, PSPad, WinShell, ConTEXT, Crimson Editor, Vim, TeXnicCenter, LaTeXEditor, WinEdt, LEd, WinTeX)
|
|
|
|
StrCpy $EditorPath ""
|
|
|
|
StrCpy $0 ""
|
|
|
|
# check for jEdit
|
|
|
|
ReadRegStr $EditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\jEdit_is1" "InstallLocation"
|
|
|
|
${if} $EditorPath != ""
|
|
|
|
StrCpy $EditorPath $EditorPath -1 # remove "\" from the end of the string
|
|
|
|
${endif}
|
|
|
|
# check for PSPad
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PSPad editor_is1" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -1
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for WinShell
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinShell_is1" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -1
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for ConTEXT
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ConTEXTEditor_is1" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -1
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for Crimson Editor
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Crimson Editor" "UninstallString"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -14 # remove "\uninstall.exe"
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for Vim 6.x
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Classes\Applications\gvim.exe\shell\edit\command" ""
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -13 # remove "gvim.exe "%1""
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for Vim 7.0
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.0" "UninstallString"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -18 # remove "\uninstall-gui.exe"
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for TeXnicCenter
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\TeXnicCenter_is1" "Inno Setup: App Path"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for LaTeXEditor
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\LaTeX Editor" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for WinEdt
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinEdt_is1" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -1
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for LEd
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\LEd_is1" "InstallLocation"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -1
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
|
|
|
# check for WinTeX
|
|
|
|
StrCpy $0 ""
|
|
|
|
ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinTeX XP" "DisplayIcon"
|
|
|
|
${if} $0 != ""
|
|
|
|
StrCpy $0 $0 -11 # remove "\wintex.exe"
|
|
|
|
StrCpy $EditorPath "$EditorPath;$0"
|
|
|
|
${endif}
|
2008-05-02 15:53:14 +00:00
|
|
|
|
|
|
|
FunctionEnd
|