mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
5653a3d744
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17517 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
816 B
Plaintext
39 lines
816 B
Plaintext
/*
|
|
|
|
Reinstall options
|
|
|
|
*/
|
|
|
|
#--------------------------------
|
|
#Page functions
|
|
|
|
Function PageReinstall
|
|
|
|
# Check whether this version is already installed
|
|
# If so, some registry key like Software/lyx15 should exist
|
|
|
|
ReadRegStr $R0 SHELL_CONTEXT ${APP_REGKEY} "Version"
|
|
|
|
${if} $R0 != "${APP_VERSION}"
|
|
Abort
|
|
${endif}
|
|
|
|
!insertmacro MUI_HEADER_TEXT $(TEXT_REINSTALL_TITLE) $(TEXT_REINSTALL_SUBTITLE)
|
|
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "reinstall.ini"
|
|
|
|
FunctionEnd
|
|
|
|
Function PageReinstallValidate
|
|
|
|
!insertmacro MUI_INSTALLOPTIONS_READ $R0 "reinstall.ini" "Field 2" "State"
|
|
|
|
# if re-installation, hide many sections
|
|
# FIXME: where is SelectSection defined?
|
|
${if} $R0 == "1"
|
|
!insertmacro SelectSection ${SecCore}
|
|
${else}
|
|
!insertmacro UnselectSection ${SecCore}
|
|
${endif}
|
|
|
|
FunctionEnd
|