]> git.lyx.org Git - lyx.git/blob - development/Win32/packaging/AltInstaller/MissingPrograms.nsh
installer updates
[lyx.git] / development / Win32 / packaging / AltInstaller / MissingPrograms.nsh
1 # This script contains the following functions:
2 #
3 # - MissingPrograms, (check if third-party programs are installed), uses:
4 #    EditorCheck
5 #    FileCheck
6 #
7 # - MissingProgramsPage,
8 #    (generate the page showing the missing programs that will be installed)
9 #
10 # - EditorCheck,
11 #    (test if an editor with syntax-highlighting for LaTeX-files is installed)
12 #
13 #--------------------------
14
15 Function MissingPrograms
16   # check if third-party programs are installed
17
18   # initialize variable, is later set to True when a program was not found
19   ${if} $MissedProg != "True" # is already True when LaTeX is missing
20    StrCpy $MissedProg "False"
21   ${endif}
22
23   # test if Ghostscript is installed
24   GSloop:
25   EnumRegKey $1 HKLM "Software\AFPL Ghostscript" 0
26   ${if} $1 == ""
27    EnumRegKey $1 HKLM "Software\GPL Ghostscript" 0
28    ${if} $1 != ""
29     StrCpy $2 "True"
30    ${endif}
31   ${endif}
32   ${if} $1 != ""
33    ${if} $2 == "True"
34     ReadRegStr $3 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\GPL Ghostscript $1" "DisplayName"
35     StrCpy $0 "Software\GPL Ghostscript\$1"
36    ${else}
37     ReadRegStr $3 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AFPL Ghostscript $1" "DisplayName"
38     StrCpy $0 "Software\AFPL Ghostscript\$1"
39    ${endif}
40    ${if} $3 == "" # if nothing was found in the uninstall section
41     ReadRegStr $3 HKLM "SOFTWARE\GPL Ghostscript" "OnlyWithLyX" # check if Ghostscript was installed together with LyX
42    ${endif}
43    ${if} $3 == "" # if nothing was found in the uninstall section
44     DeleteRegKey HKLM "$0"
45     goto GSloop
46    ${else}
47     ReadRegStr $GhostscriptPath HKLM $0 "GS_DLL"
48     ${if} $GhostscriptPath != ""
49      StrCpy $GhostscriptPath "$GhostscriptPath" -12 # remove ending "gsdll32.dll"
50     ${else}
51      StrCpy $MissedProg "True"
52     ${endif}
53    ${endif} # if $3
54   ${else} # if $1
55    StrCpy $GhostscriptPath ""
56    StrCpy $MissedProg "True"
57   ${endif}
58
59   # test if Imagemagick is installed
60   ReadRegStr $ImageMagickPath HKLM "Software\ImageMagick\Current" "BinPath"
61   ${if} $ImageMagickPath == ""
62    StrCpy $MissedProg "True"
63   ${endif}
64
65   # test if Aiksaurus is installed
66   !insertmacro FileCheck $5 "meanings.dat" "${AiksaurusDir}" # macro from LyXUtils.nsh
67   ${if} $5 == "True"
68    StrCpy $AiksaurusPath "${AiksaurusDir}"
69   ${endif}
70 #  ReadRegStr $AiksaurusPath HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "AIK_DATA_DIR"
71
72   # test if Aspell is installed
73   StrCpy $5 ""
74   ReadRegStr $5 HKCU "SOFTWARE\Aspell" "Base Path"
75   ${if} $5 == ""
76    ReadRegStr $5 HKLM "SOFTWARE\Aspell" "Base Path"
77    StrCpy $AspellBaseReg "HKLM" # used in the aspell installation section
78   ${else}
79    StrCpy $AspellBaseReg "HKCU"
80   ${endif}
81   ${if} $5 == ""
82    StrCpy $MissedProg "True"
83   ${else}
84    StrCpy $AspellPath "$5"
85   ${endif}
86
87   # test if Python is installed
88   # only use an existing python when it is version 2.5 because many Compaq and Dell PC are delivered
89   # with outdated Python interpreters
90   ReadRegStr $PythonPath HKLM "Software\Python\PythonCore\2.5\InstallPath" ""
91   ${if} $PythonPath != ""
92    StrCpy $PythonPath $PythonPath -1 # remove the "\" at the end
93    StrCpy $DelPythonFiles "True"
94   ${endif}
95
96   # test if Acrobat or Adobe Reader is used as PDF-viewer
97   ReadRegStr $String HKCR ".pdf" ""
98   ${if} $String != "AcroExch.Document" # this name is only used by Acrobat and Adobe Reader
99    StrCpy $Acrobat "None"
100   ${else}
101    StrCpy $Acrobat "Yes"
102   ${endif}
103
104   # test if a PostScript-viewer is installed, only check for GSview32
105   StrCpy $PSVPath ""
106   ReadRegStr $PSVPath HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\gsview32.exe" "Path"
107
108   # test if an editor with syntax-highlighting for LaTeX-files is installed
109   Call EditorCheck
110
111   # test if an image editor is installed (due to LyX's bug 2654 first check for GIMP)
112   StrCpy $ImageEditorPath ""
113   ReadRegStr $ImageEditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinGimp-2.0_is1" "DisplayIcon"
114   ${if} $ImageEditorPath != ""
115    StrCpy $ImageEditorPath "$ImageEditorPath" -13 # delete "\gimp-2.x.exe"
116   ${endif}
117   # check for Photoshop
118   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\Photoshop.exe" "Path"
119   ${if} $0 != ""
120    StrCpy $0 "$0" -1 # delete the last "\"
121    ${if} $ImageEditorPath != ""
122     StrCpy $ImageEditorPath "$ImageEditorPath;$0"
123    ${else}
124     StrCpy $ImageEditorPath $0
125    ${endif}
126   ${endif}
127
128   # test if the BibTeX-editor JabRef is installed
129   StrCpy $BibTeXEditorPath ""
130   ReadRegStr $BibTeXEditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef 2.1" "UninstallString"
131   ${if} $BibTeXEditorPath == ""
132    ReadRegStr $BibTeXEditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\JabRef 2.2" "UninstallString"
133   ${endif}
134   
135   # test if Inkscape is installed
136   ReadRegStr $SVGPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Inkscape" "InstallLocation"
137
138 FunctionEnd
139
140 # ---------------------------------------
141
142 Function MissingProgramsPage
143   # generate the page showing the missing programs that will be installed
144
145   StrCpy $0 "2" # start value for the dynamical item numbering
146   !insertmacro MUI_INSTALLOPTIONS_EXTRACT "io_missing_progs.ini"
147   !insertmacro MUI_HEADER_TEXT "$(MissProgHeader)" ""
148   
149   ${if} $MissedProg == "False"
150    !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field 6" "Text" "$(MissProgMessage)"
151   ${else}
152    !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field 1" "Text" "$(MissProgCap)"
153    ${if} ${INSTALLER_VERSION} == "Complete"
154     ${if} $LatexPath == ""
155      !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field $0" "Text" "$(MissProgLatex)"
156      IntOp $0 $0 + 1
157     ${endif}
158    ${endif}
159    ${if} $GhostscriptPath == ""
160     !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field $0" "Text" "$(MissProgGhostscript)"
161     IntOp $0 $0 + 1
162    ${endif}
163    ${if} $ImageMagickPath == ""
164     !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field $0" "Text" "$(MissProgImageMagick)"
165     IntOp $0 $0 + 1
166    ${endif}
167    ${if} $AspellPath == ""
168     !insertmacro MUI_INSTALLOPTIONS_WRITE "io_missing_progs.ini" "Field $0" "Text" "$(MissProgAspell)"
169    ${endif}
170   ${endif}
171   
172   !insertmacro MUI_INSTALLOPTIONS_DISPLAY "io_missing_progs.ini"
173
174 FunctionEnd
175
176 # ---------------------------------------
177
178 Function MissingProgramsPage_LeaveFunction
179
180  # this empty function is needed for the installer page
181
182 FunctionEnd
183
184 # ---------------------------------------
185
186 Function EditorCheck
187   # test if an editor with syntax-highlighting for LaTeX-files is installed
188
189   # (check for jEdit, PSPad, WinShell, ConTEXT, Crimson Editor, Vim, TeXnicCenter, LaTeXEditor, WinEdt, LEd, WinTeX)
190   StrCpy $EditorPath ""
191   StrCpy $0 ""
192   # check for jEdit
193   ReadRegStr $EditorPath HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\jEdit_is1" "InstallLocation"
194   ${if} $EditorPath != ""
195    StrCpy $EditorPath $EditorPath -1 # remove "\" from the end of the string
196   ${endif}
197   # check for PSPad
198   StrCpy $0 ""
199   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PSPad editor_is1" "InstallLocation"
200   ${if} $0 != ""
201    StrCpy $0 $0 -1
202    StrCpy $EditorPath "$EditorPath;$0"
203   ${endif}
204   # check for WinShell
205   StrCpy $0 ""
206   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinShell_is1" "InstallLocation"
207   ${if} $0 != ""
208    StrCpy $0 $0 -1
209    StrCpy $EditorPath "$EditorPath;$0"
210   ${endif}
211   # check for ConTEXT
212   StrCpy $0 ""
213   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ConTEXTEditor_is1" "InstallLocation"
214   ${if} $0 != ""
215    StrCpy $0 $0 -1
216    StrCpy $EditorPath "$EditorPath;$0"
217   ${endif}
218   # check for Crimson Editor
219   StrCpy $0 ""
220   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Crimson Editor" "UninstallString"
221   ${if} $0 != ""
222    StrCpy $0 $0 -14 # remove "\uninstall.exe"
223    StrCpy $EditorPath "$EditorPath;$0"
224   ${endif}
225   # check for Vim 6.x
226   StrCpy $0 ""
227   ReadRegStr $0 HKLM "Software\Classes\Applications\gvim.exe\shell\edit\command" ""
228   ${if} $0 != ""
229    StrCpy $0 $0 -13 # remove "gvim.exe "%1""
230    StrCpy $EditorPath "$EditorPath;$0"
231   ${endif}
232   # check for Vim 7.0
233   StrCpy $0 ""
234   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.0" "UninstallString"
235   ${if} $0 != ""
236    StrCpy $0 $0 -18 # remove "\uninstall-gui.exe"
237    StrCpy $EditorPath "$EditorPath;$0"
238   ${endif}
239   # check for TeXnicCenter
240   StrCpy $0 ""
241   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\TeXnicCenter_is1" "Inno Setup: App Path"
242   ${if} $0 != ""
243    StrCpy $EditorPath "$EditorPath;$0"
244   ${endif}
245   # check for LaTeXEditor
246   StrCpy $0 ""
247   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\LaTeX Editor" "InstallLocation"
248   ${if} $0 != ""
249    StrCpy $EditorPath "$EditorPath;$0"
250   ${endif}
251   # check for WinEdt
252   StrCpy $0 ""
253   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinEdt_is1" "InstallLocation"
254   ${if} $0 != ""
255    StrCpy $0 $0 -1
256    StrCpy $EditorPath "$EditorPath;$0"
257   ${endif}
258   # check for LEd
259   StrCpy $0 ""
260   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\LEd_is1" "InstallLocation"
261   ${if} $0 != ""
262    StrCpy $0 $0 -1
263    StrCpy $EditorPath "$EditorPath;$0"
264   ${endif}
265   # check for WinTeX
266   StrCpy $0 ""
267   ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\WinTeX XP" "DisplayIcon"
268   ${if} $0 != ""
269    StrCpy $0 $0 -11 # remove "\wintex.exe"
270    StrCpy $EditorPath "$EditorPath;$0"
271   ${endif}
272
273 FunctionEnd
274