NSIS/Examples/one-section.nsi

100 lines
2.2 KiB
NSIS
Raw Normal View History

# This example demonstrates how to control section selection.
# It allows only one of the four optional section to be
# selected at any given time.
#############################################################
# New macros which make this so much easier can be found in #
# Include\Sections.nsh. #
#############################################################
#### Uncomment the next line for an example with subsections too
# !define USE_SUBSECTION
####
Name example
OutFile one-section.exe
Page components
# defines SF_*, SECTION_OFF and some macros
!include Sections.nsh
Section !Required
SectionIn RO
SectionEnd
!ifdef USE_SUBSECTION
SubSection /e "choose one" subsec
!endif
Section "optional #1" sec1
SectionEnd
Section /o "optional #2" sec2
SectionEnd
Section /o "optional #3" sec3
SectionEnd
Section /o "optional #4" sec4
SectionEnd
!ifdef USE_SUBSECTION
SubSectionEnd
!endif
Function .onInit
StrCpy $1 ${sec1} ; Gotta remember which section we are at now...
FunctionEnd
Function .onSelChange
Push $0
!ifdef USE_SUBSECTION
; Check if the user have selected all of the sections using the sub-section
; This piece of code is not needed when there are only two sections
SectionGetFlags ${subsec} $0
IntOp $0 $0 & ${SF_SELECTED}
StrCmp $0 0 skip
SectionSetFlags ${sec1} 0
SectionSetFlags ${sec2} 0
SectionSetFlags ${sec3} 0
SectionSetFlags ${sec4} 0
skip:
!endif
; Turn off old selected section
SectionGetFlags $1 $0
IntOp $0 $0 & ${SECTION_OFF}
SectionSetFlags $1 $0
# !insertmacro UnselectSection $1
; Now remember the current selection
Push $2
StrCpy $2 $1
SectionGetFlags ${sec1} $0
IntOp $0 $0 & ${SF_SELECTED}
IntCmp $0 ${SF_SELECTED} 0 +2 +2
StrCpy $1 ${sec1}
SectionGetFlags ${sec2} $0
IntOp $0 $0 & ${SF_SELECTED}
IntCmp $0 ${SF_SELECTED} 0 +2 +2
StrCpy $1 ${sec2}
SectionGetFlags ${sec3} $0
IntOp $0 $0 & ${SF_SELECTED}
IntCmp $0 ${SF_SELECTED} 0 +2 +2
StrCpy $1 ${sec3}
SectionGetFlags ${sec4} $0
IntOp $0 $0 & ${SF_SELECTED}
IntCmp $0 ${SF_SELECTED} 0 +2 +2
StrCpy $1 ${sec4}
StrCmp $2 $1 0 +4 ; selection hasn't changed
SectionGetFlags $1 $0
IntOp $0 $0 | ${SF_SELECTED}
SectionSetFlags $1 $0
# !insertmacro SelectSection $1
Pop $2
Pop $0
FunctionEnd