mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
adc618f6e7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17366 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
/*
|
|
|
|
Option to download GSView (PDF/Postscript viewer)
|
|
|
|
*/
|
|
|
|
#--------------------------------
|
|
#Sections
|
|
|
|
Section -Viewer ExternalViewer
|
|
!insertmacro ExternalComponent Viewer
|
|
SectionEnd
|
|
|
|
#--------------------------------
|
|
#Functions
|
|
|
|
Function InitSizeViewer
|
|
|
|
#Get size of viewer installer
|
|
|
|
SectionGetSize ${ExternalViewer} $SizeViewer
|
|
|
|
!ifndef SETUPTYPE_BUNDLE
|
|
#Add download size
|
|
IntOp $SizeViewer $SizeViewer + ${SIZE_DOWNLOAD_VIEWER}
|
|
!endif
|
|
|
|
FunctionEnd
|
|
|
|
#--------------------------------
|
|
#Page functions
|
|
|
|
Function PageViewer
|
|
|
|
#Show page if no viewer is installed, the user has Power User or Administrator priviledges and
|
|
#Ghostscript is installed or will be installed
|
|
|
|
${if} $AdminOrPowerUser == ${FALSE}
|
|
${orif} $PathViewer == "associated"
|
|
Abort
|
|
${endif}
|
|
|
|
${if} $PathGhostscript == ""
|
|
${andif} $SetupGhostscript == ${FALSE}
|
|
!insertmacro SetComponentState $R0 Viewer
|
|
Abort
|
|
${endif}
|
|
|
|
!insertmacro MUI_HEADER_TEXT $(TEXT_VIEWER_TITLE) $(TEXT_VIEWER_SUBTITLE)
|
|
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "viewer.ini"
|
|
|
|
FunctionEnd
|
|
|
|
Function PageViewerValidate
|
|
|
|
#Download?
|
|
!insertmacro MUI_INSTALLOPTIONS_READ $R0 "viewer.ini" "Field 2" "State"
|
|
!insertmacro SetComponentState $R0 Viewer
|
|
|
|
FunctionEnd
|